4.9 Code Practice: Question 1

4.9 Code Practice: Question 1

Answers

Answer 1

total = 0

for x in range(3, 67, 3):

   total += x

print(total)

I hope this helps!

Answer 2

The program sums all the values in a given range and assigns the total to the sum variable. The program is written in python 3 thus :

sum = 0

#initialize a sum variable, initialized as 0

for x in range(3, 67, 3):

#loop through the range taking a step of 3 after each iteration.

sum+= x

#add the iterated value to the sum variable after each iteration

print(sum)

#display the sum

A sample run of the program is attached

Learn more :https://brainly.com/question/14899725

4.9 Code Practice: Question 1

Related Questions

What makes these Pokémon special?
-Charizard
-Blastoise
-Charmander
-Ivysaur
-Missingno

First one to get it right gets Brainliest! If you get it right in the comments, I'll thank you on your profile!

Answers

Answer:

Charizard is a fire type dragon that is orange Blastoise is a big turtle that's water type Charmander is a fire type dinosaur the first evolution of Charizard Ivysaur is a grass type Turtle looking thing and the last one is a glitch

Answer:

i believe they are all based off of real amphibians and reptiles.

Explanation:

i really need brainliest if i got it wrong give me another try. i named my chameleon charmander so i really do love pokemon this is just such a specific question.  

A looping construct that continues to repeat until the expression becomes false is

A) a while loop.
B) a for loop.
C) an infinite loop.
D) a pass loop.

Answers

Answer:

A) a while loop.

Explanation:

A while loop is a programming construct that continues to repeat until the expression becomes false.

While loops are conditional statement that executes as long as the conditions remain true. They are used to automate tasks that are otherwise repetitive and would require redundant computing time to do them manually.

Answer: A. A while loop. I think

Explanation:

reply emailing a student who is asking about audio materials​

Answers

Answer:

The student because you are replying to the student.

Explanation:

Question 6 of 10
When should you forward instead of replying to an email?
A. When you want the original sender to know someone was left off
the list
B. When the recipient was not included on the original email
C. When you do not want to Reply All
D. When you want to ensure privacy
SUBMIT

Answers

Answer:

C

Explanation:

Its C because if someone else was added they could see the email as well.

If you want to change a number in a cell, you must delete it first before entering a new number
True
False
This is with Google Sheets.

Answers

Answer:

true

Explanation:

hope this helps.................

Right now, I'm banned, I'm trying to see where it says the time until I'm unbanned, but I can't find it. Does anyone know where it is?

Answers

Answer:

Well it may be on your profile but other than that it will take you 1 month to get your account unbanned

Answer:

It should be next to your username. It depends on how long the administrators wanna ban you. It can be from 15 minutes to 48 hours.

Explanation:

Question, who wants 100 points?

Answers

Me and well thank you
Mee!! I mean who wouldn’t want those points:)

How do you delete data from a cell?
O press the delete key
O the d key
O the enter key
O F5 key

Answers

Answer:

press the delete key is the way to delete the data from a cell

How do you customize calendar view​

Answers

Answer:

On your computer, open Google Calendar.

At the top right corner, click Settings. Settings.

At the left, click View options.

Choose your settings. Changes are automatically saved.

Explanation:

Brain-list please

Answer:

The layout command group is used to change the views

Explanation:

How is it possible for the router to know whether it is supposed to send a cat photo to your laptop or your mom’s phone or the display on your smart fridge?
Group of answer choices

It uses the private IP address.

It uses the public IP address.

It uses the POP address.

It uses the DNS address.

Answers

Answer:

It uses the Private IP address

Explanation:

4.9 Code Practice: Question 3

Answers

total = 0

for x in range(99, 0, -1):

   total += x

   print(total)

I hope this helps!

The program adds displays the sum of integers from 99 decreased by 1 until 0 and displays the running total for each step. The program written in python 3 goes thus :

running_total = 0

#initialize a running total variable which hold the sum of all the iterations

for num in range(99, 0, -1):

#using a for loop, which accepts a range starting from 99 and decreases by 1 until the 0

running_total += num

#for each iterated value, add the value to the running total variable

print(running_total)

#display the running total for each iteration.

A sample run of the program ls attached.

Learn more : https://brainly.com/question/19115265

You have used loops for repetitive processes.

Which kind of loop is used when you know ahead of time how many passes you want to make through a loop.


if

while

for

do

Answers

Answer:

for

Explanation:

because:

IF = conditionalWHILE = conditionalDO = isn't a loop function

The kind of loop which is used to know ahead of time how many passes you want to make through a loop is for loop. The correct option is C.

What is for loop?

A "For" Loop is used to iterate over a specific block of code a predetermined number of times.

To check the grade of every student in the class, for example, we loop from 1 to that number. When the number of times is unknown, we use a "While" loop.

For use with loops. For loops will execute a block of code a predetermined number of times.

They are called for loops because you can tell your app how many times you want it to repeat the code. For loops are similar to telling your app to "repeat this for 17 times" or "repeat this for 5 times."

Thus, the correct option is C.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ2

Any attribute modifier that can be used in a external or internal CSS style can be applied on a _____.


multiple-line basis

single coded line

multiple coded line

single-line basis

Answers

Answer:

D single line basis

Explanation:

Listening bro

What will you see on the next line?
>>> aList = [9, 2, 3.5, 7]
>>> aList.sort()
>>> aList

An error statement since you tried to sort a list with both int and float numbers.
[9, 2, 3.5, 7]
[2, 3.5, 7, 9]

Answers

Answer:

c [2, 3.5, 7, 9]

Explanation:

Given the following code:

>>> aList = [9, 2, 3.5, 7]

>>> aList.sort()

>>> aList, the thing that would be seen on the next line is c [2, 3.5, 7, 9]

What is an Array?

This refers to the collection of data that are similar to each other and can be easily identified by an array index.

Hence, we can see that from the simple array given, there is an unordered list and with the command, "aList.sort()", this arranges the unordered list into one that is ordered and this would provide [2, 3.5, 7, 9] which is in ascending order.

Read more about arrays here:
https://brainly.com/question/24275089

#SPJ2

Match each Excel term to its definition. cell a group of cells containing related data ribbon a row of tabs, groups, and commands Excel's version of a spreadsheet range a container used to input data title bar file name 4 worksheet​

Answers

Answer:

ribbon- a row of tabs, groups, and commands

range- a group of cells containing related data

title bar- file name

cell- a container used to input data

worksheet- Excel’s version of a spreadsheet

Explanation:

Functions are pre-written formulas that carry out calculations by utilizing particular values, referred to as inputs, in a given order, or structure. Functions can be used to do calculations of any complexity. The Formulas tab on the Ribbon contains the syntax for all of Excel's functions.

What are the different Excel term?

The four primary value kinds in Microsoft Excel are referred to as Excel data types. Data can be categorized into four types: text, numbers, logical, and error. Each type can be used for a variety of tasks, so knowing which to use and when to use it is crucial.

Therefore, ribbon- a row of tabs, groups, and commands. Range- a group of cells containing related data. Title bar – file name. Cell- a container used to input data. Worksheet – Excel’s version of a spreadsheet.

Learn more about Excel here:

https://brainly.com/question/3441128

#SPJ2

Choose the true statement below. (html)
-Content should be contained in the head tags - Element tags can/should go between the head and body tags
-Content should be contained in the body tags
- All answers listed​

Answers

Answer:

content should be contained in the body tags

anybody else watch unus annus on youtub.e ??

Answers

uhh not me. i dont watch that type of stuff lol
Nah. What’s their content?

The sheep in the image below is an example of which of the following?

balanced space
positive space
negative space
neutral space

Answers

Answer:

balanced space.

Explanation:

This is a edu guess.

Select the correct answer.
On what aspect are films categorized as genres?
OA.
actors
OB.
theme
O C.
audience ratings
OD
historical periods

Answers

i think its B) Theme

What is the nature of the news in the film "EPIC 2015"?

Answers

Answer:

The narrator of "epic 2015" describes the year 2015 as the "worst of times" because it was a collection of trivial information that may not be true. There is another reason The narrator of "epic 2015" describes the year 2015 as the "worst of times" because we will not have news organizations.

Explanation:

The narrator of EPIC 2015 describes it as the collection of trivial news ad information that is not necessarily true all the time.
Hence, the news in 2015, according to the narrator of EPIC 2015 is created y apathetic journalists who are not committed to truth. It was described as the worst of times because we will not have news organisations.

Which is an advantage that electronic scheduling tools have over paper calendars?

Electronic scheduling tools work better for people who are highly visual.
Electronic scheduling tools require additional supplies to be used.
Electronic scheduling tools have automatic reminders that can be set up.
Electronic scheduling tools contain days and weeks that can be color coded.

Answers

Answer: Electronic Scheduling tools have automatic reminders that can be set up.

Explanation:

By using this automatic reminder you can have it remind you before you have to do something or have a all day reminder.

why do many experts recommand longer time horizonal if you are doing high risk investment

Answers

Answer:In general, the longer your time horizon, the better you can handle fluctuations in value and take more risk in order to reap greater rewards.

Explanation:

Choose the following "for" loops that repeat 5 times. Mark all that apply.
A. for i in range(5,10)
B. for i in range(1,5)
C. for i in range(10,2)
D. for i in range(5)

Answers

Answer:

The answer would A

Explanation:

which of these is an example of input?

Answers

Answer:

It's A.

Explanation: When you plug in headphones you are imputing them into your device.

Where can you find thousands of templates for Excel?
O Home tab
Page Layout tab
Backstage View
O
Insert

Answers

Answer: The answer is C. backstage view

Explanation: JUST ANWERED

Answer:

c backstage

Explanation:

Where is the option to insert a PivotTable in Excel 2016 located?

A) Insert tab in the Tables group
B) Formulas tab in the Data Analysis group
C) Data tab in the PivotTables group
D) Data tab in the Tables group

Answers

Answer:

It's A

Explanation:

PivotTable in Excel 2016 is located at the Insert tab in the Tables group

Microsoft excel is a spreadsheet program used for data analysis and visualization. Excel can be used to organize numbers and data with formulas and functions.

A PivotTable is used to summarize large amounts of data in graphical form.

To insert PivotTable in Excel 2016:

Click Insert tab in the Tables groupClick Pivot table

Find out more at: https://brainly.com/question/23567635

Complete the sentence.
A
receives a request from a computer and sends the request on to another device within its network.

Server
Router
Switch

Answers

Answer:

router is the answer i think

A receives a request from a computer and sends the request to another device within its network known as a router. Then the correct option is B.

What is a router?

A router is defined as the junction where the number of the networks meets for transferring between the devices.

The router is a device that connects the number of devices on a single network.

A receives a request from a computer and sends the request to another device within its network known as a router.

Thus, the correct option is B.

More about the router link is given below.

https://brainly.com/question/15851772

#SPJ2

List 4 differences between qualitative and quantitative data.

Answers

Answer:

Quantitative data is information about quantities, and therefore numbers, and qualitative data is descriptive, and regards phenomenon which can be observed but not measured, such as language.

Explanation:

Quantitative research is expressed in numbers and graphs. It is used to test or confirm theories and assumptions. This type of research can be used to establish generalizable facts about a topic.

Common quantitative methods include experiments, observations recorded as numbers, and surveys with closed-ended questions.

Qualitative research is expressed in words. It is used to understand concepts, thoughts or experiences. This type of research enables you to gather in-depth insights on topics that are not well understood.

Common qualitative methods include interviews with open-ended questions, observations described in words, and literature reviews that explore concepts and theories.

Which phrase is the best definition of sparklines in Excel 2016?

A. a type of graphic that users can insert into a worksheet
B. a type of mini chart that users can insert into a worksheet
C. a simple image that is displayed in Excel
B. a link to an outside source that is referenced in a worksheet

Answers

Answer:

The correct answer is:

B. a type of mini chart that users can insert into a worksheet

Explanation:

Microsoft excel is a spreadsheet software that is used for calculations and making payrolls.

Excel provides many visual features to display the data in graphical form. One of them is Spark lines.

Spark lines are used to show trends and variations in the collected data. Spark lines are just like mini charts.

So,

From the given options the best option is: B. a type of mini chart that users can insert into a worksheet

Hence,

The correct answer is:

B. a type of mini chart that users can insert into a worksheet

What are some websites to watch free movies on? (anybody answer with like 3 or 4 websites)

Answers

fox that what i get on at school

Answer:Kodi with builds

Explanation:

its a perfectly safe download

Other Questions
help please 20 points 15 points :))) In a proportion, what are the two middle terms called? Which statement best explains how the monsoons affected the development of early Indian civilizations? A. The flooding caused by monsoons slowed the growth of the population in early Indian civilizations.B. The water brought by monsoon rains allowed agriculture to develop throughout the region.C. The wetness from the monsoons pushed many to migrate farther south in search of a better climate.D. The harsh winters caused by strong monsoon winds blowing in from Central Asia made life more difficult Which of the following expressions is/are equivalent to 186^2x+1?There may be more than one correct answer. Select all that apply.A. 3 36/36^xB. 108^x/36C. 3^xD. 108/36^xE. 336^1x Why did Louisiana colonists dislike Ulloa?O He tightly controlled all of the colony's money andmaterial goods.O He wanted to keep old laws that most colonistsdisagreed with.O He tried to make changes, but did not have whatwas needed to accomplish them.O He had the backing of French officials, but not thesupport of the new Spanish officials. Cash that comes in and goes out of a business over a specific period of time is called _____.BudgetCash flowCash outCash in What is the determinant of an identity matrix?10101 Goods worth 2,400 purchased on credit from Vikram were entered in the sales Book. However, Vikram's Account had been correctly credited the earliest known attempt to notate a peice of music was in 138 BC and was a song written to honor the greek god ______ 6 3/4 as an impropper fraction Explain how unions transformed working conditions for Americans in the early 20th century. Which of the following represents a function?A. (4,1), (4,2), (4,3), (4,4)B. (-3,4), (-3,4), (-3,-4), (-3,-4)C. (5,2), (6,2), (-5,-2), (-6,-2)D. (6,8), (-2,4), (7,7), (6,5) Find the measure of the missing angle? Help pls. Which term best describes words, phrases, or pieces of information that support the main idea of a text?O inferencesO key detailsO purposeO text features What are three synonyms for taste as it is used in thesentence below?"I'm not hungry, so I will just taste the main dish."chewnibbleflavorbit What are non examples of ratify? Which of the following inventions from the late1800's do you believe is the most important? Inother words, which do you believe has had thebiggest impact on our society throughout theyears? Please choose from the list below:TYEPWRITER, TELEPHONE, PHONOGRAPH,ELECTRICITY, CAMERA, AIRPLANE orAUTOMOBILE You toss a dice 30 times and recorded the results in the table below.# on dice Results1328374553641.) What is the theoretical probability that an even number will be rolled on anumber cube?2.) What was the experimental probability of how many times an even numberwas actually rolled using the table?3.) Theoretically if you roll a number cube 36 times, how many times would youexpect to roll the number one?4.) How many times did you actually roll the number one in the experiment?My Scientific notation Whats the answer for X + 132X +72