Python Institute PCEP-30-02 Practice Exams
Last updated on Apr 01,2025- Exam Code: PCEP-30-02
- Exam Name: PCEP – Certified Entry-Level Python Programmer
- Certification Provider: Python Institute
- Latest update: Apr 01,2025
Question #21
Which of the following lines correctly invoke the function de fi ned below: (Choose two.)
- A . fun(b=0, a=0)
- B . fun(b=1)
- C . fun(0, 1, 2)
- D . fun()
Question #22
You have the following le.
You run the le by executing the following command in the terminal. python index.py 42 3
What is the expected output?
- A . 45
- B . 424242
- C . 423
- D . 126
- E . The code is erroneous.
Question #23
The following code:
print ( fl oat ("1, 3"))
- A . prints 13
- B . prints 1.3
- C . prints 1,3
- D . raises a ValueError exception.
Question #24
Question #25
Analyze the following code fragments that assign a boolean value to the variable even?
- A . All three are correct, but Code-2 is preferred.
- B . All three are correct, but Code-3 is preferred.
- C . Code-3 has a syntax error because you attempt to assign a number to even.
- D . All three are correct, but Code-1 is preferred.
- E . Code-2 has a syntax error because you cannot have True and False literals in the conditional expression.
Question #26
What is the expected output of the following code?
- A . 3
- B . 13
- C . The code is erroneous.
- D . 42
Question #27
DRAG DROP
Drag and drop the keywords in order to build a program which prints Failed to the screen. (Note: one keyword box will not be used.)
Question #28
Question #29
The result of the following addition:
123 + 0.0
- A . cannot be evaluated
- B . is equal to 123
- C . is equal to 123.0
Question #30
What is the expected output of the following code?
- A . 1*1*1
- B . 1 1 1
- C . x*y*z
- D . The code is erroneous.
- E . 111*
- F . x y z