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
The result of the following division:
- A . cannot be evaluated
- B . is equal to 1.0
- C . is equal to 1
- D . cannot be predicted
What is the expected output of the following code?
- A . 7
- B . The code is erroneous.
- C . 6.0
- D . 7.0
- E . 6
What is the expected output of the following code?
print(‘Mike’ > ‘Mikey’)
- A . False
- B . True
- C . 1
- D . 0
Which of the following is the correct order of operator precedence?
- A . Exponents –
Unary positive, negative, not –
Parentheses –
Multiplication and Division –
Addition and Subtraction –
And - B . Parentheses –
Exponents –
Unary positive, negative, not –
Addition and Subtraction –
Multiplication and Division –
And - C . Parentheses –
Exponents –
Unary positive, negative, not –
Multiplication and Division –
Addition and Subtraction –
And - D . Exponents –
Unary positive, negative, not –
Multiplication and Division –
Addition and Subtraction –
And –
Parentheses
What is the result of the following operation?
- A . 2.0
- B . 11.0
- C . The operation is illegal in Python
- D . 2
Consider the following code.
Which statement will print True to the monitor? (Choose two.)
- A . print(languages == more_languages)
- B . print(languages is more_languages)
- C . print(more_languages is extra_languages)
- D . print(languages is extra_languages)
The // operator:
- A . performs integer division
- B . performs regular division
- C . does not exist
Which of the following statements are correct? (Choose two.)
- A . 7 + False evaluates to False
- B . True or False evaluates to True
- C . True + 1 evaluates to 2
- D . True and False evaluates to True
- E . type(”) returns <class ‘bool’>
What is the output of the following snippet?
- A . 25.0
- B . The snippet will cause an execution error.
- C . 17.0
- D . 17