In python:
total = 0
i = 0
while total <= 100:
number = int(input("Enter a number: "))
i += 1
total += number
print("Sum: {}".format(total))
print("Numbers Entered: {}".format(i))
I hope this helps!
What does this loop that uses a range function do?
for i in range(7, 15)
print("goodbye")
O It prints "goodbye" 8 times, numbered from 7 through 14.
It prints "goodbye" 9 times, numbered from 7 through 15.
O It prints "goodbye" 9 times.
O It prints “goodbye" 8 times.
This code will print "goodbye" 8 times
Answer:
B. It prints "goodbye" 9 times, numbered from 7 through 15
Explanation:
Use the drop-down menus to complete the statements about creating a table of contents in Word 2016.
To use the table of contents feature in Word, a user must have already created
in the document.
The Mark Table of Contents Entry option is used for
marking nonheading text for the table of contents.
On the Table of Contents dialog box, the
button can be used to change font styles.
Answer:
1.headings and subheadings
2.manually
3.options
Answer: 1.Headings and Subheadings
2.Manually
3.Options
Explanation: Just did it on e2020.
The ____, which amplified weak electrical signals, enabled electrical sound recording.
Answer:
Radio
Explanation:
Why is it important to proofread your documents ?
Answer:
It's important to proofread your documents to make sure that you don't have any avoidable mistakes.
Explanation:
Avoidable mistakes include grammar, sentence structure, and word choice.
20
Select the correct answer.
Part of social health means that you make positive contributions to your community,
ОА.
True
OB
False
Reset
Next
Answer:
true
Explanation:
because my 8 ball said so
Answer:
True
Explanation:
For your biology class, you will be giving a presentation of the findings of a plant growth experiment. Which application is best suited for this presentation?
Writer or Word
Impress or PowerPoint
Notepad or Paint
Calc or Excel
Answer: Powerpoint
Explanation: Easy to give graphs and add pictures. You can also add shapes to create a bar graph if needed.
Answer:
Calc or Excel
Explanation:
4.1 Code Practice: Edhesive
In python 3:
while True:
name = input("Please enter a name: (Nope to end) ")
if name == "Nope":
break
print("Nice to meet you {}".format(name))
I hope this helps!
The program is an illustration of while loops.
While loops are used to perform iterative operations, until the condition is met
The program in Python, where comments are used to explain each line is as follows:
#This prompts the user for name
name = input("Please enter a name (Nope to end) ")
#This checks if input is "Nope"
while name.lower()!="nope":
#If no, this prints the greetings
print("Nice to meet you",name)
#This prompts the user for another input
name = input("Please enter a name (Nope to end) ")
Note that the loop is repeated until the user enters "Nope" or "nope"
Read more about while loops at:
https://brainly.com/question/18430675
Which sentences describe the value of a conditional statement? Check all that apply.
It allows a programmer to designate a portion of the code that will be run only when a condition is met.
It creates new program code when a condition is met.
It allows a programmer to set a condition that must be met.
It incorporates decision-making into a program.
Answer:
134
Explanation:
Edgenuity
Answer:
1. It allows a programmer to designate a portion of the code that will be run only when a condition is met.
3. It allows a programmer to set a condition that must be met.
4. It incorporates decision-making into a program.
Explanation:
A variety of fonts may be used in letter writing as long as the font size is 12 points.
True
False
Answer:
False
Explanation:
William would ike to sort a list of items after the data is already entered Which method is NOT an available sort option? text O number O date Osymbol
Answer:
symbol
Explanation:
edge2020
Answer:
symbol
Explanation:
took the test
Which of the following might cause a mobility impairment that limits computer use? Select 3 options.
a color blindness
Odyslexia
O neurological issue
injury
O genetic issue
Explanation:
A color blindness , injury .
Answer:
neurological issueinjurygenetic issueExplanation:
The question is about mobility impairment. Color blindness and dyslexia have to do with vision, so rarely cause mobility issues related to computer use. Rather they would cause issues related to reading the screen.
The remaining three choices are the ones you want.
Bill has several workbooks open, and he would like to see them all side by side on the screen. Which option on the
Arrange All menu should he use?
Tiled
Cascade
Horizontal
Vertical
Answer:
tiled
Explanation:
What is a goal?
What is a strategy?
What are tactics?
hy is it important for a goal to be specific?
Which option ensures that a page break is automatically inserted ahead of a specific paragraph or heading?
the Page Breaks Before option in the Paragraph dialog box
the Keep With Next option in the Paragraph dialog box
the Keep Lines Together option in the Paragraph dialog box
All of the above options are correct.
Answer:
All the above options are correct
Answer: d
Explanation:
100 POINTS PLEASE HELP Ken Thompson and Dennis Ritchie co-created which operating system?
Answer:
UNIX operating system
Explanation:
Unix is a family of multitasking, multiuser computer operating systems that derive from the original AT&T Unix, development starting in the 1970s at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and others.
Answer:
the UNIX
During the 1960s to 1970s, Bell Labs colleagues Ken Thompson and Dennis Ritchie developed UNIX, a multi-tasking, multi-user operating system alternative to the batch processing systems then dominating the computer industry.
Explanation: