Exam Code: PCEP-30-02
Exam Questions: 569
Certified Entry-Level Python Programmer
Updated: 22 May, 2026
Viewing Page : 1 - 57
Practicing : 1 - 5 of 569 Questions
Question 1

What will be the sum of all elements in the list after the following operations?
numbers = [0, 1, 2]
numbers.insert(0, 1)
del numbers[1]

Options :
Answer: B

Question 2

What will be the output of the following code?
if '1' > 3:
        print('yes')
else:
        print('no')

Options :
Answer: D

Question 3

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 4

What is true about the following code snippet?
list1 = [1, 2, 3]
list2 = list1[:] 

Options :
Answer: B

Question 5

What will be the output after running the following code?
print(len('H'), len('I!'), sep='', end='!')

Options :
Answer: C

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

© Copyrights FreePDFQuestions 2026. All Rights Reserved

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