total = 0
for x in range(3, 67, 3):
total += x
print(total)
I hope this helps!
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
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!
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.
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
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
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.
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?
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?
How do you delete data from a cell?
O press the delete key
O the d key
O the enter key
O F5 key
Answer:
press the delete key is the way to delete the data from a cell
How do you customize calendar view
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.
Answer:
It uses the Private IP address
Explanation:
4.9 Code Practice: Question 3
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
Answer:
for
Explanation:
because:
IF = conditionalWHILE = conditionalDO = isn't a loop functionThe 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
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]
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
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
Answer:
content should be contained in the body tags
anybody else watch unus annus on youtub.e ??
The sheep in the image below is an example of which of the following?
balanced space
positive space
negative space
neutral space
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
i think its B) Theme
What is the nature of the news in the film "EPIC 2015"?
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:
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.
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
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)
Answer:
The answer would A
Explanation:
which of these is an example of input?
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
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
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 tableFind 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
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.
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
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)
fox that what i get on at school
Answer:Kodi with builds
Explanation:
its a perfectly safe download