think about what she wants to do with her life and what collage is best fit for that
Answer:
7.4 Code Practice: Question 1
def GPAcalc(g):
if g == "a" or g == "A":
return 4
elif g == "B" or g == "b":
return 3
elif g == "C" or g == "c":
return 2
elif g == "D" or g == "d":
return 1
elif g == "F" or g == "f":
return 0
Explanation:
Protocol, in computer science, a set of rules or procedures for transmitting data between electronic devices, such as computers. In order for computers to exchange information, there must be a preexisting agreement as to how the information will be structured and how each side will send and receive it.
Answer:
b. <em>After each calculation within your program, insert a temporary statement that displays the most recently calculated value. When running your program, compare the displayed values with the expected values to identify where in the program the error is being introduced.</em>
Explanation:
Logging statements are an effective debugging technique. It is a good way of finding the location of faulty logic in a program.
One can trace the root problem through logging intermediary outputs.
We can find out from where the program is producing unexpected or unintended calculations, when their's a weird output logged.
The answer is #’s 1 and 4 are True.