STUDYPREP 2022/2023 DETAILED QUESTIONS AND ANSWERS
What is used to store information to be referenced and manipulated in a computer program. (correct
answers)Variable
How to assign a value to a variable? (correct answers)= symbol
An ___________________ is anything that can be evaluated, and pretty much everything you write in a
program. (correct answers)expression
a name assigned to an element in a program. Example, name of a variable, function, etc. (correct
answers)Identifier
the ___________________ must begin with a letter, a digit, or an underscore. (correct answers)valid
identifiers
symbols that helps us to perform specific mathematical and logical computations on operands
Ex.
+, - , / (correct answers)operator
What precedence rules does programming use? (correct answers)PEMDAS
what is an integer? (correct answers)a whole number that can be positive or negative
What is a float? (correct answers)number with decimals