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 13,2025.
- Exam Code: PCEP-30-02
- Exam Name: PCEP – Certified Entry-Level Python Programmer
- Certification Provider: Python Institute
- Latest update: Sep 13,2025
Which of the following statements is false?
- A . The right argument of the % operator can not be zero.
- B . The ** operator has right-to-left associativity.
- C . Multiplication precedes addition.
- D . The result of the / operator is always an integer value.
What is the expected output of the following code?
print (1 // 2 * 3)
- A . 4.5
- B . 0.16666666666666666
- C . 0.0
- D . 0
What is the expected output of the following code?
- A . True True
- B . True False
- C . False False
- D . False True
The ** operator:
- A . performs duplicated multiplication
- B . does not exist
- C . performs oating-point multiplication
- D . performs exponentiation
Only one of the following statements is true – which one?
- A . addition precedes multiplication
- B . multiplication precedes addition
- C . neither statement can be evaluated
The += operator, when applied to strings, performs:
- A . Subtraction
- B . Concatenation
- C . Multiplication
Consider the following code.
The value eventually assigned to x is equal to:
- A . 1
- B . 0
- C . True
- D . False
What is the output of the following code?
- A . The program will cause an error.
- B . False
- C . None
- D . True
What is the expected output of the following code?
x = 1 + 1 // 2 + 1 / 2 + 2
print(x)
- A . 3
- B . 4.0
- C . 4
- D . 3.5