Edhesive 7. 5 code practice.

The hint says "Hint: Make sure to use two functions to incorporate the last lesson and the current one—the GPAcalc() function and a new one. "

So there needs to be two def functions for there to be a pass.

Im providing my code from the last lesson if you want to use it as a starter and just edit it:

def GPAcalc(g, w):


if g == "a" or g == "A":

return 4 + w

elif g == "B" or g == "b":

return 3 + w

elif g == "C" or g == "c":

return 2 + w

elif g == "D" or g == "d":

return 1 + w

elif g == "F" or g == "f":

return 0 + w

else:

return "Invalid"


#MAIN

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

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

gpa = GPAcalc(grade, weight)

print("Your GPA score is: " + str(gpa))

Answers

Answer 1

Here is the required program for Edhesive 7.5 code practice. First of all, the given code has been altered to meet the requirements of the question.

Then a new function named GPAmulti() has been created. This function takes multiple subjects grade and weight as input and returns their GPA by using the GPAcalc() function. Finally, the main function has been modified to ask for multiple subject grades and weights.

Then it calls the GPAmulti() function to compute and display the GPA for all subjects.```
def GPAcalc(g, w):
   if g == "a" or g == "A":
       return 4 + w
   elif g == "B" or g == "b":
       return 3 + w
   elif g == "C" or g == "c":
       return 2 + w
   elif g == "D" or g == "d":
       return 1 + w
   elif g == "F" or g == "f":
       return 0 + w
   else:
       return "Invalid"

def GPAmulti(num):
   sub_total = 0
   weight_total = 0
   for i in range(num):
       grade = input(f"Enter subject {i+1} grade: ")
       weight = int(input(f"Is subject {i+1} weighted? (1 = yes, 0 = no) "))
       sub_total += GPAcalc(grade, weight)
       weight_total += weight
   return sub_total/weight_total

num_of_subs = int(input("How many subjects do you want to calculate GPA for? "))
gpa = GPAmulti(num_of_subs)
print("Your GPA score is: " + str(gpa))```

To know more about program visit:

https://brainly.com/question/30613605

#SPJ11


Related Questions

What is BASIC programming language?​

Answers

BASIC (Beginner’s All-purpose Symbolic Instruction Code) is a programming language designed by John Kemeny and Thomas Kurtz in 1964 and popularized by Microsoft in the 1970.

BASIC,

in full (Beginner's All-purpose Symbolic Instruction Code,) computer programming language developed by John G. Kemeny and Thomas E. Kurtz at Dartmouth College in the mid 1960s.

FORTRAN

FORTRANComputer Programming History: FORTRAN was the first computer programming language that was widely used. A Brief History of Computer Programming Languages: Computer code is the foundation of computers, enabling them to do the tasks humans need them to do

FORTRANComputer Programming History: FORTRAN was the first computer programming language that was widely used. A Brief History of Computer Programming Languages: Computer code is the foundation of computers, enabling them to do the tasks humans need them to doplease make me brainalist and keep smiling dude I hope you will be satisfied with my answer

unlike signal transduction in many other sensory receptors, signal transduction in rods. results in hyperpolarization of the sensory cell.State True or False your answer: a. Trueb. False

Answers

This statement is true. unlike signal transduction in many other sensory receptors, signal transduction in rods. results in hyperpolarization of the sensory cell.

Hyperpolarization is whilst the membrane ability will become extra poor at a selected spot at the neuron's membrane, while depolarization is whilst the membrane capability turns into much less bad (extra effective). Hyperpolarization is a trade in a cellular's membrane ability that makes it greater poor. it is the opposite of a depolarization. It inhibits motion potentials by using increasing the stimulus required to move the membrane capability to the action capacity threshold.

throughout hyperpolarization, potassium ions keep leaking out of the cellular via potassium channels. This diffusion of potassium ions (positively charged ions) into the extracellular area makes the membrane potential greater bad.

To know more about hyperpolarization, visit:-

https://brainly.com/question/12982897

#SPJ4

I am getting two expected errors on this code for the bottom two “public static void” lines. Can someone tell me how I can fix it? Thanks

I am getting two expected errors on this code for the bottom two public static void lines. Can someone

Answers

Answer:

Declare variable b in both lines

i.e. int b

Explanation:

In the given code, the parameters of both functions were not properly declared.

When listing the parameters, the data type must be clearly stated for all parameters (individually)

In the declaration of both functions, only variable a is declared as integer while b is undeclared.

So, the correction is to declare b as integer

Write a program that reads some integers between 1 and 100 and counts the occurrences of each. Note that if a number occurs more than one time, the plural word "times" is used in the output. Note the integers are entered in one line separated by a space.
Sample Run
Enter integers between 1 an 100, inclusive: 2 5 6 5 4 3 23 43 2
2 occurs 2 times
3 occurs 1 time
4 occurs 1 time
5 occurs 2 times
6 occurs 1 time
23 occurs 1 time
43 occurs 1 time​

Answers

A program that reads integers between 1 and 100 and counts the occurrences of each integer. Here is the explanation and code for the problem.

The program starts by asking the user to enter integers between 1 and 100, inclusive. The input is split into a list of integers using the `split()` method and the `map()` function.
2. Next, a dictionary called `counts` is created to hold the counts of each number.
3. The program loops through the list of numbers, checking if each number is already in the `counts` dictionary. If it is, the count is incremented. If it's not, the number is added to the dictionary with a count of 1.
4. Finally, the program loops through the `counts` dictionary and prints out each number and its count, with the correct pluralization. If the count is 1, the word "time" is used. If the count is greater than 1, the word "times" is used.

Take input as a list of integers separated by a space, Use a dictionary to store each integer as the key and its count as the value. Iterate through the list and update the dictionary counts, Print the integers and their occurrence in the output.

To know more about code visit:

https://brainly.com/question/31228987

#SPJ11

hi question
what percent of teenagers report they have been contacted by a potential predator
a. 10
b. 20
c. 30
d. 40

Answers

Answer:

I believe it's 20% I could be wrong just thinking of it many teenagers don't really come out and say anything and are too afraid to tell anyone by possibly being wrong or putting themselves into more danger

what type of scanning target would commonly have vulnerabilities due to the existence of unnecessary services and open ports?

Answers

Due to the presence of unneeded services and open ports, viral infrastructure frequently has vulnerabilities.

A vulnerability scanner is an automated tool that locates and compiles a list of all network-connected IT assets, such as servers, workstations, laptops, virtual machines, containers, switches, and printers. Along with other characteristics like open ports and user accounts, it also tries to determine operational information about each asset, such as the operating system it uses and the software that is installed on it. Organizations can use a vulnerability scanner to check their networks, systems, and apps for security flaws.

To identify security flaws in their computer systems, networks, applications, and procedures, the majority of security teams use vulnerability scanners. There are numerous tools for scanning for vulnerabilities, each of which offers a different set of capabilities.

Know more about software here:

https://brainly.com/question/1022352

#SPJ4

Switch on your light make sure it is shining onto the wall hold your largest plastic shopping bag square between the light and the wall

Answers

Explanation:

As light travels through matter, different amounts of that light penetrate through the matter. Transparent objects allow nearly all the light shined on it to pass through the object. Glass, air, and clear plastic are transparent objects.

(03 MC)Why is it important to set goals and share them with others?

A) Sharing goals makes you feel like you are better than the other person.
B) If you share your goals, you are more likely to achieve them.
C) Sharing goals is something you should do in order to get a good grade.
D) If you share your goals with others, people will like you more.

ANSWER: B) If you share your goals, you are more likely to achieve them.

Answers

Answer:

answer is b

Explanation:

hope it was helpful

Answer: B, If you share your goals, you are more likely to achieve them.

We know sharing goals can be helpful to everyone, one of the main reasons people share goals is so that they can get the motivation to carry on doing their work. For example, If you and a friend had a goal of going to the gym 3 times a week you would feel responsible if you told your friend that you wouldn't be able to complete the goal this week. Which would make you feel bad for your friend who wants to complete the goal. It also helps with motivation if your friend doesn't want to go then you encourage them and make sure they remember the goal.

Answer choice A, would not make much sense since you are doing the goal together, and + this is a school question and they wouldn't encourage ego. Answer choice C, could be a result of sharing goals with others but doesn't suit the question as much as B. Answer choice D, does apply to the question at all people could end up liking you more but it could also end up the other way around.

Our answer is without a doubt B

Enjoy!

typically, proprietary software packages allow you to print single photos or groups of them on a special type of page. what is this sheet known as?

Answers

Answer: contact sheet

Explanation:

Typically, proprietary software packages allow you to print single photos or groups of them on a special type of page. This sheet is known as "Contact Sheet"

What is a contact sheet and what is it used for?

A contact sheet was often a positive print of the whole negatives from a roll of film or a shot, with each picture being the same size as the negative itself. A contact sheet's goal is to allow you to swiftly examine a series of photographs to locate the keepers or those chosen to be expanded.

Contact sheets in film photography allow a photographer to see all of the frames from a roll of film in print. Contact sheets receive their name from the method of production: printing negative strips directly onto photographic paper.

Learn more about the contact sheet:
https://brainly.com/question/12104476
#SPJ1

Which is best online C compiler?

Answers

It offers the greatest C++ compiler, and it's extremely simple to manage different versions of a single application.

What does a software compiler do?

Compilers are specific software tools that convert the source code of one programming language into machine code, bytecode, or some other computer program. Usually, the original code is created in a high-level, understandable language for humans, such Java or C++.

Are compilers present on all computers?

No. Operating systems do this frequently but not always. Not all computers, but the majority, come with an operating system. Some highly well-known operating systems (OSs) may not include compiler or interpreter for popular programming languages, although they may do so for less well-known but platform-specific languages.

To know more about compiler visit:

https://brainly.com/question/28232020

#SPJ4

A Chief Security Officer (CSO) has asked a technician to devise a solution that can detect unauthorized execution privileges from the OS in both executable and data files, and can work in conjunction with proxies or UTM. Which of the following would BEST meet the CSO's requirements?
A. Fuzzing.
B. Sandboxing.
C. Static code analysis.
D. Code review.

Answers

A solution which would best meet the CSO's requirements is: B. Sandboxing.

What is a sandbox?

A sandbox can be defined as an isolated environment in a computer system or on a network that is designed and developed to mimic end user operating system (OS) and environments, so as to detect unauthorized execution privileges from the operating system (OS).

In cybersecurity, sandboxing is typically used to safely execute suspicious code and data files without causing any harm to the host device or network. Also, sandboxing can work in conjunction with proxies or unified threat management (UTM).

Read more on sandboxing here: https://brainly.com/question/25883753

why do i like art in your own words can anyone help me plesssssssssssssss

Answers

Answer:

i like art because it can show feeling and inspire people the creativity that people show. The skill to make art is is outstanding and even those some of the most famous artist are not alive any more there art is still seen by other people today that's why i like art because art can show how a person feels. Here is an example if a person is deaf and cant hear then they don't speak but they can paint what they feel same thing for other people. painting can also help people did you know that painting is proven and effective way to reduce stress and that's why i like art

Explanation:

hope this helped

i like art because Art has allowed us to explore new ideas. It lets us freely express ourselves in many ways. From story telling, to painting, to song.

hope it helped!!

a constructor is a method that: question 22 options: a) with the name classname.constructor. b) never receives any arguments. c) performs initialization or setup operations. d) returns an object of the class.

Answers

A constructor is a method that c: 'performs initialization or setup operations'.

In object-oriented programming, a constructor is a special type of method called to create an object. The constructor prepares the new object for use, often accepting arguments that are used by the constructor to set required member variables. Constructors have the same name as that of the declaring class. Constructors have the key task of initializing the data members of the object and setting up the operations to be performed on them.

You can learn more about constructor at

https://brainly.com/question/13267121

#SPJ4

Software is an example of a(n)
t
within the information Technology industry, subsector sector, industry subsector, industry sector. subsector industry, sector

Answers

Software is an example of a technology within the information technology industry, specifically within the software subsector.

Software is a fundamental component of the information technology (IT) industry. It refers to a collection of programs, instructions, and data that enable computers and other devices to perform specific tasks or functions. In the IT industry, software plays a critical role in various subsectors, including but not limited to software development, application programming, system administration, and data analysis.

The IT industry encompasses a broad range of sectors, each focusing on different aspects of technology. Within this industry, software falls into the subsector dedicated to developing, designing, and maintaining software applications and systems. This subsector involves activities such as coding, testing, debugging, and documentation of software programs. Software subsectors can further specialize in areas like mobile applications, enterprise software, web development, artificial intelligence, and more.

Software development and its related subsectors are crucial drivers of innovation and productivity in the IT industry. They contribute to the creation of new applications, tools, and solutions that cater to the ever-evolving needs of businesses, individuals, and organizations. The software subsector's significance lies in its ability to transform ideas into tangible digital products, enabling automation, efficiency, and improved functionality across various industries and sectors.

Learn more about Software here:

https://brainly.com/question/20532745

#SPJ11

Haan creates this table to track his income.
A
1 Month
2 Jan
3 Feb
4 Mar
5 Apr
6 May
7 Jun
8 Jul
9 Aug
10 Sep
11 Oct
12 Nov
13 Dec
14 Year Total
B
Income
$3,800
$3,300
$4,200
$4,900
$2,800
$4,100
$3,000
$4,200
$4,700
$3,600
$5,100
$4,200
Which would give him the total income for the year?
=SUM(B2 B13)
EADD(B1:B14)
SUMB1B14
(B2B13)

Answers

Answer:

Your answer is 42,800.

Explanation:

Add together all the numbers and you get a total income of 42,800.

Answer:

=SUM(B2:B13)

Explanation:

EDGE2021

The goal of a system is to


be natural or human-made

use energy

perform a task

be social or physical

Answers

Answer:

The answer is option C, which is: perform a task


Can someone pls help due today !!

Can someone pls help due today !!

Answers

Answer:

a1 timing a2 speed

Explanation:

the owner of a web-based business might want to check to see how many customers are currently visiting her online store or placing orders. what tool allows her to see this activity on the computer in real time?

Answers

A marketing Dashboard, can be used to see how many customers are currently visiting her online store or placing orders. what tool allows her to see this activity on the computer in real time.

What is a marketing dashboard?This refers to the visual display of the most relevant information necessary to keep track of key marketing metrics and to achieve some more marketing objectives.These dashboards can be used to track the performance of your business's online marketing activities and they lets one monitor  campaigns and other digital marketing efforts in real-time.In conclusion, it means the visual display of the essential information related to achieving a marketing objective.

Hence,To check how many people are currently browsing or making purchases from her online store, she can use a marketing dashboard. How does she use this tool to view this action on the computer in real time.

Read more about marketing dashboard:

brainly.com/question/17354284

#SPJ4

What is black that has words and it is red all day?

Answers

This phrase seems to be a riddle and its answer is "A newspaper"

What is the riddle about?

Newspapers are typically black with white text, but the newspaper can be red if it is referring to the financial section, which often contains stock market information and is known as the "red section" or "red pages" due to the historical use of red ink to indicate stock market losses.

Note that A newspaper is a periodical publication containing written information about current events, news stories, and other items of general interest. They are usually printed on paper and come out once a day, weekly, or monthly.

Learn more about riddle from

https://brainly.com/question/951139

#SPJ1

13. the purpose of specifying a postcondition is to a. specify the types of objects the method accepts. b. explain the method's end result, whether it is a return value or change in an object's state d. set the method's expectations before the method is executed with respect to the parameters or c. state the ret

Answers

The purpose of specifying a postcondition is to: b. Explain the method's end result, whether it is a return value or change in an object's state.

Postconditions are used to describe the end state of a method, and what the method will return or change in the object's state. It is important to specify a postcondition as it allows for a clear understanding of the end result of the method and can be used as a reference for other developers when using the same method. Furthermore, postconditions can be used to verify that the code is working correctly and producing the expected results.

The Importance of Establishing Postconditions for Methods

When developing software, methods are integral components for building efficient and effective code. Methods are used to carry out specific tasks, and each task should be carefully designed with clear postconditions in order to ensure the desired result. Postconditions are used to describe the end state of a method, and what the method will return or change in the object's state. Establishing postconditions for methods is essential for providing a clear understanding of the end result, as well as for verifying that the code is working correctly and producing the expected results.

Learn more about Postconditions for Methods :

https://brainly.com/question/14350790

#SPJ4

Use conjoint on target segments to determine primary attributes/features:

Product: Apple Pencil (2nd Generation)

Answers

To conduct a conjoint analysis on target segments for the Apple Pencil (2nd Generation), we need to identify the primary attributes/features that are relevant to the target audience. Here are some potential attributes that could be considered:

1. Price: The price of the Apple Pencil can vary, and it could be an important factor for customers when making a purchase decision.

2. Compatibility: The compatibility of the Apple Pencil with different iPad models could be an essential attribute for users who want to ensure it works seamlessly with their devices.

3. Precision and Responsiveness: The level of precision and responsiveness of the Apple Pencil's tip could be a crucial factor for artists and designers who rely on accurate input.

4. Battery Life: The battery life of the Apple Pencil may be an important consideration for users who plan to use it for extended periods without recharging.

5. Pressure Sensitivity: The level of pressure sensitivity in the Apple Pencil could be a key attribute for users who require a high degree of control and artistic expression.

6. Design and Ergonomics: The design and ergonomics of the Apple Pencil, including its weight, grip, and overall comfort, could influence the user experience.

7. Additional Features: Any additional features or functionalities offered by the Apple Pencil, such as tilt support or programmable buttons, could be factors that attract certain segments.

Once these attributes are identified, a conjoint analysis can be conducted to determine the relative importance of each attribute and the preferred levels within each attribute. This analysis can provide insights into the primary features that resonate with target segments and help in developing a product offering that aligns with customer preferences.

Note: The specific attributes and their levels may vary based on the target audience and the research objectives. It is important to conduct market research and gather feedback from the target segments to identify the most relevant attributes for the conjoint analysis.

Learn more about target audience here:

https://brainly.com/question/31192753

#SPJ11

►Write
a python program that will convert Fahrenheit Temperature to Celsius and
Celsius Temperature to Fahrenheit

►Formulae
needed:


►°C
= (°F – 32) x 5/9


►°F
= (°C × 9/5) + 32

Answers

Answer:

import math

C_or_F = input("Enter C for Celcius or F for Farenheit: ")

if C_or_F == 'F':

 F = int(input("Enter degrees in Fahrenheit: "))

 Fahrenheit =(F-32)*(5/9)

 print(Fahrenheit,"°")

if C_or_F == 'C':

 C = int(input("Enter degrees in Celcius: "))

 Celcius = (C*(9/5))+32

 print (Celcius,"°")

Explanation:

The first input determines if it is Fahrenheit or Celcius. The second inputs determine how many degrees in that unit of temperature.

What is block palette

Answers

The block palette is an area of the graphical user interface located between the stage, sprite pane and scripting area.

Which ONE of the following fields can be edited by a user?
A ObjectID
B Shape Length
C Name
D FID

Answers

The field that can be edited by a user is option C: Name.

The Name field is typically used to store a descriptive label or identifier for an object. In many applications or systems, users have the ability to edit or update the Name field to provide a more meaningful or relevant name for an object. This allows users to customize the labels or identifiers associated with specific objects to better suit their needs or preferences.

Editing the Name field can be particularly useful when managing and organizing data. It enables users to assign names that are intuitive, and recognizable and helps facilitate efficient searching, sorting, or categorization of objects within a system.

Learn more about data management here:

https://brainly.com/question/30296990

#SPJ11

A __________ loop is ideal for situations in which a counter variable must be initialized, tested, and incremented.

Answers

A "for" loop is ideal for situations in which a counter variable must be initialized, tested, and incremented. In a "for" loop, the counter variable is initialized at the beginning, a condition is checked to determine if the loop should continue, and the counter variable is incremented or updated after each iteration.

This makes it convenient for performing a specific number of iterations. The structure of a "for" loop includes three parts: the initialization, the condition, and the increment statement. The initialization sets the initial value of the counter variable, the condition checks if the loop should continue, and the increment statement updates the value of the counter variable. This allows for efficient control over the loop and makes it suitable for situations requiring precise control over the number of iterations.

To know more about iteration, visit:

https://brainly.com/question/33232161

#SPJ11

print("Weight on Earth?")
weightEarth = input()
weightMoon = (weightEarth/6)
print("Weight on moon:", weightMoon)

any1 know anything wrong with this code? (python)

Answers

Answer:

weightEarth = float(input("Enter weight on earth: "))

weightMoon = weightEarth/6

print("Weight on moon:", weightMoon)

Explanation:

You have to convert the string input into a float in order to do calculations with it.

What's the difference between HTML and CSS

Answers

The difference between HTML and CSS is that HTML is used for providing a structure (skeleton) for a website while CSS informs the style (skin).

What is CSS?

CSS is an abbreviation for Cascading Style Sheets and it can be defined as a style sheet programming language that is designed and developed for describing and enhancing the presentation of a webpage (document) that is written in a markup language such as:

XMLHTML

What is HTML?

HTML is an abbreviation for hypertext markup language and it can be defined as a standard programming language which is used for designing, developing and creating websites or webpages.

In conclusion, we can reasonably infer and logically deduce that the difference between HTML and CSS is that HTML is used for providing a structure (skeleton) for a website while CSS informs the style (skin).

Read more on CSS style here: brainly.com/question/14376154

#SPJ1

Discuss the Autonomous Robots and Additive Manufacturing contribution to Smart Systems. Why are these two technologies are important for the Smart Systems? Explain the technologies with an example.

Answers

Autonomous robots and additive manufacturing are two crucial technologies that significantly contribute to Smart Systems. Autonomous robots, equipped with sensors, artificial intelligence, and navigation capabilities, can perform tasks with minimal human intervention. They enhance efficiency, safety, and flexibility in various industries. For example, in a smart warehouse, autonomous robots can navigate the facility, locate items, and autonomously pick, pack, and transport them, streamlining the order fulfillment process.

Additive manufacturing, also known as 3D printing, revolutionizes traditional manufacturing methods by constructing objects layer by layer. It enables rapid prototyping, customization, and on-demand production. For instance, in a smart healthcare system, additive manufacturing can be employed to produce personalized medical implants, such as customized prosthetics or dental implants, based on patient-specific requirements, resulting in improved patient outcomes and reduced lead times. Both technologies contribute to the advancement of Smart Systems by optimizing processes, enhancing productivity, and enabling customization in various industries.

Which word contains the Latin root that means say a dictate b import c tractor d transmit

Answers

The word "transmit" contains the Latin root "trans-" meaning "to send, transfer."

What is a Latin Root?

It is to be noted that a Latin root is the base word from which a number of related words in several languages are derived.

In linguistics, the Latin roots of a word are those elements of the word which are derived from ancient Latin, often via a process of word formation known as affixation. These roots often serve as the basis for the formation of new words in other languages and provide a way to understand the relationships between words and their meanings.

Learn more about Latin Root:
https://brainly.com/question/1046510
#SPJ1

What are the tag attributes? give example

Answers

Tag attributes change the style or function of a tag.

One example is the style attribute. It allows you to change things such as the color, size, and font of a text.

A paragraph without any attributes would look like this:

<p>

Your text here...

</p>

A paragraph with attributes might look like this:

<p style="color:blue;font-size:60px;">

Your text here...

</p>

Other Questions
Why might a cancer cell show a preference for glycolysis, even in the presence of oxygen? Which statements about the histogram are true? Check all that apply. whats the area pls help for 30 points ? Please help this is past due!! It just needs to be a few sentences please no links and the correct awnser will get brainliest How did Estonia use music to fight back against the Soviet Union when they tried to take over their government? FILL THE BLANK. the basic tonality of an objects surface regardless of incidental effects or surface texture is __________. If all the following DNA fragments were analyzed on an electrophoresis gel, which one would migrate farthest from the negative electrode? a( n ) ________ organism is one that requires oxygen for growth.? The bacterial chromosome is? a.usually circular. b.found in a nucleoid. c.found in a nucleus. d. both circular and found in a nucleoid. e. both circular and found in a nucleus. please help quickk!! The school that would become naval academy in annapolis maryland was originally set up in 1845 at what 10-acre army post?. should college students be routinely tested for drug use, for both illicit drugs (such as cocaine) and non prescribed medications (such as adderall)? describe the advantages and disadvantages of such a program. ________________ is a technique in which an image is transferred by forcing ink through fine mesh or silk.a.Lithographyc.Typographyb.Serigraphyd.Sans-serif major movement of modem and pioneered by jackson pollock in the 1940s and 1950s. true or false A new marketing employee for an international company is learning to coordinate all of the companys marketing methods. What are the seven most common methods she should make sure to address with the companys marketing? Multiple Choice Question What integers are the solutions to |x-4| < 8 and |-3x| > 12 Whats 1/3 times 2/5 You have a $20 coffee card. Each time you go there, you spend $1.25. The equation y = -1.25 x + 20 represents how much you have left on the gift card after x visits. How many purchases can you make before the balance runs out? A(1,1) B(1,3) C(3,a) are points and AB=CB find "a" An invoice is never subject to both trade and cash discounts. true false The diagram below represents the inputs and outputs of cellular respiration. The arrows entering the cell are inputs. The arrows exiting the cell are outputs. Complete the diagram by adding the missing input and output. Determine what type of model best fits the given situation:The membership of the local PTA increases by 3 members a day for each day during the month of September.A. exponentialB. quadraticC. none of theseD. linear so if bob spilt 5.9 milk in a cup how much milk does he have