Here is the answer to Edhesive 7.5 code practice


def GPAcalc(grade, weight):


grades = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}


if weight == 0:


return grades[grade]


else:


return grades[grade] + 1


def Main(Random):

Print ("hi")


classes = int(input("How many Classes are you taking? "))


total = 0


for x in range(classes):


letter = input("Enter your Letter Grade: ")


user_weight = int(input("Is it weighted? (1 = yes 0 = no) "))


grade = GPAcalc(letter, user_weight)


total += grade


print("Your GPA score is: ", grade)


print("Your weighted GPA is a",(total/classes))

Answers

Answer 1
oh my god i could never do coding

Related Questions

Who is the father of computer​

Answers

Charles Babbage
Xxxxxxxx

Answer:

Charles Babbage is known as the father of computer.

Explanation:

hope it is helpful to you

is a keyboard a software?

Answers

Answer:

Yes

Explanation:

Because it's apart of software hope this helps

The hardware is all the tangible computer equipment, such as the keyboard and mouse. The software is what makes the hardware work or lets you get things done, such as writing documents with Microsoft Word or playing a Solitaire game.

Is a keyboard a software or hardware?
Computer hardware includes the physical parts of a computer, such as the case, central processing unit (CPU), monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers and motherboard. By contrast, the software is the set of instructions that can be stored and run by hardware.


Hope it helps, have a great day!❤️✨

Which of the following is NOT true about a flow chart?
A. It is usually created by programmers after writing a program
B. It shows programmers different algorithms before creating a program
C. It uses boxes of different shapes which indicate different types of
instructions
D. It helps programmers pay attention to the logic of the solution to the
problem

Answers

i think the answer is A

The not true of flow chart.

A flow chart is an illustration that shows the several steps of the process or the sequence if events and is a tool that can be used to adapt a wide variety and describes the purposes of the processes. Is basically a type of diagram representation of an algorithm.

This shows the answer is created for the programmers after a program.

The flow chart is a guide and describes the methodology of completing the task and the various steps involved to solve the same.Hence option A is correct.

Learn more about the flow chart.

brainly.com/question/15712490.

True or false: Machine learning lets computers
learn how to do things they weren't
specifically programmed to do.

Answers

Answer:

True

Explanation:

bob has 2 candy bars he is fat what hapennes

Answers

Answer:

he eats The candy Bar

Explanation:

I think cause As You told he is fat He might like sugary items

Answer:

It is thought that some people are destined to gain weight because they have inherited “fat genes” from their parents. There can be no doubt that people vary in their genetic makeup and some people are inclined, because of genetic reasons, to become tall, or broad-shouldered, or squat, or fat.

Explanation:

it also has to do that your digest system do not digest it fast enough

You learned that you can use the tags to insert a link to another webpage. One problem that webpage developers face is that, after a time, links may no longer work. Can you think of ways that you can avoid broken links?

Answers

Answer:Image Control

We can use the height and width properties to control the size of our image. Let’s say we only want the recipe image to take up approximately one-third of the page. Do you remember from math class what percentage one-third is? Type in the following CSS rule, and watch your picture change size before your very eyes!

img {

   height:33%;

   width:33%;

}

That wasn’t too difficult, right? Let’s make the image stand out a bit more by adding a border. Inside the img rule, add the following declarations:

border-style:dashed;

border-width: 5px;

Your picture should now have a dashed border around it that is five pixels in width. Play around with the different border styles that are available. You should see a drop-down box of choices, including dotted, dashed, double, groove, inset, and outset. You can also adjust the width of your border. Using your informative guessing skills, can you predict what property you might use to change the color of the border? Try it and see if you’re right!

Explanation:

 this is a direct quote from my lesson

Jiwoo is a professional photographer. Identify and describe a photography scenario where Jiwoo would need to consider the ethics and aesthetics of photography before proceeding. Clearly examine what ethical and aesthetic consideration she would have based on the scenario that you describe and how these relate to photography as a career or art form in general.

Answers

Answer:

Photography ethics are the principles that guide the way we take and share photos. Why is photography ethic so important? If we don't have morality in the way we use photography, we risk Aesthetics Ethics deals with the rights and wrongs and Aesthetics deals with beauty or otherwise. When we correct, manipulate or enhance images, the factors of ethics and aesthetics must always be kept in consideration. Where Does One Draw The Line if you add or remove something there that wasn’t in the scene you have crossed from documentary to fictional art. Exceptions In other cases, the only way to present a truer representation of reality is through a composite rather than with a single exposure.

Explanation:

I hope this helps I little

3.
What is the meaning of *.VBP.

Answers

Answer:

The meaning of VBP is Visual Basic Project

Answer:

visual basic projects thankyouu HAHAHAHA

because cute ako

Which is the hanging indent on the ruler?



A
B
C
D

Answers

My question needs to put 20 character long but the answer is C

I really need help with this question, I can’t fail this please :) tysm

Answers

Answer:

i think its the third one, i hope this helps

Explanation:

You have a database with three tables: one each for products, suppliers, and distributors. You need to locate the product ID number for hammers and find out who supplies them. Which database component would perform this task?

A. Form
B. Table
C. Report
D. Query

Answers

Answer:

I would say A... But that's just me

Explanation:

Hopefully this helps you :))

Answer:

The answer is C: Query

Explanation: I just did it in Edge 2021. Trust me its right! I hope this helps! :)

Multiple Select Which conditions make using an array a better choice than a list? Select 3 options. when your list would contain a mixture of numbers and string values when you have a very large quantities of numeric data values when all your data are string when you will do a great deal of arithmetic calculations when efficiency is of great importance

Answers

When you have a very large quantities of numeric data values

When you will do a great deal of arithmetic calculations

When efficiency is of great importance

The conditions that make using an array a better choice than a list are:

When you have very large quantities of numeric data valuesWhen you will do a lot of arithmetic calculationsWhen efficiency is of great importance

What are arrays?

An array is a set of items, images, or numbers arranged in rows and columns. Any set of rows or columns is referred to as an array. Examples of arrays include rows of seats for a recital, rows of cards laid out for the game of Memory, and rows of numbers in an Excel spreadsheet.

It is important to think of an array as a collection of variables of the same type even though it is used to store a collection of data. An array is a group of identically data-typed elements kept in consecutive memory regions.

Therefore, the correct options are B, when you have very large quantities of numeric data values, D, when you will do a lot of arithmetic calculations, and E. When efficiency is of great importance.

To learn more about arrays, refer to the link:

https://brainly.com/question/13107940

#SPJ5

who like the videos where is clown is from :)

Answers

Answer:

i hate clowns alot especially pennywise lol

Explanation:

Keira is creating an app for her cross-country team. Users will input their race times and the output will be a graph showing their progress.

Which Python module should Keira use to draw a line on the screen?

Design Graphics
Graphics Module
Math Module
Turtle Graphics

Answers

Answer:

Design Graphics

Explanation:

How do you write a multiplication formula in excel with an absolute refrence?

Answers

To multiply all the numbers in column A by cell C2, add $ symbols to the cell reference like this: $C$2, which you can see in the example below. Using $ symbols tells Excel that the reference to C2 is “absolute,” so when you copy the formula to another cell, the reference will always be to cell C2.

How are switches indirectly involved in ARP poisoning?

Answers

Answer:

They

are indirectly involved in the attack because they do not verify the the MAC/IP address

association

Explanation:

PLEASE MARK ME AS BRAINLIEST

Which of these factors needs to be considered when filming in HD?
The screen is a rectangle.
The screen is a square.
There are no pixels involved.
There will be less definition in each shot.

Answers

Note that the factors that need to be considered when filming in HD is: "

There are no pixels involved. (Option C)There will be fewer definitions in each shot. (Option D)

What is HD Filming?

High-definition video is greater in resolution and quality than standard-definition video. While there is no accepted definition of high-definition, it is commonly defined as any video picture with much more than 480 vertical scan lines or 576 vertical lines.

High Definition video is of greater quality than standard definition video (or Standard Definition). The image will be crisper in HD than in SD.

Note that the screen being a rectangle or square does not need to be considered when filming in HD. However, the presence of pixels and potential loss of definition in each shot are factors that should be considered.

Learn more about filming:
https://brainly.com/question/14824318
#SPJ1

What are some good digital habits?

Answers

Turn off notifications

Read the code snippet below and determine which markup language it is:



Sound Card
Creative Labs
Sound Blaster Live
80.00



The code is an example of the (Blank) markup language.

Answers

Answer:

Sound Card

Explanation:

"There are no longer mature industries; rather, there are mature ways of doing business," he is referring to the high demand of creativity and innovation in the market

Answers

Hi, you've asked an incomplete and unclear question. However, I provided the full text below.

Explanation:

The text reads;

"When Porter says “There are no longer mature industries; rather, there are mature ways of doing business,” he is referring to the high demand for creativity and innovation in the market. Earlier we used to be more concerned about the hardware and the physical product rather than its information content, But now as a business, we need to provide more informative content with the product.

Like General Electric offers dedicated customer service for its line of goods which differentiates it from its rivals. Similarly, shipping companies like UPS now offer us to track the location of our package on a live map. This is what we call a mature business and how we can differentiate ourselves and stand out in the highly competitive market by using Information and Technology..."

HURRY PLEASE ITS A TEST
A military cargo plane is loaded with the maximum weight allowable for the flight. The cargo is heavier than what the pilot usually carries, so the pilot adjusts as follows: Group of answer choices
a. The pilot flies slower to create less thrust and less lift
b. The pilot flies slower to create more thrust and more lift
c. The pilot flies faster to create less thrust and less lift
d. The pilot flies faster to create more thrust and more lift

Answers

A.)

It's either A or D both of them stand out and make sense to me so I think that it'll be right if you choose A or D.

-Ɽ3₮Ɽ0 Ⱬ3Ɽ0

which type of hazzard are those substances which threathen you physical safety ?​

Answers

Answer:

98o

Explanation:

One tool under What-If-Analysis is Scenarios. Which best describes the purpose of setting up and using scenarios

1. to quickly combine multiple formulas from different cells into just one
2. to instantly compare results when data in numerous cells change to specified values
3. to conduct automatic complex statistical analysis on a range of cells
4. to constrain some cells to certain values so that the wrong data are rejected if entered​

Answers

Answer:

Option B, to instantly compare results when data in numerous cells change to specified values

Explanation:

Scenario setting with in the What If Analysis is used to compare various scenarios with in the same excel sheet. Scenarios has set of values that are saves and updated automatically as the values with in the cell changes. Also the scenarios can be switched.

Hence, option B is correct

True or False? Security code is almost always open source!
True
False

Answers

Answer:

its true

Step-by-step explanation:

Security code is almost always open source is a false statement. Check more about  Security code below.

What is security code?

The  Security code  is known to be the number that is known to be found in the front or back of any credit cards. It is made just  for security use.

Conclusively,  Security code is almost always open source as one cannot get it except one is told about it. Therefore, it is not an open source.

Learn more about  Security code from

https://brainly.com/question/26260220

A free software license allows users to

Answers

Answer:

C. use, alter, and distribute the software as desired.

Explanation:

A software can be defined as a computer program or application that comprises of sets of code for performing specific tasks on the system

A free software license allows users to use, alter, and distribute the software as desired.

Surrendering to digital distractions can result in a disappointed
feeling of how you spent your time. True false

Answers

It all depends on how the person can handle the situation, some people may say false and others may say true. It depends on who and when you ask.


Which of the following is document content that displays at the top of every page?
Choose the answer.

style set

footer

header

title

Answers

Answer: Header/Title

Explanation:

whats wrong with my ps4 i cleaned it and it's still overheating and i have 3 fans for it

Answers

Answer: If your PS4 is overheating, It must be because of some dust you couldn't reach and piled up.

Explanation: What you need to do is take a can of compressed air and gently navigate it through the openings to the fan on your PS4. Go through and clean out the USB ports.

Other Questions
1. Identify a difference between League of United Latin American Citizens v. Perry and Shaw v. Reno.2. Based on the difference in part A, explain why the ruling on District 23 in League of United Latin American Citizens v. Perry is different from the ruling on the "I-85" district in Shaw v. Reno.3. Describe the concern of the Supreme Court about getting into the "political thicket" in relation to the foundational principle of separation of powers. Paul thinks of three integers. He added two at a time their sums are 80, 93, 87. What are the integers? Estimate the total weight of two million pounds worth of two pence coins in kilograms. A two pence coin weighs 7.1g. 607 Evaluate the expression 27+ 40 2^3 a- Quines se oponan a Rosas? what is the graph of the function rule y=1/2x-1 What is the greatest surface area of a rectangular solid that can be built from 16 identical unit cubes? Does this system have oneolution,5x + 3y = 135x + 21y = 2Choose the correct answer below.o One solution0 Infinitely many solutionsO No solution True or false : The function shown has an absolute MinimumPick the answer that best fits the description Please help! Will mark brainliest as new seafloor moves away from an ocean rodge, does it become less dense? Let ABC be a right-angled triangle with B = 90. Let It be the incentre of ABC. Draw a line perpendicular to AI at I. Let it intersect the line CB at D. Prove that CI is perpendicular to AD and prove that ID =Sqrt(b(b a)) ,where BC = a and CA = b. 6x+9=-12Can someone help me with this question Please helpWrite a six word memoir about yourself What are the abiotic and biotic factors of a Beach Coastal? MRS HALE: I'd hate to have men coming intomy kitchen, snooping around and criticising.(She arranges the pans under sink whichthe LAWYER had shoved out of place.) Trifles, Susan GlaspellWhat does the word arranges mean in this stagedirection?"places in proper order"plans an appointment"x "works out an agreement" Evaluate the following expression: 3/7 x 8/9 RGRRGRGRGRGRG THIS IS ONLY FOR idunno9 GHRGRGRGRFERRGRGRGRGRGRGRGRR Newton's Law of Gravity says that any the effect of gravity between two objects depends on what two factors? lo estimated the height of her friend as 62 inches. if her friend is actually 65 inches tall, what is the percent error in Lis estimate? Round your answer to the nearest tenth of a percent.PLEASE HELP ILL MAKE YOU BRAINLIST or whatever its called