Objective Assessment Comprehensive Resource To Help
You Ace 2026-2027 Includes Frequently Tested Questions
With ELABORATED 100% Correct COMPLETE SOLUTIONS
Guaranteed Pass First Attempt!!
Current Update!!
1. This symbol marks the beginning of a comment in Python.
1. &
2. *
3. **
4. # - Correct Answer: D
2. Which of the following statements will cause an error?
1. x = 17
2. 17 = x
3. x = 99999
4. x = '17' - Correct Answer: B
3. In the expression 12 + 7, the values on the right and left of the + symbol are
called .
1. operands
2. operators
,3. arguments
4. math expressions - Correct Answer: A
4. This operator performs integer division.
1. //
2. %
3. **
4. / - Correct Answer: A
5. This is an operator that raises a number to a power.
1. %
2. *
3. **
4. / - Correct Answer: C
6. This operator performs division, but instead of returning the quotient it returns
the remainder.
1. %
2. *
3. **
4. / - Correct Answer: A
,7. Suppose the following statement is in a program: price = 99.0. After this
statement executes,
the price variable will reference a value of which data type?
1. int
2. float
3. currency
4. str - Correct Answer: B
8. Which built-in function can be used to read input that has been typed on the
keyboard?
1. input()
2. get_input()
3. read_input()
4. keyboard() - Correct Answer: A
9. Which built-in function can be used to convert an int value to a float?
1. int_to_float()
2. float()
3. convert()
4. int() - Correct Answer: B
10. A magic number is .
1. a number that is mathematically undefined
2. an unexplained value that appears in a program's code
, 3. a number that cannot be divided by 1
4. a number that causes computers to crash - Correct Answer: B
11. A is a name that represents a value that does not change during the
program's
execution.
1. named literal
2. named constant
3. variable signature
4. key term - Correct Answer: B
12. Programmers must be careful not to make syntax errors when writing
pseudocode programs - Correct Answer: T
13. In a math expression, multiplication and division take place before addition
and subtraction. - Correct Answer: T
14. Variable names can have spaces in them. - Correct Answer: F
15. In Python, the first character of a variable name cannot be a number.
- Correct Answer: T
16. If you print a variable that has not been assigned a value, the number 0 will
be displayed. - Correct Answer: F