Python Institute PCEP-30-02 Practice Exams
Last updated on Mar 31,2025- Exam Code: PCEP-30-02
- Exam Name: PCEP – Certified Entry-Level Python Programmer
- Certification Provider: Python Institute
- Latest update: Mar 31,2025
Question #11
What is the expected output of the following code?
print (type (1 / 2))
- A . <type ‘double’>
- B . <type ‘int’>
- C . <type ‘number’>
- D . <type ‘tuple’>
- E . <type ‘ oat’>
Question #12
What would you insert instead of ???, so that the program prints True to the monitor?
- A . x < y
- B . x is not y
- C . x is y
- D . x != y
Question #13
A built in function is a function which …
- A . is hidden from programmers.
- B . comes with Python, and is an integral part of Python.
- C . has been placed within your code by another programmer.
- D . has to be imported before use.
Question #14
How many stars will the following snippet send to the console?
- A . three
- B . two
- C . one
Question #15
How many stars will the following code print to the monitor?
- A . two
- B . one
- C . four
- D . eight
Question #16
What is the output of the following code?
- A . [1, 1, 1]
- B . [3, -1, 1]
- C . [3, 1, 1]
Question #17
Question #18
Which of the following sentences is true?
- A . str1 and str2 are different (but equal) strings.
- B . str1 and str2 are different names of the same strings.
- C . str1 is longer than str2
- D . str2 is longer than str1
Question #19
How much will the delivery cost be, if the order value is 1700 and the state is FL (Florida)?
- A . 120
- B . 105
- C . 80
- D . 90
Question #20
What is the expected output of the following code?
A )
B )
C )
D ) The code is erroneous.
- A . Option A
- B . Option B
- C . Option C
- D . Option D