Edit the program provided so that it receives a series of numbers from the user and allows the user to press the enter key to indicate that he or she is finished providing inputs. After the user presses the enter key, the program should print:

The sum of the numbers
The average of the numbers
An example of the program input and output is shown below:

Enter a number or press Enter to quit: 1
Enter a number or press Enter to quit: 2
Enter a number or press Enter to quit: 3
Enter a number or press Enter to quit:

The sum is 6.0
The average is 2.0

This is what I have but it just keep going with the numbers
# Edit the code below
theSum = 0.0
count = 0
while True:
number= input("Enter a number or press Enter to quit:")
if number=="":
break
theSum+=float(number)
count+=1
print("The sum is", theSum)
if count>0:
print("The average is ", theSum/count)

Answers

Answer 1

The edited and complete program is as follows

theSum = 0.0

count = 0

while True:

   number= input("Enter a number or press Enter to quit:")

   if not number:

       print("The sum is", theSum)

       if count>0:

           print("The average is ", theSum/count)

       exit()

   theSum+=float(number)

   count+=1

How to edit the program?

The complete program that calculates the average and the sum of numbers entered by the user is as follows:

Note that the program ends when the user presses the enter key and comments are used to explain each line

#This initializes the sum

theSum = 0.0

#This initializes the counter

count = 0

#This ensures the user enters numbers repeatedly

while True:

   #This gets the input

   number= input("Enter a number or press Enter to quit:")

   #When the user presses enter

   if not number:

       #This prints the sum and the average

       print("The sum is", theSum)

       if count>0:

           print("The average is ", theSum/count)

       #This exits the program

       exit()

   #This calculates the sum

   theSum+=float(number)

   count+=1

Read more about python programs at

https://brainly.com/question/26497128

#SPJ1


Related Questions

who can help me looping​

Answers

Answer:

See attachment

Explanation:

I have provided all 3 programs in the attached text file.

All of these are complete programs so I could test them myself

Hope that works for you

What is the output of the below Python code?
list1=[12,54,32,29,81]
list1.remove(32)
print(list1)

Answers

The output of the below Python code:

list 1 = [ 12, 54 , 32 , 29 , 81 ]

list 1 . remove ( 32 )

print ( list1 )

is

[12, 54, 29, 81]

What is a List in Python Programming?

This refers to the sequence that contains python objects and objects inside are separated by a comma (,) and enclosed within square brackets.

Hence, it can be noted that:

A List can contain values of the types Integers, Floats, Lists, and Tuples.

Integer values such as the whole numbers can be positive, negative, and zero. Example => 5, 6, 7, -8, 0 etc.

Float values are those values that consist of decimal numbers. Example => 5.25, 9.187 etc

Therefore, we can see that from the given code:

list1 is a list and it contains integers.

list1.remove(32) removes the first matching element 32

After all the compiling is done, the output would be [12, 54, 29, 81]

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

You have multiple manufacturing computers that control the machinery to several assembly lines. The software for the assembly line controls rarely changes. The assembly lines cannot go down because of problem Windows updates or new features.

Q. What do you recommend?

Answers

Since the assembly lines cannot go down because of problem Windows updates or new features, I would recommend that the automatic update of Windows should be turned OFF or limited to essential updates only.

What is an operating system?

An operating system (OS) is a system software that's usually pre-installed on a computing device by the manufacturers, so as to manage random access memory (RAM), software programs, computer hardware and all user processes.

In Computer technology, some examples of an operating system used on various computers include the following:

OpenVMSMacOSQNX OSLinux OSIBMSolarisVirtual Machine (VM)Microsoft Windows OS

Generally speaking, we know that the software used on manufacturing computers in the assembly line controls rarely changes and as such to prevent the assembly lines from going down due to issues associated with Windows updates or new features, I would recommend that automatic update and new features of Windows should be disabled, turned OFF or limited to essential updates only.

Additionally, Windows 10 Enterprise Long-Term Servicing Branch (LTSB) can also be installed to solve this problem.

Read more on Windows updates here: https://brainly.com/question/15329847

#SPJ1

A keyboarding technique, you can type more quickly and precisely without having to glance at the keyboard.

Answers

Answer: Look at the chart and use it to help you type, and eventually you'll get the hang of it.

Ask the user to input an integer. Print out the three numbers before it.

Sample Run-
Enter an integer: 4
3
2
1

Answers

Answer:

f=float(input("Enter an integer: "))

c=(f-1)

a=(c-1)

b=(a-1)

print(str(c))

print(str(a))

print(str(b))

Explanation:

This will print everything correctly, just copy and paste!

Questions about Python or more ProjectStem help? Just Send me a message!

Hello, I desperately need help in python with this question. I have tried everything: This is the question also:

4.24 LAB: Even/odd values in a list

Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input begins with an integer indicating the number of integers in the list. The first integer is not in the list.

Ex: If the input is:

5
2
4
6
8
10
the output is:

all even
Ex: If the input is:

5
1
-3
5
-7
9
the output is:

all odd
Ex: If the input is:

5
1
2
3
4
5
the output is:

not even or odd
Your program must define and call the following two functions. is_list_even() returns true if all integers in the list are even and false otherwise. is_list_odd() returns true if all integers in the list are odd and false otherwise.
def is_list_even(my_list)
def is_list_odd(my_list)

This is what I came up with:

def GetUserValues():
n = int(input())
numbers = []
for i in range(n):
numbers.append(int(input()))
return numbers


def IsListEven(myList):
for n in myList:
if n % 2 == 1:
return False
return True


def IsListOdd(myList):
for n in myList:
if n % 2 == 0:
return False
return True


if __name__ == '__main__':
userValues = GetUserValues()
if IsListEven(userValues):
print("all even")
elif IsListOdd(userValues):
print("all odd")
else:
print("not even or odd")



What Am I doing incorrectly and can someone show me?



Lily

Answers

Answer:

Read explanation and check out corrected code

Explanation:

Hi Lily

The formatting was destroyed when you copied pasted code onto the brainly question box.

When posting code, it's better to copy the code into a text editor(such as notepad), save it as a text file and upload this through the clip icon on the bottom right of the brainly toolbar (at the bottom)

Anyway, I copied your code and properly formatted it and it works fine

Since I cannot see the formatting, I am assuming that your return True statements are improperly indented. These statements should go with the for loop, not the if statement

Here is the wrong way to define

def IsListEven(myList):

       for n in myList:
                if n % 2 == 1:
                    return False
                return True   #this belongs to the if statement

If you write your code as follows, the return True goes with the if statement. That means it will return from the function as soon as it finds an even number without checking the rest of the list. For example if the list was [2, 4, 6, 8, 1], the function will return True on the first element in the list without going through all the elements

The correct way is:
def IsListEven(myList):        
       for n in myList:
               if n % 2 == 1:
                   return False
        return True    # now belongs to the for loop

When posting code, it's better to copy the code into a text editor(such as notepad), save it as a text file and upload this through the clip icon on the bottom right of the brainly toolbar (at the bottom)

Why the code is copied?

The copied your code and properly formatted it and it works fine. Since I cannot see the formatting, I am assuming that your return True statements are improperly indented. These statements should go with the for loop, not the if statement

Here is the wrong way to define

def IsListEven(myList):

      for n in myList:

               if n % 2 == 1:

                   return False

               return True   #this belongs to the if statement

If you write your code as follows, the return True goes with the if statement. That means it will return from the function as soon as it finds an even number without checking the rest of the list. For example if the list was [2, 4, 6, 8, 1], the function will return True on the first element in the list without going through all the elements

The correct way is:

def IsListEven(myList):        

      for n in myList:

              if n % 2 == 1:

                  return False

       return True    # now belongs to the for loop

Therefore, When posting code, it's better to copy the code into a text editor(such as notepad), save it as a text file and upload this through the clip icon on the bottom right of the brainly toolbar (at the bottom)

Learn more about posting code on:

https://brainly.com/question/30390043

#SPJ2

100 POINTS! What are the essential parts of a mathematical function in spreadsheets? Select three options.

A. input parameters

B. variables

C. output value

D. expressions

E. name

Answers

Answer:

D.

Explanation:

It is to be noted that the essential parts of a mathematical function in spreadsheets are:

input parameters (Option A)variables (Option B)expressions (Option D).

What is a mathematical function?

A mathematical function is a rule that determines the value of a dependent variable based on the values of one or more relationships between the independent variable. A function can be represented in a variety of ways, including a table, a formula, or a graph.

When it comes to variables and spreadsheets, "it's garbage in garbage out." The computer has no way of knowing which variable is the right one to enter. This remains the solve prerogative of the Spreadsheet user, hence it's importance.

Learn more about Spreadsheets:
https://brainly.com/question/26919847
#SPJ1

Can someone help me with a code
Write a program that generates and prints five random lottery numbers of a three-digit number
between 100 and 999. The three digits in the number are the same. Use only one loop.
it needs to print what's below.
Lottery number1: 333
Lottery number2: 222
Lottery number3: 888
Lottery number4: 777
Lottery number5: 111

Answers

Answer:

lottery number 3

Explanation:

You need to contact a client on the phone. You have estimated that you have a 70% chance of contacting the client on the first call. If you don't, you estimate that you have a 20% chance of contacting the client on a subsequent call in the next hour. Which of the following is true?

a. The probability that you will need at most two calls to contact the client is 0.90.
b. The probability that you will fail on call 1 but will succeed on call 2 is 0.06.
c. The probability that you will fail on call 1 but will succeed on call 2 is 0.50.
d. The probability that you will need at most two calls to contact the client is 0.80.

Answers

From the information provided, the correct answer is Option B - " The probability that you will fail on call 1 but will succeed on call 2 is 0.06." See further explanation below.

What is probability?

Probability is an area of mathematics that deals with numerical representations of how probable an event is to occur or how likely a statement is to be true. The probability of an occurrence is a number between 0 and 1, where 0 denotes the event's impossibility and 1 represents certainty.

Hence,

P(E) = Number of favorable outcomes/Total Number of outcomes.

Step I

From the information provided, the probability of failing to contact the client on the first call can be computed as:

30% = 0.3

[Rationale is based on estimation. If there is an estimated 70% chance of success, then the chance of failure is 30% which is 0.3]

Step II

The probability of contacting the client on the second call is: 0.2 or 20% [Rationle is as per the given assumption.]

If the two scenarios above hold out because they are mutually exclusive events, the probability, therefore, that you will fial on call 1 and succeed on call two becomes:

0.3 x 0.2

= 0.06

Hence, Option B is the correct answer.

Learn more about probability:
https://brainly.com/question/25870256
#SPJ1

Instructions
Write a program that prompts the user to input an integer and then outputs both the individual digits of the number and the sum of the digits.

For example, it should output the individual digits of:

3456 as 3 4 5 6
8030 as 8 0 3 0
2345526 as 2 3 4 5 5 2 6
4000 as 4 0 0 0
-2345 as 2 3 4 5



My code:

#include

using namespace std;

int main(int argc, char* argv[]){
// Write your main here

int a=0,b[100]={0},n=0,sum=0;

cin>>a;

while(a>0)
{

b[n]=a%10;

a/=10;

n++;

}

for(int i=n; i>0; i--)
{

printf("%d ",b[i-1]);

sum+=b[i-1];

}

printf(" Sum: %d ",sum);

cin.get(); cin.get();

return 0;

}

Problem:

The input needs to be -2345

and the output should result in

Sum: 0
but it's wrong,
the result of this code is 50%
and I don't know why, pls help

Answers

A program that prompts the user to input an integer and then outputs both the individual digits of the number and the sum of the digits is given below:

The Program

#include < iostream >

int main( int argc , char * argv [ ] )

{

   int number , digit , sum = 0;

   std : : cout < < " Enter number : " ;

   std : : cin  > > number ;

   while ( number > 0 )

   {

       digit = number % 10;

       std : : cout << digit << ' \ t ' ;

       sum = sum + digit ;

       number = number / 10 ;

   }

  std : : cout < < " Sum is : " < < sum < < std : : endl ;

return 0;

}

Your original code has the right ideas, but you will have to use the std to print out the output as used above and your output would be in individual numbers.

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Answer must be submitted in a python file (.py at the end of the file) or as python code snippet


Pretend you need to added 10% taxes to your total from a purchase


Write a program that answers this questions (What is your total?) using the input function

Take the value entered and add 10% to the total

Display the total

Answers

Answer:

purchase_cost = float(input("What is your purchase cost? "))

tax_rate = 10/100    #(10% = 10/100)

tax = purchase_cost * tax_rate

total_cost = purchase_cost + tax

print("Total Cost = ",  total_cost)

Explanation:

what's 7 // 2 result in python expression please

Answers

Explanation:

If the variable declared as float data type and stores the value(7/2) then the output will be 3.50. The decimal numbers is stored in float datatype.

I hope it will be helpful for you.

Answer: 3.50

Explanation: got it right on edgen

Which camera settings will cause the amount of light entering the lens to change?

Answers

Answer:

Aperture

Explanation:

Aperture controls the lens' diaphragm, which controls the amount of light traveling through the lens to the film plane.

Define what is rusty's wired series.what does it do to your life?​

Answers

Rusty's Wired Series is a line of supplements that are designed to improve cognitive function and energy levels. The supplements are taken daily and can help improve focus, memory, and overall brain function.

Lira has typed up a document and now she wants to adjust the irregular right edge of the text so that it is even. How can she accomplish this?

by changing the margins
by adjusting the indent markers
by changing the spacing between words
by using the Justify and Automatic Hyphenation options

ANSWER IS D. by using the Justify and Automatic Hyphenation options

Answers

Answer:

d. by using the Justify and Automatic Hyphenation options

Explanation:

computational thinking

Answers

Answer:

Computational Thinking (CP) is the mental skill to apply fundamental concepts and reasoning, derived from computing and computer science, to solve problems in all areas.

What is Computational Thinking?

Computational thinking is an interrelated set of skills and practices for solving complex problems, a way to learn topics in many disciplines, and a necessity for fully participating in a computational world.

Translate the following C program to Pep/9 assembly language.
#include
int myAge;
void putNext(int age) {
int nextYr;
nextYr = age + 1;
printf("Age: %d\n", age);
printf("Age next year: %d\n", nextYr);
}
int main () {
scanf("%d", &myAge);
putNext(myAge);
putNext(64);
return 0;
}

Answers

In this exercise we have to use the knowledge of computational language in C code to write a code that Translate the following C program to Pep/9 assembly language.

Writting the code:

In C code:

#include <stdio.h>

int myAge;

void putNext(int age) {

int nextYr;

nextYr = age + 1;

printf("Age: %d\n", age);

printf("Age next year: %d\n", nextYr);

}

int main () {

scanf("%d", &myAge);

putNext(myAge);

putNext(64);

return 0;

}

In Pep 9 CODE-

myAge:

.zero 4

.LC0:

.string "Age: %d\n"

.LC1:

.string "Age next year: %d\n"

_Z7putNexti:

pushq %rbp

movq %rsp, %rbp

subq $32, %rsp

movl %edi, -20(%rbp)

movl -20(%rbp), %eax

addl $1, %eax

movl %eax, -4(%rbp)

movl -20(%rbp), %eax

movl %eax, %esi

movl $.LC0, %edi

movl $0, %eax

call printf

movl -4(%rbp), %eax

movl %eax, %esi

movl $.LC1, %edi

movl $0, %eax

call printf

nop

leave

ret

.LC2:

.string "%d"

main:

pushq %rbp

movq %rsp, %rbp

movl $myAge, %esi

movl $.LC2, %edi

movl $0, %eax

call scanf

movl myAge(%rip), %eax

movl %eax, %edi

call _Z7putNexti

movl $64, %edi

call _Z7putNexti

movl $0, %eax

popq %rbp

ret

See more about C code at  brainly.com/question/18502436

#SPJ1

What are the differences
between scanning a 3-D object and photo-
graphing that same object with a camera?
Are there things you can control with a
camera that you cannot control with a
scanner?

Answers

The main difference between scanning a 3-D object and photographing that same object with a camera is that you can control the lighting when you scan an object, whereas you cannot control the lighting when you photograph an object. You can also control the distance between the object and the scanner, whereas you cannot control the distance between the object and the camera.

What is scanner?

Scanner is a disc space analysis and management utility for Microsoft Windows. It shows the disc space consumption of any drive or directory as a layered pie chart that can be browsed up and down the directory tree. When the mouse is moved over a pie, the application displays which directory the pie represents, how many files it contains, and how much disc space it takes up. A context menu allows users to open the directory in Windows Explorer, hide and unhide it from the diagram, and delete the pie from the disc permanently or via the Recycle Bin.

To learn more about scanner

https://brainly.com/question/24937533

#SPJ13

What is one of the FIRST things people at an advertising agency do when they are planning a new ad campaign?

A.
find the right images and symbols to get the message across

B.
decide which consumers they will target

C.
pick a new product name and a new slogan or catchphrase

D.
select the right music for the ad campaign

Answers

Answer: decide which consumers they will target

innovative ways of sharing information that could be advantageous of

Answers


How do you share innovative ideas?
Find out what questions they have and answer them. Ask them what thoughts they have about starting and plug those into the vision you had for the idea. Give them total freedom to reinvent the idea. Commit to helpfully watching over the co-creator's shoulder as they start to share ideas on moving forward

what am i doing wrong ????



def main():

firstNumber = float(input('Enter your first number'))
secondNumber = float(input('Enter your second number'))

return firstNumber, secondNumber

def add(firstNumber ,secondNumber):
return firstNumber + secondNumber
def subtract(firstNumber , secondNumber):
return firstNumber - secondNumber
def multipy (firstNumber , secondNumber):
return firstNumber * secondNumber
def divide (firstNumber, secondNumber):
return firstNumber / secondNumber
def modulo (firstNumber , secondNumber):
return firstNumber % secondNumber
def exponent (firstNumber , secondNumber):
return firstNumber ** secondNumber



def userOutput(firstNumber, secondNumber,total,sub,mul,div,mod,exp):
print(firstNumber + secondNumber == total)
print(firstNumber - secondNumber == Sub)
print (firstNumber * secondNumber == mul)
print (firstNumber / secondNumber == div)
print (firstNumber % secondNumber == mod)
print (firstNumber ** secondNumber == exp)

total = add(firstNumber , secondNumber)
sub = subtract(firstNumber, secondNumber)
mul = multiply(firstNumber, secondNumber)
div = divide(firstNumber, secondNumber)
mod = modulo(firstNumber, secondNumber)
exp = exponent(firstNumber, secondNumber)



def printAnswer (anwserAdd, anwserSubtract,anwserMultiply,anwserdivide, anwserModulo,anwserExponent):
print (anwserAdd, anwserSubtract,anwserMultiply,anwserdivide, anwserModulo,anwserExponent)


# --------------------------------
# I've called main() for you.
# This line is a special way to call main
# that allows me to test your code. Do not change it!
if __name__ == '__main__':
main()

Answers

You have a few problems.

You are not calling main() anywhere.
You are not calling userOutput() anywhere.
You are not calling printAnswer() anywhere

Explanation:

what is the problem ? does it not compile or run at all ? it do you get something unexpected ?

did you specify your whole program or just a part ?

based on what I see I would assume it does not compile and produce, so your cannot even start it.

and that should be because the way you defined printAnswer.

you did not specify types for the parameters, and because there is also no call of printAnswer, the compiler does not have any clue about the types that way either.

for userOutput this was different, because the return statements of all the functions (add, subtract, ...) provide the type information.

also, there is no end for the function printAnswer.

the compiler simply goes on after the print statement, assuming that the following still belongs to printAnswer and finds an if-starement checking a variable __name__, which might be unknown to the compiler (if there are no other definitions included at least in the background). and then a call of main.

and then finally printAnswer is finished.

further observations :

the print statements in userOutput clearly want to use strings, but you did not include any ' signs.

I think you meant them to look like

print(firstNumber, ' + ', secondNumber, ' == ', total)

our did you mean it as a user guideline for selecting or rather specifying an operation on the 2 numbers entered earlier ?

then it would be like

print('firstNumber + secondNumber == total')

then you never call printAnswer or userOutput anywhere. you don't ask for the user input anywhere to select the desired operation. and you don't check that input anywhere to define what operation to perform.

so, the main program will ask for the 2 numbers and then simply end.

The value of the expression X(X+Y) is X
O a. True
b. False

Answers

sorry I didn’t know this was Boolean math

I answered for regular math equations

which encryption protocol does gre use to increase the security of its transmissions?

Answers

Utilizing IPsec for security during transmission is the encryption protocol used to strengthen the security of its transmissions. The right answer is c.

The encryption algorithm performs encryption. To perform encryption, encryption algorithms are utilized. These algorithms use the encryption key to carry out all cryptographic operations on the plaintext material. These methods are then used in encryption protocols to protect data for a number of objectives. A security protocol (also known as a cryptography protocol or encryption protocol) is a concrete or abstract protocol that carries out a security-related task while also employing cryptographic techniques, frequently in the form of sequences of cryptographic primitives. As a result, the encryption protocol to boost security is IPsec, which is option c.

The complete question-  Your most probably complete question is given below:

a. SSL b. SFTP c. IPsec d. SSH.

Learn more about protocol here-

https://brainly.com/question/27581708

#SPJ4

What does a computer code refer to, if I should take as a programming model a tree from nature? What exactly is the code supposed to do?

Answers

Computer code are said to be set of a defined instructions or a system of rules that are often defined in a specific programming language.

Coding informs a machine about a given actions to carry out and how to finish the tasks.

What does a programming code mean?

Computer code are seen as some group of instructions and it is a term used in computer programming (such as the source code).

Therefore, Note that It is also the name given to the source code after a compiler has prepared it for computer execution (such as the object code).

Learn more about programming from

https://brainly.com/question/16936315
#SPJ1

3) Which of the following would not impact the digital divide?
Expansion of free wifi connectivity in major cities
O Legislation allowing communications companies to charge per website for access
O Less sharing of the work we produce
O A decline in the price of internet access

Answers

The statement which does not impact the digital divide is Less sharing of the work we produce. Thus the correct option is C.

What is the Digital divide?

The term "digital divide" refers to the imbalance in populations and geographical locations between those who have and  or without  limited access to contemporary information and communications technology

Less sharing of work we produce does not impact the digital divide as Internet connectivity and wireless connectivity like Wi-Fi are frequently unavailable due to the digital divide.

Therefore, option C is appropriate.

Learn more about the digital divide, here:

https://brainly.com/question/13151427

#SPJ1

What is wrong with the following JavaScript identifier? $the_value_1st_user_enters_for_a_name

An identifier cannot include underscores.

An identifier cannot include a reserved word (in this case, for).

An identifier cannot be more than 32 characters long.

Nothing is wrong with this identifier.

Answers

There is nothing wrong with the identifier that has been used in the JavaScript written in the question.

What is a JavaScript identifier?

The term Java Script identifier is one that is used in Java script programming to talk about the characters that are in a capable that gave the ability of being able to identify variables as well as properties in functions.

These identifiers are known to be case sensitive. That is they are not to start with a digit and they are able to have unicodes such as the dollar sign.

What is a valid JavaScript Identifier?

This is the term that is used to refer to an identifier in JavaScript that is known  to include the underscore and is also made up of the dollar sign.

In the identifier that is presented in the question here, we can see that it is valid because it has the dollar sign and it also has the underscore in between the words.

Hence there is no issue with the identifier, Option D is correct as the solution.

Read more on JavaScript here:

https://brainly.com/question/7661421

#SPJ1

Which of the following refers to an attempt to compromise a device by gaining unauthorized access? A. infecting a computer with a virus B. hacking C. using quotation marks in a search engine D. sending malware

Answers

The option that refers to an attempt to compromise a device by gaining unauthorized access is option B. hacking.

What is meant by hacking?

In the context of digital devices like computers, smartphones, as well as tablets, and even entire networks, hacking refers to actions that aim to breach those systems.

Note that  Hackers are driven by monetary gain, the desire to make a statement, or simply the want to do anything.

Therefore, hacking is illegal as it is a felony that is committed every time someone enters a computer without authorization, even if they don't take anything or harm the system.

Learn more about hacking from

https://brainly.com/question/23294592

#SPJ1

modem is used for what?

Answers

Answer: Its a device

Explanation:

Basically it goes through a coax cable that connects through your home and gives you internet.

Answer:

A modem is a device that connects your home, usually through a coax cable connection, to your Internet service provider (ISP), like Xfinity. The modem takes signals from your ISP and translates them into signals your local devices can use, and vice versa.

Explanation:

Brainlest, Please!

why do we need to have multiple image file format​

Answers

Answer:

Explanation:

Each format represents a particular way of storing the data that makes up a file.

A contains elements that appear closest to the user, will have the best focus, and are meant to draw the most attention within design.

Answers

Answer:

Emphasis is the part of the design that catches the viewer's attention.

Other Questions
Super find 40 gauge copper wire is a diameter of only 0.080 mm and Waze only 44.5 g/km. Suppose a spool of 40 gauge wire weighs 471. g Les after some wire is pulled off to wind a magnet. How could you calculate how much wire is used. Set the math up. Do not do any of it just leave your answer as a math expressionAlso be sure your answer includes all correct unit symbols Estimate the quotient of 41 7.94. 4 5 6 7 Which of these is an example of an unsuccessful emotional appeal?A. In support of taking swimming lessons: Whether it's a swimming pool, a lake, a pond, or the local water park, you know you can keep yourself afloat if you happen to find yourself in deep water. But not only that, you might need to save someone else's life as well. On two separate occasions, I have helped kids in trouble in a wave pool. If I had not known how to swim, I would have been clinging helplessly to a tube. In fact, I would have been so focused on my own safety that I wouldn't even have noticed the kids who needed help.B. In support of repopulating deserts with trees: Replanting trees in devastated areas means that someone someday will have a completely different place to live in or visit--one that is healthy and thriving, and beautiful, too. Will you plant trees today to make a better tomorrow for your children and grandchildren?C.In support of retraining homeless people: When you provide the homeless everything--food, shelter, clothing, etc., you squelch their desire to take care of themselves, as well as the need to change their situation. Instead, they are treated like babies. Because of this treatment, they are forced into need and dependence--and ultimately, hopelessness. Consider Aaron, a homeless man, who took his own life because he was in so much pain from living in below-freezing temperatures for many years.D. Against keeping wild animals as pets: Wild animals can be . . . well, wild! I was playing with our pet raccoon when it suddenly turned on me and bit my arm and hand. Today, 18 stitches and a series of rabies shots later, I'm here to tell you that because wild animals are unpredictable they do not make good pets! A store sells 2 1/4 pounds of tomatoes in a package for $4.45. The expression 4.45p represents the cost of the tomatoes for a number of packages. What does the variable p represent? Riders on the power tower are launched skyward with an acceleration of 4g, after which they experience a period of free fall. what is a 60 kg rider's apparent weight during the launch? A production process is checked periodically by a quality control inspector. The inspector selects simple random samples of finished products and computes the sample mean product weight. If test results over a long period of time show that of the values are over pounds and are under pounds, what are the mean and the standard deviation for the population of products produced with this process?. On subtracting 20 from twice a number we get 50, then the number is Complete the factoring. x^2 + 8x + 15 What verb form is used in transforming direct speech to reported speech? C present 2. What symbol is used to indicate direct speech? B. parenthesis D. quotation C period 3. Which person of pronoun does not change when transforming direct speech to reported speech? D. fourth 0. progressive 8. second C. third 4. Which of the following word indicators have incorrect past tense when used to reported speech? A. here-there D. tomorrownow B.now-then C these-those S. What is the correct reported speech of the underlined sentence? am very sleepy," she said. A. I said she is very sleepy. 6. She said I am very sleepy. C. I said she was very sleepy. 6. Which of the following punctuations is NOT used in reported speech? D. She said that she was very sleepy. A exclamation B. period C. quotation D. question mark 7. What is the correct reported speech of the underlined sentence? "we love latening to music "Me the sald A. Martha said we love listening to music. C. Martha said they loved listening to music. 8. Which of the following sentences is NOT a reported speech? A. Leela said that those books were theirs. 8. Martha said that they listened to music D. Martha said that they loved listening to music. B. Ryza said that she had finished her work. C. I should not have listened to what he said. D. The king ordered his subjects to pay their taxes. 9. What is the correct reported speech of the underlined sentence? Are you a Filipino?" he asked. A. He asked, are you Filipino? 8. He asked me if I am a Filipino. D. He asked himself if he is a Filipino. C. He asked them if they are Filipino. 10. What is the correct reported speech of the underlined sentence? "Would you like some chocolates?" he asked A. He asked that I like chocolates. A. He said, "Can you pass the project". C. He said, "Would you pass the project". B. He asked that he ked chocolates. C. He asked if they would like some chocolates. D. He asked me if I would like some chocolates. 11. What is the correct reported speech of the underlined sentence?" can drive," she said. A. She said that I can drive C. She said that she can drove. B. She said that she can drive. D. She said that she could drive. 12. What is the correct reported speech of the underlined sentence? really like this view" he said. A. He said that I really like that view. 8. He said that he really like that view. D. He said that she really liked the view. C. He said that he really liked the view. 13. What is the correct reported speech of the underlined sentence? "How old are you?" he asked. A. He asked me if how old I am. B. He asked me how old are you. D. He asked me if how old are you. C. He asked me if how old was 1. 14. What is the correct direct speech of the underlined sentence? The mayor requested his people to stay at home A. The mayor said to their people, "Stay home". C. The mayor said to his people, "Please stay at home". 15. What is the correct direct speech of the underlined B. The mayor asked to his people, "Stay at home". D. The mayor said to their people, "Let us all stay home sentence? He asked if I could pass the project 6. He asked, "Will you pass the project". D. He asked, "Could you pass the project. i need help with question 15 Imagine that you are a teacher in the primary grades (kindergarten grade 2). Your school switched to a curriculum that is heavy on direct academic instruction for the upcoming school year. Describe how you could ensure you incorporate play into the daily routine while still meeting instructional demands. the point on 0 on the number line represents what? On Sunday, Jerome had a sore throat and fever. On Monday he went to hisregular doctor, who prescribed an antibiotic (Label 1). Jerome has been taking 2pills each day, 1 in the morning and 1 in the evening. On Wednesday, Jeromehad an upset stomach, so his dad took him to the grocery store, where theybought an over-the-counter antacid (Label 2). Jerome took the antacid medicinethat night and the next morning. By the next afternoon, the stomach ache wasgone and so were his sore throat and fever, so Jerome stopped taking bothmedicines. Jerome's drug use is... ?:7 =8:14 and 32:? =12:24 Stishen is running late for class one morning and randomly grabs two socks from a drawer that has 8 blue and 6 black. If you select four socks at random, what is the probability at most three are blue? Solve for w. = m / whWhat is w equal to?The / means it's a fraction, the M is on top, and the rest is on the bottom, 20 points, please help, no links. a light flashes every 2 minutes, a second light flashes every 3.5 minutes and a third light flashes every 4 minutes. if all three lights flash together at 8 p.m what is the next time of the day they will all flash together? HELPP creative writing, show dont tell. describing caution, being surprised. 2 sentences. 3 Find the coordinates of the vertices of each figure after the given transformation3) reflection across the x-axisEnter Question TextA U'(1,3),V'(4,3), W'(5,4),T'(1,4)B U'(3,1),V'(3,4,), W'(4,5),T'(4,1)D U'(-1,3),V'(-4,3), W'(-5,4),T'(-1,4)(3)(4-3);W(Sp-4)T(4)UTX Complete the following five sentences about enzymes in by adding a word or phrase to the box to complete the sentence. a. Enzymes are a __________ macromolecule and are made of amino acids. b. Enzymes ___________ the activation energy, or the amount of energy needed for a chemical reaction to occur. c. Enzymes do this by bringing molecules ____________ and hold them in a specific orientation, allowing two molecules to form a chemical bond that would not normally form. d. Enzymes recognize and interact with ___________molecules. Lactase will recognize lactose, but not other sugar molecules. e. During the reaction, enzymes themselves are not permanently ____________ and the enzyme is free to catalyze more reactions with oth