Answers

Answer 1

In your example, you're asking the user for a number and then you're setting total and nums equal to zero. This results in your first number being ignored by the program. I included the complete working code below:

num = int(input("Enter a number: "))

total = num

nums = 1

while (total <= 100):

   num = int(input("Enter a number: "))

   nums = nums + 1

   total = total + num

print("Sum: "+str(total))

print("Numbers Entered: "+str(nums))

I hope this helps!


Related Questions

which gallery will allow a user to access a variety of preconfigured formatting styles for images that are added to a PowerPoint presentation

Answers

Answer:

Picture Effects gallery.

Explanation:

PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation. Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.

To format an image on PowerPoint, you can either use the Artistic Effects or Picture Effects.

The Picture Effects gallery allows a user to access a variety of preconfigured formatting styles for images that are added to a PowerPoint presentation.

Basically, the Picture Effects consist of the following preconfigured formatting styles; transparent shadow, soft edge, reflection, glow, 3-D rotation, metal frame, bevels, perspectives etc.

Answer: Picture Styles gallery

Explanation: He is correct he just typed it wrong.

Your company works with organizations located in other countries. What is this an example of

Answers

Answer:

Globalization

Explanation:

When other countries work with other firms, international trade which is on a global scale is taken into consideration, allowing goods and services to trade between each other.

Answer:

Globalization

Explanation:

Which view would you need to use to make changes to the design theme for the entire presentation?

Answers

Apply a theme to your presentation

Open your presentation.

On the Design tab, you'll find design themes in the Themes group.

To preview how the current slide would look with a particular theme applied, rest your pointer over the thumbnail image of that theme.

To view more themes, on the Design tab, in the Themes group, click More More button at the right end of the gallery.

To select and apply a theme, click the thumbnail image of that theme.

Unless you specify otherwise, PowerPoint applies the theme you select to the entire presentation.

To apply a theme to only one or a few slides, select the slide or slides, right-click the theme you want, and select Apply to Selected Slides.

Answer:

slide master

Explanation:

the answer on edge2020

How do you code a website?

Answers

Answer:

Learn the basics of HTML.

Understand HTML document structure.

Get to know CSS selectors.

Put a CSS stylesheet together.

Get Bootstrap.

Pick a design.

Customize your website with HTML and CSS.

Add content and images.

Explanation:

SOMEONE PLEASE HELP ME WITH THIS !!!!

Answers

I feel it is C, but I am not sure if it is correct, I can only apologize if it is wrong.

Which function is used to add a range of cells? =SUM =AVERAGE =MAX =ADD

Answers

Answer:

=SUM

Explanation:

The function used to add a range of cells is =SUM. Thus, option A is correct.

What is a function in excel?

Functions are pre-written formulas that carry out calculations by utilising unique values, referred to as inputs, in a given order, or layout. Calculations of any complex variable can be carried out using functions. the purpose for which a human, thing, or both are created, expressly designed, or employed.

Values are added by the SUM function. Users can include specific values, cell references, specific ranges, or a combination of all three. F

Excel's AutoSum feature makes summing up several items in an quick and simple manner. The Alt+= button makes using the AutoSum command much quicker. It can be found on the Homepage or Formulas tabs.

Therefore, option A is the correct option.

Learn more about Functions , here:

https://brainly.com/question/21145944

#SPJ6

I need help pleaseeeee!!!

Answers

Answer:

True

Explanation:

Integrated Services Digital Network (ISDN) is a set of communication standards for simultaneous digital transmission of voice, video, data, and other network services over the traditional circuits of the public switched telephone network.

Pleaseee mark me as brainliest

Hope this help <3

Why is it important to turn a filter off when you have found what you are looking for?

A. The items the filter finds will be deleted from Outlook,
B. The filter will keep looking for items based on the criteria.
C. The filter only works in the background when it is turned off
D. The items that were filtered out, including new items, are not visible,

Answers

I think it’s D

Hope it helps :)

Answer:

D -- The items that were filtered out, including new items, are not visible.

Explanation:

Just took the test, hope this helps! :)

Question # 4
Multiple Choice
How do you stop a program that is stuck in an infinite loop?

Press the Alt key together with the Q key.

Press the Control key together with the C key.

Press the Control key together with the Q key.

Press the Alt key together with the C key.

Answers

Answer:Control +c

Explanation:yes

Answer: Press the Control key together with the C key.

Explanation: Correct on Edg 2020/2021.

Joann wants to save the building block she created for the title of her company.

In which file does she save this building block?

Answers

Answer:

Building Blocks.dotx

Explanation:

Just did it on Edge2020

can some one help me i do not now how to give a BRANLEST. if you help i will give you one BRANLEST.

Answers

Answer:

check your questions on your profile ✨

Answer:

Once there are two answers to your question, you look at them, and in the bottom right corner, you will see a crown press that good luck! :D

Place the steps in order for placing a section break

Answers

Answer:

choose a break option, select breaks, click the layout tab, change the formatting style, and position the cursor

Explanation:

i could be wrong cause i dont know what its about but this is what makes sense to me

Answer:

position the cursor click the layout tab select breaks choose a break option change the formatting style

Explanation:

Just had this question

AI structure question. Please help
Type the correct answer in the box. Spell all words correctly.


On what structure is an artificial neural network based?


An artificial neural network is based on interconnected _______.

Answers

Answer:

A). An ANN is based on a collection of connected units or nodes called artificial neurons, which loosely model the neurons in a biological brain. Each connection, like the synapses in a biological brain, can transmit a signal to other neurons.

B). Understanding an Artificial Neural Network (ANN)

Artificial neural networks are built like the human brain, with neuron nodes interconnected like a web. The human brain has hundreds of billions of cells called neurons.

Explanation:

Answer:

The answer to this question is Neurons

Explanation:

I took the test on Plato and got a 100%.

(Java) Meadowdale Dairy Farm sells organic brown eggs to local customers. It charges $3.25 for a dozen eggs, or 45 cents for individual eggs that are not part of a dozen. Write a program that prompts a user for the number of eggs in the order and then display the amount owed with a full explanation using the following wording: You ordered 27 eggs. That’s 2 dozen at $3.25 per dozen and 3 loose eggs at 45 cents each for a total of $7.85.

import java.util.Scanner;
class Eggs {
public static void main(String[] args) {
// Write your code here

}
}​

Answers

import java.util.Scanner;

public class Eggs {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("How many eggs?");

       int eggs = scan.nextInt();

       int dozens = eggs / 12, ind = eggs - (dozens*12);

       

       System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");

   }

   

}

I hope this helps!

In this exercise we have to use the knowledge of the JAVA language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the JAVA code can be found at:

import java.util.Scanner;

public class Eggs {

  public static void main(String[] args) {

      Scanner scan = new Scanner(System.in);

      System.out.println("How many eggs?");

      int eggs = scan.nextInt();

      int dozens = eggs / 12, ind = eggs - (dozens*12);

System.out.println("You ordered "+eggs+" eggs. That's "+dozens+" at $3.25 per dozen and "+ind+" loose eggs at 45 cents each for a total of $"+((dozens*3.25)+(ind*0.45))+".");

  }

}

See more about JAVA at brainly.com/question/2266606

Ryo currently earns a monthly salary of $2200. She has been offered a raise of $250 per month. How much more will she earn per year at her new salary?

Answers

Answer:

$3,000 more per year

Explanation:

Since the difference between her old salary and her new salary is $250 per month, then we can simply multiply this amount by the 12 months in a year in order to calculate how much more she will be earning per year on her new salary...

$250 * 12 = $3,000

Therefore, we can see that Ryo will be earning an extra $3,000 more per year with her new raise when compared to her old salary.

Kerri uses a photo editing program a lot. To increase her productivity, she should_____.


delete it from the Start menu

put it in her My Documents folder

move the program to the desktop

create a shortcut for it on Quick Launch

Answers

Answer:

Move the program to the desktop

Explanation:

It will be easier to access and quicker to open.

what is the computer?​

Answers

Answer:

an electronic machine that can store, find and

A group of friends go on a holiday to the mountains. On the trip, they take a lot of pictures. One of the friends uploads the pictures on his blog. Which image format is best for uploading photos? The image format is best for uploading photos.

Answers

Answer: PNG

Explanation:

PNG stands for Portable Network Graphics, with so-called “lossless” compression.

A group of friends goes on a holiday to the mountains. The image form that is best for uploading photos is PNG. The correct option is B.

What is the PNG format of the image?

To display high-quality digital images, websites frequently use the PNG file format. PNGs, which were developed to outperform GIF files, provide not just lossless compression but also a significantly wider and brighter color spectrum.

Raster image files come in both JPEG and PNG varieties. This indicates that they are composed of a set number of color pixels.

To display high-quality digital images, websites frequently use the PNG file format. PNGs, which were developed to outperform GIF files, provide not just lossless compression but also a significantly wider and brighter color spectrum.

Therefore, the correct option is B. PNG.

To learn more about the PNG format, refer to the link:

https://brainly.com/question/20293277

#SPJ2

The question is incomplete. Your most probably complete question is given below:

PNG

JPG
JPEG

GIF

CORRECT ANSWER GETS BRAINLIEST!!!
Which area of engineering focuses on the study of materials, products, and structures that may cause injury or damage?
forensic engineering
mechanical engineering
biomedical engineering
materials engineering

Answers

Answer:

Forensic engineering

Explanation:

Forensic engineering matches the definition of "a area of engineering that focuses on the study of materials, products, and structures that may cause injury or damage"

The shooting(blank) should describe a daily plan of the shoot and should include everything from the crew to wrap-up.

Answers

Answer:

schedule

Explanation:

Indeed, in almost every video production a shooting schedule is used to describe the daily plan of the shoot; such as what scenes to shoot first, and next.

It also gives details about the crew, as well as the timeline for the entire film production, and so on.

Comments should:
a) give the reader the background of the programmer.
b) be written for every line of code.
c) communicate the purpose of the code that follows it.
d) give information about how many hours it took to write the code.

Answers

Option C is correct............

Answer:

c.

Explanation:

In a networking context, "architecture" refers to
a. the building that houses the network
b. design
c. the hardware
d. a well-built network

Answers

Answer:

A well built netwrk

Explanation:

Arrange the numbers 4, 8, 2, 6, 3, 5, 0, 1 into ascending order using the Merge sort algorithm

Answers

Answer:

1 2 3 4 5 6 you are missing seven the 8

Explanation:

colour statement is used for setting .................... and .................. colors​
(a) screen,Paint (b) line,circle
(c) foregroung,Background
(d) none of these

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is C. i,e, foreground, and background.

First, we need to know what is a color statement.

The purpose of the color statement is to select display colors. It is used to select the foreground and background colors of the display.

So, the correct answer is :

Colour statement is used for setting foreground and background colors.

In general, it allows you to select foreground and background colors for a display. You can use different codes to display and see the effect of the color statement.  

While other options are not correct, because the color statement used to select foreground and background color for the display. It does not use for setting screen and paint color in it. It also does not use for drawing lines and circles etc.

An archiving department is responsible for issuing permissions for use of historical film footage.

Answers

Answer:

true

Explanation:

just finished the assignment.

, , ,g d,t ,dt m,dt ymtd

Answers

Answer:ummm me confused

Explanation:

what is the importance of planning before you start your vegetable farm business?

Answers

Answer with Explanation:

"Planning" plays a crucial role before starting any business. If you've decided to start a vegetable farm business, then you better plan ahead.

Vegetables are "perishable," which means it is easy for them to get spoiled. Thus, you have to consider many things such as: what kind of crops to sell, where to sell them, what season you're going to sell them and how much you are going to sell them.

Choosing the kind of crop depends on whether you'll be requiring intensive labor or not. Although the former means more profit, it will require more capital. Knowing your target market is essential. For example, if your target are health-conscious people, then you have to go for organic vegetables. Determining the season to sell the vegetables will allow you to price them accordingly. Lastly, you have to know how much you're going to sell your vegetables in order for you to have an idea of the profit you're going to make. This will also allow you to budget your money.

what is the main difference between a search bar and a web browser

Answers

Answer:

i think a search is search bar is looking for application and files that are in the system while web browser is for searching things that are not in ur pc or laptop but searching thing i a good example google

Guys im getting the ps5 tomorrow :)​

Answers

Answer:

Congrats.

Probably will be better than the Xbox minifridge

Select all actions you should take to check for mistakes in your formulas.

1. Check that you entered the correct data.
2. Look to see that you used the correct cell names.
3. Recalculate everything using a calculator.
4. Run a formula checker.
5. Make sure you have followed the correct order of operations.
6. Check that you used the correct operations.
7. Estimate the answer and compare to the actual answer.

Answers

Answer:

The correct options is;

Run a formula checker

Explanation:

In order to check if there are mistakes in a formula, the Error Checking dialogue box which is a tool that enables a user to rapidly detect and correct errors in formulas, can be made use of to both simplify, expedite, and streamline the process

The Error Checking dialogue box has the following commands controls;

Help on This Error; The control button brings up the help window in Microsoft Excel

Show Calculation Steps; The control starts the Evaluate Formula dialog box from which the effect of the data input values, operators and result of each step can be seen

Ignore Error; The button allows an error to be ignored

Edit in Formula Bar; Allows for the input into the formula in the Formula Bar which is much easier than editing the formula in the cell

Options; The command allows the user to view the Microsoft Excel dialog box menu

Answer:

Run a formula checker. ✔

Check that you used the correct operations. ✔

Check that you entered the correct data. ✔

Explanation:

Got it right on Edge 2022.

Other Questions
Kai sells a small magazine full of celebrity gossip to college students for $2.65 per copy. Hiring the printing press for one day, the only fixed cost, is $435 an issue. The variable cost of printing each issue is $0.82 per copy. The printer tells Kai the cost of hiring the press is to increase by $116 per day. If changing to color increases variable costs by $0.40, what is the percentage decrease in contribution margin resulting from the switch to color? The altitude to the hypotenuse of a right triangle divides the hypotenuse into two segments measuring 11 cm and 5 cm. To the nearest tenth, what is the length of the shorter leg of the triangle? c - 3/4 = 1/8 Please answer A school librarian has enough money to order 8 paperback books at $155 each. If the librarian decided instead toorder books with hard covers at $188 each, how many books can the librarian buy? Question 110 pts1. Accent2. Cross-Rhythm3. Cuban Son4. Implied pulse5. Latin Push6. Pulse7. Polyrhythm8. Swing9. SyncopationTempoAccent[ Choose ]Cross-Rhythm[Choose ]Cuban SonChoose)Implied pulse[Choose )Latin Push[ ChoosePulse[ Choose who wants to play among us???????????????????? :))))))))))))))) Which of the following is an example of the effect on human life of the processes within earths water system (the hydrosphere)? A. Ocean fish have adapted to living in salt water.B. Perito Moreno is the only glacier that is currently melting exactly as fast as it is growing.C. Mountains are formed when the crust is uplifted, for example went to continental plates collide.D. Evaporation remove salt from seawater, creating freshwater clouds. PLZ HELP PLZNO WRONG ANSWERS The reaction between iron(II) oxide and carbon monoxide produces iron and carbon dioxide. How many moles of iron can be obtained when 1.50 mol FeO reacts with an excess of CO ?FeO+COFe+CO2 A 4 quart container of window cleaner costs $12.48. What is the price per cup? Create a picture or text outline of the reading process that shows pre-reading, during reading, and post-reading strategies Find the distance between the points (12,8) and (12,2). Question 13 options: A) 8 B) 10 C) 12 D) 6 The Backwoods American company in Problem 2.1 produces approximately 20,000 parkas annually. The quality management program the company implemented was able to improve the average percentage of good parkas produced by 2% each year, beginning with 83% good-quality parkas in 2012. Only about 20% of poor-quality parkas can be reworked.Total (not per parka) direct manufacturing cost is given below:Year 2003 2004 2005 2006 2007Direct Manufacturing Cost $420,900 $423,400 $424,700 $436,100 $435,500A) Compute the product yield for each of the five years.B) Using a rework cost of $12 per parka, determine the manufacturing cost per good parka for each of the five years. What you can you conclude about the improvement process? Select the correct text in the passage.Which two sentences in this excerpt from Sir Walter Scott's Ivanhoe indicate that the novel is a work of historical fiction?A:My father and his seven sons defended their inheritance from story to story, from chamber to chamberThere was not a room, not a step of the stair, that was not slippery with their blood.B:Princess Matilda, though a daughter of the King of Scotland, and afterwards both Queen of England, niece to Edgar Atheling, and mother to the Empress of Germany, the daughter, the wife, and the mother of monarchs, was obliged, during her early residence for education in England, to assume the veil of a nun, as the only means of escaping the licentious pursuit of the Norman nobles.C:. The assembled clergy admitted the validity of the plea, and the notoriety of the circumstances upon which it was founded;D:It was a matter of public knowledge, they said, that after the conquest of King William, his Norman followers, elated by so great a victory, acknowledged no law but their own wicked pleasure, and not only despoiled the conquered Saxons of their lands and their goods, but invaded the honour of their wives and of their daughters with the most unbridled license;E:At one end of this ghastly apartment was a large fire-grate, over the top of which were stretched some transverse iron bars, half devoured with rust. Please help me to rewrite the following sentence below, thank you. Find the number of groups and the number left over. 24 - 5 = with left over 24-5= with left over (Type whole numbers.) PLEASE SOMEONE ANSWER! SEARCH THE PASSAGE The Danger of a Single Story FROM THE WEBSITE. GIVING POINTS AWAY!1. PART A: Which of the following identifies the central idea of the text? A. By only exposing ourselves to a single story, we run the risk of constructing overly-simplistic understandings of other people and places.B. By only reading a single story, we cheat ourselves of experiencing different cultures from different perspectives.C. Literature is reflective of the stories that are most popular and that people are most likely to identify with.D. Literature primarily shapes the understanding of children, while adults are less likely to construct their views of the world based on a single story.2. PART B: Which section from the text best supports the answer to Part A?A. What this demonstrates, I think, is how impressionable and vulnerable we are in the face of a story, particularly as children. (Paragraph 8)B. Like our economic and political worlds, stories too are defined by the principle of nkali: How they are told, who tells them, when they're told, how many stories are told, are really dependent on power. (Paragraph 26)C. The single story creates stereotypes, and the problem with stereotypes is not that they are untrue, but that they are incomplete. They make one story become the only story. (Paragraph 38)D. What if my roommate knew about the female lawyer who recently went to court in Nigeria to challenge a ridiculous law that required women to get their husband's consent before renewing their passports? (Paragraph 47) Place names such as El paso, Amarillo, San Antinio, and San Angelo are examples of Please answer as soon as possible! ThanksTransformation Questions) HelppppA 95% confidence interval is found to be (30,36). The sample standarddeviation is 9, and the sample size is 36. If you wanted a smaller interval,what could you do?A. None of theseB. Decrease the sample size to 30.C. Increase the sample size to 100.D. Increase the confidence level to 99.7%.