Q asks to write
1. input statement that prompts the user for the type of cheese:
What kind of cheese you like?
Input TYPE OF CHEESE
2. Print statement that clearly displays the output message related to the type of cheese:
Print "Pizza has" TYPE OF CHEESE "type of cheese."
Answer:
A system is a collection of elements or components that are organized for a common purpose. ... A computer system consists of hardware components that have been carefully chosen so that they work well together and software components or programs that run in the computer.
Explanation:
Hope this helps, Upvote if you like it :)
def computeGrade(float grade, str a){
a = "A" if a > 0.9 else a = "B" if a > 0.8 else "C"
return a;
}
print(a)