Write the program to convert the string “ SOFTware” into lower case ,”hardware “ string into upper case.
Combine the two strings and find the length of the combined string.

Answers

Answer 1

Answer:

The program in Python is as follows:

str1 = " SOFTware".lower()

str2 = "hardware ".upper()

str3 = str1+str2

lent = len(str3)

print(lent)

Explanation:

(1) Convert " SOFTware" to lower

str1 = " SOFTware".lower()

(2) Convert "hardware " to upper

str2 = "hardware ".upper()

(3) Combine both strings

str3 = str1+str2

(4) Calculate the length of the new string

lent = len(str3)

(5) Print the calculated length

print(lent)


Related Questions

HELP I HAVE A D RN PLEASE
Use the drop-down menus to describe how to encrypt a database with a password.

1. In Access, click Open on the File tab.

2. Select the database.

3. Click the drop-down arrow to the right of Open, and click
.

4. Click the File tab.

5. Click
, and select Encrypt with Password.

6. Enter a password when you are prompted
. Click OK.

7. Close and reopen the database.

8. To open the database again, you will need to
.

Answers

Answer:

1. Open Exclusive

2. Info

3. twice

4. enter a password

Explanation:

In Access, click Open on the File tab. Open Exclusive or backstage View. Select the database by. clicking Info and Click the File tab twice and enter a password

Which view is opened when File tab is clicked?

The Backstage View is said to be opened. Note that one can use the Backstage through the clicking of the "File" tab that can be found on the top-left hand side of the system application window.

Note that In Access, click Open on the File tab. Open Exclusive or backstage View. Select the database by. clicking Info and Click the File tab twice and enter a password.

Learn more about password from

https://brainly.com/question/17174600

#SPJ2

Hey does anyone think nervegear would be possible? (Just asking)

Answers

Answer:

Depends

Explanation:

Technology is not advanced yet, so building a fully functional nerve gear is difficult. It could be possible in a few years though.

Answer:

No, the Nerve Gear cannot be possible at the moment. However, in Japan, they are creating the Nerve Gear and is to be released in May 2022 told by the creator, Kayaba Akihiko. So, the Nerve Gear cannot be possible in 2020 but in 2022. We just have to wait for two more years.

Explanation:

please choose me as brainliest if that is ok ;)

45 Points!

This topology will require the most cabling to connect its five computers and two peripherals-the scanner and the fax.

- mesh
- bus
- star
- ring

Answers

Answer:

I think D but I'm not sure

PLSSSSS HELPP!! Population biologists are concerned about invasive species such as the zebra mussel found in North American water ways because

A.The introduced species compete for resources more effectively than native species


B.These introduced species will require more land to be protected


C.Introduced species often become endangered when they are placed in a new habitat


D.Predators of the zebra mussels will decrease after these organisms are introduced into the habitat

Answers

Answer: A.The introduced species compete for resources more effectively than native species.

Explanation:

An introduced species is also called the exotic species and this is an organism which is not a native organism or specie and therefore isn't native to the place but rather it's being transported to the place through the activities of human being.

When the introduced species are introduced to a particular area, they compete with the natives for the available resources and often do this more effectively than the other native species.

Therefore, the correct option is A.

The syntax for ________ requires you to use a colon after every if statement and while loop.
Java
Boolean
Python
programming

Answers

don't go yo the link

Item 3
Which of the following describes new technology development?

A harmless process

A somewhat assured process

A partially risky process

A very risky process

Answers

Answer:

A somewhat assured process

B. A somewhat assured process  is describes new technology development

What are the five phases in technology development process?

Five phases guide the new product development process for small businesses: idea generation, screening, concept development, product development and, finally, commercialization.

What is technology development process?

Technology Development Process, is a directed process at developing new knowledge, skills and artefacts that in turn facilitates platform development

To learn more about new technology development, refer

https://brainly.com/question/27090068

#SPJ2

jdr-wivg-vmb
co.me a.nd jo.in fa.st...
go.ogle me.et​​​​​

Answers

Explanation:

what is this don't post like this

print a test page what is the answer.​

Answers

Answer:

The keys "Ctrl" and "P"

Yah whatever he said i dont have a computer

Edhesive 8.3 lesson practice pls help

Answers

Answer:

String data type

Explanation:

See attachment for complete question

Required

Data type in stuff

On line 1 of the program, stuff is initialized as an empty list.

Line 2 to line 4; some elements are appended into stuff list

These elements are written in quotes

In programming, when an expression is written in quotes, such expressions are referred to as strings.

Hence, the elements stored in stuff are string datatypes

The data types in the elements "stuff" are string datatypes

What is strings data type?

String data type are data types in programming which is used when an expression is written in quotes(" ").

What is programming?

Programming can be defined as process of building or designing a computer program. It involves building computer instructions or algorithm and the use of the instructions to perform a particular task.

There are different types of programming language:

JavaJavaScriptPHPSQLpythonRubySwift

Learn more about programming:

https://brainly.com/question/16397886

What is the path to add a Switchboard tab to the ribbon?

Go to the File tab, Options group, then Settings.
Go to the Home tab, Format group, then Add to Ribbon.
Go to the File tab, Options group, then Customize Ribbon.
Go to the Home tab, Records group, then Customize Ribbon.

Answers

Answer:

Go to the File tab, Options group, then Customize Ribbon.

Explanation:

Got it on E2020.

How can users open a shared worksheet if they do not have Excel installed on a computer? visit Microsoft’s website use Office365’s home page open a PDF version for editing use Excel Online through the 365 portal

Answers

Answer:

use Excel Online through the 365 portal

Explanation:

just did it

compare and contrast the typewriter with that if the computer keyboard pls help omg​

Answers

Answer:

Typewriters use  paper and ink

and computers keyboards is an electroic typing

Explanation:

One way to use contiguous allocation of the disk and not suffer from holes is to compact the disk every time a file is removed. Since all files are contiguous, copying a
file squires a seek and rotational delay to read the file, followed by the transfer at full speed. Writing the file back requires the same work. Assuming a seek time of 5 msec, a rotational delay of 4 msec, a transfer rate of 8 MB/sec, and an average file size of 8 KB, how long does it take to read a file into main memory and then write it back to the disk at a new location? Using these numbers, how long would it take to compact half of a 16-GB disk?

Answers

Answer:

The answer is below

Explanation:

a) Seek time = 5 msec, transfer time = 4 msec, transfer rate = 8 MB/sec = 8000 KB/sec, average file size = 8 KB

Transfer time = 8 KB ÷ 8000 KB/sec = 1 msec

The time required to read and write is twice the sum of the seek and transfer time.

Total time = (5 msec + 4 msec) * 2 + 1 msec = 19 msec

b) half of 16 GB = 8 GB = 8000000 KB

number of read and writes = (8000000 KB of total file size/ 8 KB of average file size) * 2 = 2000000

Transfer rate = 8 MB/sec = 0.008 GB/sec

Transfer time = 8 GB ÷ 0.008 GB/sec = 1000 sec

Total time = (5 msec + 4msec) * 2000000 + 1000 sec = 19000 sec

List three features of the third generation of computers

Answers

Explanation:

Features:

1.They were small and efficient than previous generation.

2.They use integrated circuits as main electronic circuit.

3.The operating speed was increased unto nano seconds.

Hope it helps and have a good day.

2. You go to an intemet cafe to send an email to your friend upon returning home you
realize that you forgot to log out your account. What probably could happen to your
account?​

Answers

There is a risk that someone else would gain access to your account as well as your personal information.

Pueden cojer los datos privados hackear la cuenta

what would be the most constructive response

Answers

Answer:

we cant tell what your talking abt please repost with at pitcher or a exolination

Explanation:

Complete the statement about WYSIWYG editors when you use a WYSIWYG editor you typically specify the continent and blank A.layout B.Html Code C. Meta tags while the editor generates the blank A.layout B. Html code C. Meta tags

Answers

Answer:

When you use a WYSIWYG editor you typically specify the content and layout while the editor generates the HTML code

Explanation:

Required

Complete the blanks

In WYSIWYG, the user of the application provides contents to the WYSIWYG software and also designs the appearance; The appearance is referred to as the layout.

Throughout the design, the user will not use HTML codes; it is the duty of the WYSIWYG editor to generate HTML code based on the input designs by the user.

List two building techniques or materials that should be considered if you are building in Tornado Alley.

Answers

Have a strong foundation and a tornado shelter.

1. Samantha uses the RSA signature scheme with primes p = 541 and q = 1223 and public verification exponent e = 159853. (a) What is Samantha's public modulus? What is her private signing key? (b) Samantha signs the digital document D = 630579. What is the signature?

Answers

Answer:

Why is samantha asking us? She should find out herself smh

Explanation:

In a word-processing program, what are the easily accessible icons that allow you to print, save and change fonts with a click of a button?

A- tool bar
B- keyboard shortcuts
C- preferences
D- printing options

Answers

The answer is A. tool bar

Based on this graph, globalization has affected China's workforce by creating a shift toward specialization in: a) agriculture and away from services b) services and away from agriculture c) industry and away from services d) agriculture, services, and industry

Answers

Answer:

^^^^^ what they said

Explanation:

its b

Based on this graph, globalization has affected China's workforce by creating a shift toward specialization in services and away from agriculture. Thus, option C is correct.

What does the graph represents?

According to the graph, the globalization process (period 2000-2019) has affected China by decreasing the proportion of workers in agricultural activities from more than the 40% to not much above the 10%.Based on this graph, globalization has affected China's workforce by creating a shift toward specialization in services and away from agriculture.

Meanwhile, workers in the service sector have increased from less than the 30% to more than the 60%. The percentage of people working in manufacturing activities has remained more or less stable, around the 30%.

Thus, option C is correct.

Learn more about service sector on:

https://brainly.com/question/14606383

#SPJ7

Computer networks can consist of as few as computers.
Options are: 5, 10, 2, & 3

Answers

Answer: 2

Explanation:A computer network is a set of computers that are connected together.

ced-vfrj-yiu
ev.eyo.ne joi.n.thro.ugh goog.le m.eet​

Answers

Answer:

n.o

Explanation:

n.o.

Write a program to create a list of numbers in the range of 1 to 10. Then delete all the even numbers from the list and print the final list.

Answers

>>> range (0,11,2)
[0, 2, 4, 6, 8, 10]

in remote areas,your gps device may lose reception. its good idea to have a

Answers

Answer:

map or compass or follow a trail so you don't get lost

Explanation:

The photograph shows a way individuals work together in groups a the photograph​

Answers

Answer:

D. Administrators

Explanation:

Hope it helps

#CarryOnLearning

Which of the following is the best example of a way in which a programmer can use abstraction to manage the complexity of a program?

Replacing each instance of repeated code with a call to a procedure

Replacing longer variable names with shorter variable names to reduce typing errors

Replacing several lines of documentation with a single line of documentation

Replacing lists with individual variables

Answers

Answer : C

Explanation

The best example of a way in which a programmer can use abstraction to manage the complexity of a program is to  Replacing longer variable names with shorter variable names to reduce typing errors.

Why the replacement?

The act of  Replacing longer variable names with shorter variable names to reduce typing errors is very important.

Conclusively, in any programming, to handle the complexity of a program, on can Replace the string variables such as name1, name2, name3, and name4 with the use of list of strings known as the shorter form called names.

Learn more about programmer  from

https://brainly.com/question/23275071

Has the human population reached its carrying capacity? How do you know?

Answers

Answer:

..

Explanation:

.

Compare an electric circuit to a river flowing with water. Which of the following could appropriately be considered a source?


a spring

a place where two rivers join

an ocean

an island

Answers

Answer:

a spring.

Explanation:

An electric circuit can be defined as an interconnection of electrical components which creates a path for the flow of electric charge (electrons) due to a driving voltage.

Generally, an electric circuit consists of electrical components such as resistors, capacitors, battery, transistors, switches, inductors, etc.

This electrical network which is usually a closed loop comprises of a device that provides the energy (voltage) to drive electrons or electric current; the device is referred to as a source such as a generator or battery.

Springs are points from which water naturally seeps from the ground. A spring is the original point or most common type of source from which a river flows or begin its journey.

This ultimately implies that, a spring serves as a source to a river flowing with water while a battery or generator serves as a source to an electric circuit with current flowing through it.

Hence, if we compare an electric circuit to a river flowing with water, a spring is considered to be a most likely source to the river.

When should we not use Inheritance in programming?

Answers

Answer:

You shouldn't be using inheritance if your program doesn't reuse code a lot.

Explanation:

This is really the purpose of inheritance, to make it easier for us to call repeated method calls without having to copy and paste all the time and making our program long and redundant.  If you have simple programs that don't have repeated calls, then inheritance is unnecessary.

Other Questions
The boundary work is positive during an expansion process.a.Falseb.True Help with this plz.Solve the system of equations using the elimination method. The high temperatures for the last seven days are: High Temperatures: 81, 78, 83, 89, 80, 87, 78Find the RANGE of the temperatures. Make a list of all the possible human sources of carbon dioxide. Giving brainliest Which of the following represents the quadratic function f (x) = 5(x 2)2 7 in standard form? doc based on this lab: https://phet.colorado.edu/sims/html/wave-on-a-string/latest/wave-on-a-string_en.html Regin que se encuentra en el Cercano Oriente, en la zona desrtica del Golfo Prsico, entre los ros Tigris y Eufrate A box contains 14 stuffed animal rabbits and 6 stuffed animal bears. What is the probability of selecting a stuffed animal rabbit, replacing it, and then selecting a stuffed animal bear? * please help me ! its due in 16 mins ;( thank you this would be kind of you Cecil is preoccupied with thoughts of jumping out the window of his tenth-floor apartment. In order to reduce his anxiety, he frequently counts his heartbeats aloud. Cecil would most likely be diagnosed as experiencing a(n): panic disorder panic disorder bipolar disorder bipolar disorder generalized anxiety disorder generalized anxiety disorder obsessive-compulsive disorder find the volume if the figure Los conductos que salen de los riones y transportan la orina desde los riones hasta la vejiga se llaman: Bramble Corp. purchased land as a factory site for $1305000. Bramble paid $121000 to tear down two buildings on the land. Salvage was sold for $8400. Legal fees of $5340 were paid for title investigation and making the purchase. Architect's fees were $47000. Title insurance cost $3900, and liability insurance during construction cost $4200. Excavation cost $15480. The contractor was paid $4400000. An assessment made by the city for pavement was $9900. Interest costs during construction were $251000.1. The cost of the land that should be recorded by Wilson Co. is:_____.a. $989,880b. $980,480c. $996,280d. $986,880The cost of the building should be recorded by Wilson Co. is:_____.a. 2,804,840b. 2,813,200c. 2,803,800d. 3,014,240 Can u plase help its just box plots !!! if you do tysm and remeber your loved (Fan Question) (Only if you know warrior cats) Which warrior cat killed the most cats, Which clan is the strongest? Who killed the most cats? What is a prophecy in warrior cats? Correct answers will (100%) get brainliest! How should September 11 be remembered in world history? But Are Punnett square percentages always correct? Which of the following events is a cause of the other three?A.James II had a sonB.James II fled to FranceC.William and Mary rule England as joint monarchsD.Parliament invited William of Orange to invade England Saved Which of the following is NOT an important function of facial display? Multinio ChoicA. emotionB. attractivenessc. Primacyd. identity The ages of the U.S. Presidents that were inaugurated during the 1900s are given below. What is wrong with this histogram? Question 8 options: The bar for 5054 is too short and the bar for 5559 is too tall. The bar for 5054 is too short. The bar for 5559 is too tall. The bar for 4044 is too short and the bar for 4549 is too tall.