Conceptual Actual Emended Exam Questions
With Reviewed 100% Correct Detailed Answers
Guaranteed Pass!!Current Update
1. What is the correct way to assign a value to a variable in Python?
A) x == 10
B) x = 10
C) 10 -> x
D) let x = 10
2. What data type is returned by the input() function in Python?
A) int
B) bool
C) str
D) float
3. Which keyword is used to define a function in Python?
A) function
B) define
C) def
D) func
4. What is the output of: print(5 // 2)
A) 2.5
B) 2.0
, C) 2
D) 3
5. Which of the following is a mutable data type?
A) tuple
B) list
C) str
D) int
6. What will the following code print? print(type(3.14))
A) <class 'float'>
B) <type 'decimal'>
C) <type 'int'>
D) <class 'double'>
7. Which statement is used for exception handling in Python?
A) try-except
B) catch-throw
C) try-except
D) validate-error
8. What does the len() function return?
A) The value of the last element
B) The number of items in an object
C) The maximum value
D) The length of a variable name
,9. Which operator is used for exponentiation in Python?
A) ^
B) **
C) exp()
D) ^^
10. What is the result of bool("")?
A) True
B) False
C) None
D) 0
11. What keyword ends a function definition in Python?
A) end
B) (no keyword; indentation ends the block)
C) done
D) return
12. Which loop will execute a block of code as long as a condition is true?
A) while
B) for
C) if
D) loop
13. How do you add an element to the end of a list?
A) list.add(x)
B) list.append(x)
C) list.push(x)
D) list.insert_end(x)
, 14. What is the correct way to start a comment in Python?
A) # comment
B) // comment
C) <!-- comment -->
D) /* comment */
15. Which keyword is used to create a class in Python?
A) object
B) struct
C) class
D) type
16. What does the break statement do in a loop?
A) Pauses the loop
B) Exits the loop
C) Skips the next iteration
D) Ends the program
17. Which of the following is NOT a valid Python data type?
A) dict
B) set
C) real
D) list
18. What is the index of the first element in a Python list?
A) -1
B) 0