Calculate The Average of Grades Instructions:
Please read the following problem carefully. You will then logon on to https://www.draw.io/to create a professional diagram. You will put all titles, labels, and save your work using the information below. Please follow the directions:
Destini would like to get a better understanding of her grades in all of her college courses before Spring Break. Instead of using a calculator and paper to calculate her grade, she decided to design a program. She will design a program that will ask her to enter her course name and the number of grades in her grade book. The program will then Read the number of Grades based on what was entered by her, Add up all the Grades, Calculate the Average, and Display Course Name and the Average to Screen. It is important to consider that the number of grades will be different for each course. Using Repetition Control, please design this program.
1. Please Create Flowchart using Draw.10 and Simple Flowchart symbols only (Draw.IO)
2. Pseudocode.
Your unique Flowchart must have the following (See Example Here):
A. Name, Date, and class Name [Top Left of Flowchart)
B. A Title of the Flowchart in Bold [Centered at the top of your flowchart)
C. A Brief Summary of your Flowchart (2 to 3 short sentences describing your flowchart) [Left of Flowchart]

Answers

Answer 1

Answer:

The pseudocode is as follows:

Input coursename, numgrades

count = 1; totalgrades = 0

while count <= numgrades:

   input grade

   totalgrade+=grade

   count++

average = totalgrade/count

print(coursename)

print(average)

Explanation:

The solution is as follows:

(1) See attachment for flowchart

(2) See answer section for pseudocode

Explanation

Input coursename and number of grades

Input coursename, numgrades

Initialize count of grades input by the user to 1 and the sum of all grades to 0

count = 1; totalgrades = 0

This loop is repeated while count of grades input by the user is less than or equal to the numgrades

while count <= numgrades:

Input grade

   input grade

Add grades

   totalgrade+=grade

Increase count by 1

   count++

End of loop

Calculate average

average = totalgrade/count

Print coursename

print(coursename)

Print average

print(average)

C. Summary of the flowchart

The flowchart gets coursename and the number of grades from the user. Then it gets the score of each grade, add them up t calculate the average of grades.

Lastly, the course name and the average grades is printed

Calculate The Average Of Grades Instructions: Please Read The Following Problem Carefully. You Will Then

Related Questions

Log onto the Internet and use a search engine to find three Web sites that can be models for the new site. (At least one should sell sporting goods.) For each site you selected, list the URLs in your document. Tell why you chose them. Navigate to the three sites you choose and take notes about at least three things you like and don’t like about the sites.

Answers

Please see the following file for your required answer, thank you.

An integrated circuit RAM chip has a capacity of 512 words of 8 bits each where the words are organized using a one-dimensional layout.a) How many address lines are there on the chip?b) How many such chips would be needed to construct a 4Kx16 memory?c) How many address and data lines needed for a 4Kx16 memory?#addresss lines = #data lines =

Answers

Answer:

A. 9

B. 16

C. Number of addresses = 12 number of data lines = 16

Explanation:

The capacity of this chip is 512 x 8

That is 512 words and these words have 8 bits

A. The number of the address lines would be

log2(512) = 2⁹

So the answer is 9

B. The total number of chips required

= 512 x 8 = 4096

(4096 x 2)/ 512 = 16

C. Number of address = log4092 = 2¹²

= 12

The number of data lines = 8x2 = 16

Thank you!

how can you hack on a cumputer witch one chrome hp

Answers

Answer:

http://www.hackshop.org/levels/basic-arduino/hack-the-chromebook

Explanation:

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

yes

ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP ASAP NEED HELP​

Answers

Answer:

10.b

11.c

12.c

13.a

14.d

15.b

16.c

Explanation:

please brainleist please ♨️☺️

Suppose a byte-addressable computer using set-associative cache has 2 16 bytes of main memory and a cache size of 32 blocks and each cache block contains 8 bytes. a) If this cache is 2-way set associative, what is the format of a memory address as seen by the cache; that is, what are the size of the tag, set, and offset fields

Answers

Answer:

Following are the responses to these question:

Explanation:

The cache size is 2n words whenever the address bit number is n then So, because cache size is 216 words, its number of address bits required for that  cache is 16 because the recollection is relational 2, there is 2 type for each set. Its cache has 32 blocks, so overall sets are as follows:

[tex]\text{Total Number of sets raluired}= \frac{\text{Number of blocks}}{Associativity}[/tex]

                                               [tex]=\frac{32}{2}\\\\ =16\\\\= 2^4 \ sets[/tex]

The set bits required also are 4. Therefore.

Every other block has 8 words, 23 words, so the field of the word requires 3 bits.

For both the tag field, the remaining portion bits are essential. The bytes in the tag field are calculated as follows:

Bits number in the field tag =Address Bits Total number-Set bits number number-Number of bits of words

=16-4-3

= 9 bit

The number of bits inside the individual fields is therefore as follows:

Tag field: 8 bits Tag field

Fieldset: 4 bits

Field Word:3 bits

Create a map using the Java map collection. The map should have 4 entries representing students. Each entry should have a unique student ID for the key and a student name for the element value. The map content can be coded in directly, you do not have to allow a user to enter the map data. Your program will display both the key and the value of each element.

Answers

Answer:

In Java:

import java.util.*;  

public class Main{

   public static void main(String[] args) {

       Map<String, String> students = new HashMap<>();

       students.put("STUD1", "Student 1 Name");

       students.put("STUD2", "Student 2 Name");

       students.put("STUD3", "Student 3 Name");

       students.put("STUD4", "Student 4 Name");

       for(Map.Entry m:students.entrySet()){  

           System.out.println(m.getKey()+" - "+m.getValue());    }  

}}

Explanation:

This creates the map named students

       Map<String, String> students = new HashMap<>();

The next four lines populates the map with the ID and name of the 4 students

       students.put("STUD1", "Student 1 Name");

       students.put("STUD2", "Student 2 Name");

       students.put("STUD3", "Student 3 Name");

       students.put("STUD4", "Student 4 Name");

This iterates through the map

       for(Map.Entry m:students.entrySet()){  

This prints the details of each student

           System.out.println(m.getKey()+" - "+m.getValue());    }  

Other Questions
Costrucciones con 'Se' you planted sunflower seeds in your backyard and everyday the number of flowers doubles if it takes 42 days for the flowers to fill the garden how many days would it take for them to fill half of the gardenPlz HELPPP]PPPPPPPPPPPPPPPP How many moles of methane gas are required when there are 7.55 grams of oxygen gas available? Please someone explain how to solve this problem, I would really appreciate it. Mhanifa can you please help this is due asap ayuda sentido figurado de la frase el mundo es un jardn lleno de ortigas invadido por la inmundicia y la putrefaccion Does anyone know the book Of Mice and Men? Light waves travel at 3 10 8 m/s. If the light wave has a particular wavelength of 400 nm (400 10 9 m), calculate its frequency. The phenomenon that causes air masses and water to bend or curve is the ______________.PLZ I NEED HELP ILL GIVE BRAINLIEST Read the excerpt from Act III of Julius Caesar.Antony: (To dead Caesar, with grief) 0, pardon me, thou bleeding piece of earth, that I am meek and gentle with these butchers. Thou art the ruins of the noblest man that ever lived in the tide of times.(Looking after the murderers, he shakes his fist at them in fury.) Woe to the hand that shed this costly blood! A curse shall light upon the limbs of men. (He points to Caesar, whose ghost will rise.) And Caesar's spirit, ranging for revenge, come hot from Hell, shall in these confines with a monarch's voice cry, "Havoc!" and let slip the dogs of war that this foul deed shall smell above the earth with carrion men, groaning for burial.What makes this excerpt from Act III of Julius Cesar an example of a monologue?Antony is alone on stage and shares his inner conflict aloud. Antony discusses his grief with other characters.Antony calls Caesar's murderers back on stage and threatens his revenge.Antony reveals Brutus's betrayal of Caesar to the citizen's of Rome. Cynthia rounds a number, x, to one decimal point.The result is 6.3Write down the error interval for x. I'LL GIVE BRAINLIEST PLEASE ANSWER ALL FOUR PLEASE Discriminant 9v^2+v+5=0 Which human activity is correctly paired with the greenhouse gas that it increases?A)rice cultivation and water vaporB)landfilling and carbon dioxideC)deforestation and methaneD)sewage treatment and nitrous oxideThe answer is (D) now on edge 2021 Which of the diagrams best represents the structure of the nervous system Maureen went on a 3 day, 50 mile biking trip. The first day she biked 6 miles. The second day shebiked 19 miles. How many miles did she bike on the 3rd day? Read the sentence from the section "FDA-Approved Cattle Feed." The byproducts are mixed with other ingredients to achieve a particular nutritional profile, Cribbs said. The author uses the phrase "nutritional profile" to mean: Question 2 options: cattle byproduct processed ingredient planned-out animal diet specific food regulation SELECT THE OPTION THAT BEST ANALYZES THE AUTHOR'S SYNTAX: "Ive had successes and Ive had setbacks." *A)By utilizing juxtaposition, Clinton emphasizes the unpredictable and yet realistic outcome of one's hard work, which encourages her audience to continue fighting for what they believe in.b) By explaining her good times and bad times, Clinton shows that she is human too, which helps her audience relate to her.c) By making a short- direct statement, Clinton illustrates how unpredictable life can be, which provides a valuable life lesson for her audience.d) By using a short- compound sentence, Clinton accentuates the successes and setbacks in her life, which adds to the depressing mood of her speech. Generational accounting: Select one: a. is a method of assessing the impact of fiscal policy lags from one generation to another. b. measures the number of generations it takes to pay off the national debt at a given point in time. c. evaluates the impact of current fiscal policies on different generations in the economy, including future generations. d. is an accounting method that defers to the future, the cost of any government policy the rewards of which will be reaped in the future. HELP ASAP Which statement describes the water particles when condensation takes place?A. The particles gain heat energy and move closer to each otherB. The particles lose heat energy and move closer to each otherC. The particles gain heat energy and move away from each otherD. The particles lose heat energy and move away from each other Read the passage from "One of These Days" by Gabriel GarciaMarquez:"Monday dawned warm and rainless. Aurelio Escovar, a dentist withouta degree, and a very early riser, opened his office at six. He took somefalse teeth, still mounted in their plaster mold, out of the glass case andput on the table a fistful of instruments which he arranged in size order,as if they were on display. He wore a collarless striped shirt, closed atthe neck with a golden stud, and pants held up by suspenders. He waserect and skinny, with a look that rarely corresponded to the situation,the way deaf people have of looking."All of the following excerpts are used as appositive phrases except...Select one:- "still mounted in their plastic mold"- "With a look that rarely corresponded to the situation"- "He wore a collarless striped shirt- a dentist without a degree