What is the output?
answer = "Hi mom"
print(answer.lower())

Answers

Answer 1

Answer: hi mom

Explanation: got it right on edgen

Answer 2

The the output for answer = "Hi mom" print(answer.lower()) will be "hi mom".

What is string?

A string is a character sequence. Strings are used in programming to represent and manipulate text or other character sequences such as numbers or symbols.

Strings are typically surrounded by quotation marks, as in "Hello, world!" Using various string methods and operations, they can be concatenated, split, sliced, and manipulated in a variety of ways.

The lower() string method returns a new string with all alphabetic characters converted to lowercase.

The string "Hi mom" is stored in the variable answer in this code, and then the lower() method is applied to it.

The method returns a new string that has all alphabetic characters converted to lowercase and is then printed to the console. As a result, the output is "hi mom."

Thus, the output will be in lowercase, i.e., hi mom.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ2


Related Questions

A representation of something by using a description, summary or image.
O Web Impression
O Cookie
O Avatar
O Frame
O Thumbnail

Answers

Answer: Thumbnail

Explanation:

Thumbnail is a representation of something by using a description, summary or image.

Thumbnails are simply the versions of either pictures or videos that have been reduced and can be used as placeholder for a multimedia content. A thumbnail that is used by a company on the internet gives the first impression of the product of the company to the prospective customers.

WILL GIVE BRAINLIEST!!!!!!!!
Advantage - Gaining Devices in a technological power system create and add more power than they actually use.


True

False

Answers

Answer:

True

Explanation:

The Quran says that Allah is the God of the Biblical prophets, so He must be. The Quran says that Muslims and Christians worship the same God, so it must be the same God. Ultimately, this is the reasoning of those who believe, as I once did, that Muslims and Christians worship the same God, and it is flawed.

Answer:

True

Explanation:

Read the following scenario:

A theatrical production is in rehearsal for a revival of a classic Tony Award-winning drama. The director, wanting to make the best production possible, has spared no expense. Unfortunately, the production is over budget. The director does not want to eliminate any of the design elements or special effects he has incorporated into the production. Which of the following would a production manager most likely do to get the production back on budget?

A. work with the costume designer to minimize costume changes and use cheaper materials
B. work with the lighting designer to create the effects the director wants using a minimal amount of equipment and personnel
C. eliminate some of the supporting roles
D. offer to take a pay cut

Answers

B is the answer to the question

Walt has selected data in a worksheet and inserted a chart. However, the chart is inserted right on top of the data set, and he cannot see the data. How should Walt most efficiently fix this situation?

A) Cut and paste the chart to a different worksheet or to a different part of the current worksheet.
B) Delete the current chart and first select a blank sheet or space before inserting the chart again.
C) Right-click the chart and select Move Below Data Table from the menu list.
D) Click View and zoom into the worksheet so the chart is easily visible.

Answers

Answer:

Click View and zoom into the worksheet so the chart is easily visible.

Explanation:

Walt has entered data into a worksheet and added a chart, and the chart is inserted directly on top of the data set, and he cannot see the data, he should click View and zoom into the worksheet to make the chart more visible.

What is the worksheet?

A worksheet is defined as a collection of cells that are organized in rows and columns. It is the working surface with which a user interact to enter data.

In the given case, Walt has entered upon collections into a worksheet and added a chart; however, the chart has been inserted directly on top of the data set, and he is unable to see the data, so he should click View and zoom into the worksheet to make the chart more visible.

Therefore, option D is correct.

Learn more about the worksheet, refer to:

https://brainly.com/question/13129393

#SPJ2

When locating and correcting accessibility issues for a document, you would click what first?

A.Insert
B.View
C.Home
D.File

Answers

D:file because if you need important info you need to look in someone’s file for info.

c program To print odd numbers from 15 to 1 ​

Answers

Answer:true

Explanation:

This statement is correct

#include <stdio.h>  

 

int main(int counter) {  

   printf("Odd numbers between 15 to 1:\n");  

 

// Set the counter to 15 at the beginning and decrease it after each cycle.

// Check each counter value to see if it is an odd number, and print the result accordingly.

   for(counter = 15; counter > 0; counter--) {  

       if(counter % 2 == 1) {

           printf("%d ", counter);  

       }  

   }  

   return 0;  

}

What is the minimum number of bits needed to store the decimal value 200?
10
9
8
6
5

Answers

Answer:

8 bits

Explanation:

Given

Decimal Value = 200

Required

Determine minimum number of bits to store the value

Represent the decimal value with N and the number of bits with n

The relationship between n and N is:

[tex]2^n = N[/tex]

Substitute 200 for N

[tex]2^n = 200[/tex]

Take Log of both sides

[tex]Log2^n = Log200[/tex]

Apply law of indices

[tex]nLog2 = Log200[/tex]

Make n the subject

[tex]n = \frac{Log200}{Log2}[/tex]

[tex]n = 7.64385618977[/tex]

We need n to be an integer; So, we have to approximate

[tex]n = 8[/tex]

Please help!!!
What does the Turtle Graphics Module in Python allow programmers to do?
Display strings on screen
Draw on the screen or create images
Evaluate mathematical equations
Sort a list of information

Answers

Answer:  its Draw on the screen or create images

Explanation: i just to the test and got it right

Importing code to draw on the screen and From the naming of the module itself, Python's Turtle Graphics Module, one can see that the objective of the module is to let python users handle graphics which could be a dot, lines, images or shapes (rectangle, triangle, etc.)

What are the applications of the module?

There are several applications of this module, one of which is: it is useful in designing games. To import the module in your python program, you make use of the following syntax import turtle.

Graphics are defined as a visual representations or patterns on a surface, such as a stone, paper, canvas, wall, or screen, for the sake of education, entertainment, or information. Line, shape, color, texture, type, space, and image are the seven foundational components of graphic design.

Turtle Graphics has been defined as the Python module that is already installed and gives users a virtual canvas on which to draw shapes and images. A fantastic technique just to expose children to coding just through turtle visuals. Little ones may construct and change while learning using quick programs that only have five to ten lines of code.

Therefore,  Python's Turtle Graphics Module, one can see that the objective of the module is to let python users handle graphics.

Learn more about graphics on:

https://brainly.com/question/14191900

#SPJ3

Help please and thanks

Answers

Answer:

B

Explanation:

THAT IS THE ANSWER BECAUSE YOU HAVE TO ADD ALL OF THEM AND THE ANSWER WOULD BE 3

4.9 Code Practice: Question 4

Answers

Answer:

sum = 0

r = 0

while r < 10:

   p = float(input("Enter Temperature: "))

   sum += p

   r += 1

print("Sum = " + str(sum))

Explanation:

You can change the variables if you like.

In this exercise we have to use the knowledge of computational language in python to write the code.

This code can be found in the attached image.

To make it simpler the code is described as:

sum = 0

r = 0

while r < 10:

  p = float(input("Enter Temperature: "))

  sum += p

  r += 1

print("Sum = " + str(sum))

See more about python at brainly.com/question/22841107

Edhesive code practice 4.8 Question 3

Answers

Answer:

for i in range(200,301,2):

  print(i)

Explanation:

just copy and paste 100 percent

For in rang 200,301,2

Where can you find the sizing handles for a graphic, shape, or text box? Check all that apply.
at the top left corner of the document
at the top right corner of the document
in the center of the graphic, shape, or text box
on the edges of the graphic, shape, or text box
on the corners of the graphic, shape, or text box
inside the borders of the graphic, shape, or text box

Answers

Answer:

D and E

Explanation:

Just took it

Answer: the answer are  d:on the edges of the graphic, shape, or text box and e:on the corners of the graphic, shape, or text box

Explanation:

Please help me. It's due in 2 hours.

Answers

1d 2b 3c 4a 5e 6f 7g

love me love me say that u love me fool me fool me go on and fool me : ) answer the question thx

Answers

Answer:

fido

Explanation:

i think sorry if wrong

Answer:

fidooo

Explanation:

Which punctuation mark should go in the underlined space to show a break in the speech?

Michael said, "Let's find the ___"

. . .

'
.

Answers

Answer:

...

Explanation:

The elipses show a pause while showing that the information is relevant

Answer:

its a

Explanation:

What is the value of numX when this program is executed?

if 7 >= 7 and 3 > 6:
numX = 10
else:
numX = 30
numX is

Answers

Answer:

The answer is numX=30

Hope this helps, have a wonderful day!

Explanation:

Answer: numX=30

Explanation: got it right on edgen

Why should you be chosen over someone else? *

Answers

Answer:

free points

Explanation:

Answer:

i shouldnt i dont deserve it

Explanation:

Please Help Me
If you had an acer chrombook and it was family linked you had two accounts on it. (The administrater which is the family linked account and a school account) and you forgot the original password to the account how do you completely reboot the computer and start all over again.Like completely reboot like its new.

Answers

Answer:

Sign out of your Chromebook.

Press and hold Ctrl + Alt + Shift + r.

Select Restart.

In the box that appears, select Powerwash. Continue.

Follow the steps that appear and sign in with your Google Account. ...

Once you've reset your Chromebook:

Explanation:

Hope this helps. :)

Credit card statement budgeting for needs

Answers

Do you want a credit card or something?

Can a idler gear increase or decrease speed?

Answers

Answer:

The answer is increase

Explanation:

I remember this from last year... could you choose brainliest

What is a computer?​

Answers

Answer:

An electronic data processing capable machine

Explanation:

Question # 4
Dropdown
Choose the correct term to complete the defintion of your user-defined data type.
v player
life = 3
magic = False
name =

Answers

Answer:

class

Explanation:

edg2020

Answer: class

Explanation: got it right on edgen

Use the conversion table below to help you answer the question.


What is the decimal value of the b-i-n-a-r-y number 1011?
0.1011
0.1100
11
13

Answers

Correct answer is 11

What does this loop that uses a range function do? for i in range(7, 15): print("goodbye") It prints "goodbye" 8 times, numbered from 7 through 14. It prints "goodbye" 9 times, numbered from 7 through 15. It prints "goodbye" 9 times. It prints "goodbye" 8 times.

Answers

Answer:

It prints "goodbye" 8 times.

Explanation:

The loop being described in this scenario would print "goodbye" 8 times. It would not include numbers detailing the range since the loop instructions only state for the system to print("goodbye") and nothing else. Also, it would only print it 8 times because in a range the endpoint is not included, this is mainly because in programming data structures tend to run on 0-based indexing.

Answer:

8 times is right

Explanation:

The Harrison Group Life Insurance company computes annual policy premiums based on the age the customer turns in the current calendar year. The premium is computed depending on the users age.

If the user is under the age of 50 – it is calculated by taking the decade of the customer’s age, adding 15 to it, and multiplying by 20. For example, a 34-year-old would pay $360, which is calculated by adding the decades (3) to 15, and then multiplying by 20.
If the user is over 50 – it is calculated by taking the decade of the customer’s age, adding 20 to it, and multiplying by 25. For example, a 54-year-old would pay $625, which is calculated by adding the decades (5) to 20, and then multiplying by 25.
Write an application that:

Declares the variables needed.
Prompts a user for their decade age (be clear in the instructions that you want only the 10s or 100s place).
Hits an IF statement that will call on a method named calculaterate and will pass it the decade, the addition number and the multiplier based on that IF statement.
The method should calculate the premium and return it to the main method.
The main will then display it out to the user.
The user will then be asked if they want to enter in another number. (While or Do While – your Choice) in persudo code please

Answers

Answer:

yea that is correct hope this works

write the steps to convert text into table​

Answers

Answer:

abcd efg hijk lmnop

Explanation: qrs tuv wxyz

How do you move a slide to another location in you your
presentation?

Answers

Answer: Literally click on it and hold, then just drag it to wherever you want it

Explanation: Hope this helped you

Write down 7 example of modern motherboard

Answers

1. ATX
2. Nano-ITX
3. Micro-ATX
4. EATX
5. WATX
6. Mobile-ATX
7. Pico-ATX
Hope this helps and mark branliest or give thanks plssss!!!

Mathematics and computer science share the concept of recursion.
You wrote a program to find the factorial of a number using recursion.
4! =

Answers

Answer:

24

Explanation:

took on edge already

Recursion was designed to address issues that can be divided into smaller, repeatable issues. Recursive algorithms generally have fewer code lines and less reliance on data structures than equivalent iterative algorithms.

Why is recursion so difficult to picture?

Recursion has been known as the challenging to visualize. The strange thing about recursion is that our brains can't naturally picture it. Recursion was designed to address issues that can be divided into smaller, repeatable issues. Recursive algorithms generally have fewer code lines and less reliance on data structures than equivalent iterative algorithms.

Every time the recursive function is run, stack space is consumed (we'll go into more detail about this in the following) and space is put aside for its local variables. Recursion has been known as the challenging to visualize. The strange thing about recursion is that our brains can't naturally picture it.

Therefore, the recursive version really consumes a lot more space overall than the iterative version.

Learn more about recursive version on:

brainly.com/question/12115774

#SPJ2

Activity 3. Checking Your Understanding on Series and Parallel Circuit
Write True if the statement is true and if the statement is false, change the
underlined word to make the statement true. Write your answers on a separate
sheet of paper.
1. In a series circuit, if one light bulb does not function all other light bulbs
will still function.
2. In a parallel circuit, not all light bulbs do not have the same brightness in
the circuit.
3. In a parallel circuit, loads are easy to control individually.
4. A parallel circuit is easy to install.
5. Series circuits do not overheat easily.
6. Adding more loads in parallel circuit may overload the circuit.
7. Every load in a parallel circuit has the same voltage.
8. The parallel circuit is difficult to install and repair due to the volume of
conducting wires required in the connection.
9. In a series circuit, loads are difficult to control individually.​

Answers

Answer:

1.False-Parallel cercuit

2.False-series circuit

3.True

4.False-difficult

5-9-True

Explanation:

Sana makatulong pa yung sagot ko

Other Questions
a. find the tangent ratio of angle FKGb. find the tangent ratio of angle BKGc. find the tangent ratio of angle KDFd. find the tangent ratio of angle BCKe. find the XY coordinates of point g with the center kuse the image to find the answers for each part mathematics high school done 3. What is the area of the polygon? If two organisms are classified in different orders but are in the same class, which of these statements is true? What is Human Right? Solve for z.z+5=19z= William has a checking account balance of $783.47. He wrote a check to his credit card company for $442.65. What is Williams new checking account balance? fill in the blank There are two types of vitamins, fat-soluble and _____ -soluble MHR and THR Self-CheckYou have learned to calculate Maximum Heart Rate and Target Heart Rate zone. Heres the chance to check your understanding. Enter your age and then calculate the MHR and THR zone.Calculate your Target Heart Rate zoneStep 1Enter your age: ______Step 2Calculate your Maximum Heart RateHint: MHR = 220 - your ageEnter the MHR: ____ beats per minuteStep 3Find your Resting Heart RateEnter your RHR ____Step 4Calculate your Target Heart Rate zoneHint: Target Heart Rate zone: [(MHR-RHR)*.5] + RHRandTarget Heart Rate zone upper limit: [(MHR-RHR)*.85] + RHREnter the THR zone: ____ to ____ beats per minute Which statement best compares a traditional economy and a command economy?Economic decisions are based on tradition and culture in a traditional economy, while trade is limited to barter in acommand economy.Individuals have little control of economic decisions in a traditional economy, while the government owns all of theresources in a command economy.Methods for farming, hunting, and gathering change little over time in a traditional economy, while there is nocompetition to produce goods and services in a command economy.Economic decisions are made by the government in a traditional economy, while the government sets the prices ofgoods and services and distributes them in a command economy. French 3La maison:Les rgles: Your parents have rented an apartment for summer in a family residencenear the beach. Complete each rule (rgle) Les vacantiers peuvent (The vacationers can) (1)(emmnager, dmnager, louer dans la rsidence au dbut du mois de juillet. Le (2)(chambre, loyer, studio) est pay la fin dusjour (stay) Il est demand aux vacanciers de ne pas faire du bruit dans (3)(les appartements, les baignoires, les placards) aprs 10:30 du soir. Chaque famille partage(une commode, leSous-sol, une pice) avec les autres familles Ilya (5)(deux salles de bains, trois escaliers,un jardin) dans tous les appartements. Il faut les nettoyer (clean) la fin dusjour. Les vacanciers peuvent utiliser la piscine dans (6)(le couloir, le jardin, le canap), derrire la maison de shoo 18h00Il est interdit (forbidden) de laisser les vlos dans le jardin. Si vous avez un vlo,il y a (7)(un quartier, un escalier, un garage) pourtous les vacanciers Si vous avez d'autres questions, il y a du papier et un crayon dans (8)(le fauteuil, le tiroir, le rideau) sur la droite. Plzz helpp meee xkkdkskslksls asappp What do Impressionist artworks by Mary Cassatt depict?please help Which is not a characteristic of money?Group of answer choicesMoney is flammableMoney is limitedMoney is divisibleMoney is durable Let x represent the number of pages left to be read in a book consisting of 780 pages.Which of the following is the domain of x?A. The set of all integers between 0 and 750 inclusiveB. The set of integersC.the set of whole numbersD. The set of all real numbers between 0 and 750 inclusive E the set of real numbers The length of a flat screen TV is 5 inches less than 3 times its width. If the perimeterof the TV is 150 inches, find the area of the TV. it has an undefined slope and passes through (-2,5) write in y=mx+b When ice melts it changes from a solid to a liquid. This macroscopic change we see with out eyes is the result of what microscopicchange?A)The particles in the solid are gaining energy and moving from their fixedposition.B)The particles in the solid are loosing energy and moving from their fixedpositionC)The particles in the solid are gaining energy and becoming free from allother particles.D)The particles in the solid are loosing energy and becoming free from allother particles. 5) A certain type of virus triples every 4 hours. If you started with 16 viruses, how manywould you have after 20 hours? 1. Which of the following best describes a central ideaof the poem?A Women are falsely considered inferior to men.CB Women should be able to decide whom theymerO comen are controlled by various menthroughout their lives.D Women should accept that they are alwaysgoing to be controlled by men. Write the equation of the line in slope-intercept form that has: slope: -1 point: (2, -3)