Certified Entry-Level Python Programmer (PCEP-30-02) Free Practice Exam Questions

17 real Certified Entry-Level Python Programmer (PCEP-30-02) exam questions with answers and AI explanations. Python Institute certification prep — page 2 of 2.

  1. Question 47: If you want to build a string that reads: Peter's sister's name's "Anna" Which of the following literals would you use? (Choose two.)
  2. Question 48: Which of the following statements can be used to return the length of the given string str?
  3. Question 53: What is the expected output of the following code? print(chr(ord('z') - 2))
  4. Question 54: What is the decimal value of the following binary number? 1010
  5. Question 64: Which of the following expressions evaluate to zero? (Choose two.)
  6. Question 71: What is the expected output of the following code? menu = {“bunuelo”: 3.21, “torrijas”: 4.99, “churros”: 1.99} for value in menu.values(): print (str(value) [1…
  7. Question 72: Assuming that the following assignment has been successfully executed: the_list = [“1”, 1, 1.] Which of the following expressions evaluate to True? (Choose two…