1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
bezimeni [28]
3 years ago
13

Write a program that will add up the series of numbers: 99, 98, 97… 3, 2, 1. The program should print the running total as well

as the total at the end. The program should use one for loop, the range() function and one print() command.
Python please.
Computers and Technology
1 answer:
Elanso [62]3 years ago
4 0

Answer:

a = 99

b = 99

while(a > 0):

    b += a

    print(b)

    a -= 1

Explanation:

You might be interested in
-The following type of Access form allows to see multiple records in an Excel-like arrangement of data fields:
Damm [24]
Data sheet

Data sheet is what an excel sheet is so it’s the same thing
4 0
3 years ago
Write an answer in three to five sentences that describes the photo, explains what better lighting would mean for your photograp
miskamm [114]

Lighting is an important aspect in creating a great photograph.

Not only does lighting determine brightness and darkness, but it also influences

  • tone,
  • mood, and
  • atmosphere.

As a result, proper light management and manipulation are required to get the

  • best texture,
  • richness of color, and
  • brightness on your objects.

<h3>What kind of light produces the best photos?</h3>

Because of its mobility, a speedlight or flash is frequently the ideal photographic illumination on-site. Speedlights can handle much of the work of studio strobes when used with an off-camera wireless flash system.

Learn more about lighting in photography:
brainly.com/question/2321244
#SPJ1

3 0
2 years ago
How to do this? ICT Excel there's a screenshot attached
gtnhenbr [62]

I cannot see the attachment

8 0
4 years ago
Write a static generic method PairUtil.minmax that computes the minimum and maximum elements of an array of type T and returns a
Gnesinka [82]

Answer:

Explanation:

The following code is written in Java. It is hard to fully create the code without the rest of the needed code including the T class and the Measurable interface. Regardless the following code can be implemented if you have that code available.

 public static T minmax(ArrayList<T> mylist) {

       T min = new T();

       T max = new T();

       for (int x = 0; x < mylist.size(); x++) {

           if (mylist.get(x) > max) {

               max = mylist.get(x);

           } else if (mylist.get(x) < min) {

               min = mylist.get(x);

           }

       }

       

       return (min, max);

   }

5 0
3 years ago
Can anyone help me<br> I will make you a brainalist
Ulleksa [173]

Answer:

Explanation:

Exercise A:

1. A table.

2. Categorical.

3. Access.

4.Queries.

5.ACCDB extension.

Exercise B:

1. Insert Tab.

2. DoCmd.Quit method.

3.Navigation Pane.

4. Modify table data.

5.The top pane and the bottom pane.

Hope this helped you!

4 0
3 years ago
Other questions:
  • How can you best protect yourself when using social media
    5·2 answers
  • What is the fundamental problem producers and consumers face?
    12·1 answer
  • John works in the Sales and Marketing group. Why does his group need to interact with operations management to plan the launch o
    12·1 answer
  • Write a program that reads a person's first and last names, separated by a space. Then the program outputs last name, comma, fir
    9·1 answer
  • It is possible to limit the search results to a range of publication dates.
    13·1 answer
  • What are ip addresses? why are these important for forensic scientists?
    5·1 answer
  • Which of the following tools helps ensure your document will open in older versions of word
    13·1 answer
  • Anyone 13 i a boy 13 pan
    12·2 answers
  • Compare mini and mainframe computer in terms of speed,memory and storage​
    15·1 answer
  • What is output by the following line of code?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!