Free PCEP-30-02 Mock Exam – Practice Online Confidently

Increase your chances of passing the Python Institute PCEP-30-02 exam questions on your first try. Practice with our free online PCEP-30-02 exam mock test designed to help you prepare effectively and confidently.

Exam Code: PCEP-30-02
Exam Questions: 569
Certified Entry-Level Python Programmer
Updated: 23 May, 2026
Question 1

What will be the output of this program?
a, b = 15, 5
if a + b:
    print('True')
else:
  print('False')

Options :
Answer: A

Question 2

What will be the output of the following code?
for a in range(1, 3):
for b in range(1, 3):
if a > b:
continue
else:
print(a * b)

Options :
Answer: C

Question 3

What will be the output of the following code?
def first(x):
        return x ** x
 
def second(x):
        return first(x) + first(x)
 
print(second(3))

Options :
Answer: A

Question 4

What will be the output of the following code snippet?
dict1 = {'one': 1, 'two': 2, 'three': 3}
dict2 = {'one': 1, 'two': 5, 'four': 8}
dict3 = dict(dict1)
dict4 = dict(dict2)
dict3.update(dict2)
dict4.update(dict1)
print(dict3 == dict4)

Options :
Answer: C

Question 5

What are built-in Python functions?

Options :
Answer: B

Viewing Page : 1 - 57
Practicing : 1 - 5 of 569 Questions

© Copyrights FreeMockExams 2026. All Rights Reserved

We use cookies to ensure that we give you the best experience on our website (FreeMockExams). If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the FreeMockExams.