Conceptual Actual Emended Exam Questions
With Reviewed 100% Correct Detailed Answers
Guaranteed Pass!!Current Update
1. What is the correct way to declare a variable in Python?
A. int x = 5
B. x := 5
C. x = 5
D. declare x = 5
Answer: C. x = 5
2. What data type is the value 3.14 in Python?
A. int
B. str
C. float
D. bool
Answer: C. float
3. Which of the following is a correct string in Python?
A. Hello
B. "Hello"
C. 'Hello"
D. Hello'
Answer: B. "Hello"
,4. What will print(4 == 4.0) output?
A. True
B. False
C. Error
D. None
Answer: A. True
5. Which of the following represents a Boolean value?
A. Yes
B. "True"
C. true
D. True
Answer: D. True
6. What will the following code output?
python
CopyEdit
print("WGU", end=" ")
print("Python")
A. WGU on one line and Python on the next
B. WGU Python
C. WGUend= Python
D. WGU Python
Answer: B. WGU Python
7. How is indentation used in Python?
A. It organizes comments.
B. It makes code easier to read, but has no impact.
,C. It is optional.
D. It defines code blocks and structure.
Answer: D. It defines code blocks and structure.
8. What type is returned by input() in Python?
A. int
B. float
C. str
D. bool
Answer: C. str
9. Which Python data type is immutable?
A. List
B. Dictionary
C. Set
D. Tuple
Answer: D. Tuple
10. Which of the following is a valid comment in Python?
A. // This is a comment
B. <!-- Comment -->
C. # This is a comment
D. -- This is a comment
Answer: C. # This is a comment
Indentation in Python - ANSWER Python uses indentation (spaces or tabs at
the start of a line) to define code blocks instead of braces. Consistent indentation
is required for structures like if statements, loops, and function definitions.
, Variable in Python - ANSWER A variable is a named reference to a value in
memory. You create one by simply assigning a value to a name using =.
Basic data types in Python - ANSWER Important built-in data types include
Integer (int), Floating-point (float), String (str), Boolean (bool), and NoneType.
Integer in Python - ANSWER Whole numbers (e.g. 42, -5).
Floating-point in Python - ANSWER Decimal numbers (e.g. 3.14, 0.5).
String in Python - ANSWER Text sequences in quotes (e.g. 'Hello').
Boolean in Python - ANSWER Truth values True or False.
NoneType in Python - ANSWER The special value None indicating 'no value.'
Type checking in Python - ANSWER You can use the type() function to check
an object's type. For example, type(42) returns <class 'int'>.
Type conversion in Python - ANSWER Use Python's built-in conversion
functions like int(), float(), str(), and bool().