PCEP-30-02 Practice Online

Quickly grab our PCEP-30-02 product now and kickstart your exam preparation today!

Name: Certified Entry-Level Python Programmer
Exam Code: PCEP-30-02
Certification: PCEP
Vendor: Python Institute
Total Questions: 569
Last Updated: May 14, 2024
Page:    1 / 114      
Total 569 Questions | Updated On: May 14, 2024
Demo Download
Question 1

A set of rules which defines the ways in which words can be coupled in sentences is called: 


Answer: B

Question 2

Assuming that the following assignment has been successfully executed:

Which of the following expressions evaluate to True? (Select two expressions.)  


Answer: C,D

Question 3

What will be the output after the user enters 0?
user_input = int(input('What is your value? '))
print(1/user_input)


Answer: C

Question 4

What will be the output after running the following code?
dict = {}
dict[0] = 'Work'
dict['Hobby'] = ['Sport', 'Languages']
print(dict)


Answer: C

Question 5

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)


Answer: C

Page:    1 / 114      
Total 569 Questions | Updated On: May 14, 2024
Demo Download