The answer is a A. - Excel performs operations based on the order of Precedence
Data is an individual unit that contains raw materials which do not carry any specific meaning. Information is a group of data that collectively carries a logical meaning.
Answer:
candyCost = int(input("How much is the candy?"))
Explanation:
candyCost = input("How much is the candy?") → By default, this how you get input and store the value. And it is stored as a string
candyCost = str(input("How much is the candy?")) → This also gives you a string to store
candyCost = float(input("How much is the candy?")) → This gives you a float number, decimal number, to store
candyCost = int(input("How much is the candy?")) → This gives you an integer number, a non-decimal