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. Ancient mathematicians developed the first algorithms.
A. True
B. False
Answer: A
2. What type of programming language is Python?
A. Compiled language
B. Interpreted language
C. Machine language
D. Assembly language
Answer: B
3. In the 1960s, batch processing sometimes caused programmers to wait days
for results, including error messages.
A. True
B. False
Answer: A
,4. Moore’s Law states that hardware speed and storage increase while cost
decreases by a factor of 3 every 18 months.
A. True
B. False
Answer: B
5. What program converts high-level code into executable code?
A. Editor
B. Debugger
C. Translator
D. Compiler only
Answer: C
6. An algorithm describes a step-by-step process that ends with a solution to a
problem.
A. True
B. False
Answer: A
7. A program stored in memory must be represented in binary digits (ASCII
code).
A. True
B. False
Answer: B
8. In IDLE, green text represents:
,A. Keywords
B. Errors
C. Strings
D. Comments
Answer: C
9. What is the integrated development environment included with Python?
A. PyCharm
B. IDLE
C. Eclipse
D. VS Code
Answer: B
10. Which language, created by Tim Berners-Lee, structures web page content?
A. Python
B. Java
C. HTML
D. CSS
Answer: C
11. A variable name in Python must begin with a letter or underscore.
A. True
B. False
Answer: A
12. What is the output of:
print("Hello" * 5)
A. Hello 5
, B. HelloHelloHelloHelloHello
C. Error
D. HelloHello
Answer: B
13. In Python, what does 6 % 4 return?
A. 1
B. 2
C. 3
D. 6
Answer: B
14. Which literal represents a float?
A. 3
B. "3.14"
C. 3.14
D. 314
Answer: C
15. What does range(10, 0, -1) do?
A. Counts up from 0 to 10
B. Counts down from 10 to 1
C. Produces an error
D. Counts down from 10 to 0
Answer: B
16. What happens if a while True loop has no break statement?