Python Institute PCEP-30-02 PCEP – Certified Entry-Level Python Programmer Online Training
Python Institute PCEP-30-02 Online Training
The questions for PCEP-30-02 were last updated at Sep 14,2025.
- Exam Code: PCEP-30-02
- Exam Name: PCEP – Certified Entry-Level Python Programmer
- Certification Provider: Python Institute
- Latest update: Sep 14,2025
What is the expected output of the following code?
- A . 1 | False
2 | True
3 | False
4 | True - B . 1 | False
2 | True
3 | True
4 | True - C . 1 | False
2 | True
3 | True
4 | False - D . 1 | False
2 | False
3 | True
4 | True
Evaluate the following Python arithmetic expression:
(3*(1+2) **2-(2**2) *3)
What is the result?
- A . 13
- B . 3
- C . 69
- D . 15
Consider the following code.
What does the second assignment do?
- A . It shortens the list.
- B . It reverses the list.
- C . It doesn’t change the list.
- D . It extends the list.
An operator able to check whether two values are equal, is coded as:
- A . ==
- B . ===
- C . is
- D . =
Consider the following code.
x = oat (‘23.42’)
Which of the following expressions will evaluate to 2?
- A . int(x) + False
- B . bool(x) + True
- C . str(x)
- D . bool(x)
What is the expected output of the following code?
print (1 // 2)
- A . 0.5
- B . 0.0
- C . None of the above.
- D . 0