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 1 of 2.

  1. Question 5: The fact that tuples belong to sequence types means:
  2. Question 10: An alternative name for a data structure called a stack is:
  3. Question 18: What is the expected output of the following code? x = 4.5 y = 2 print(x // y)
  4. Question 23: What is the expected output of the following code? x = 2 y = 6 x += 2 ** 3 x //= y // 2 // 3 print(x)
  5. Question 31: The meaning of the keyword parameter is determined by:
  6. Question 32: Which of the following function definition does not return any value?
  7. Question 33: A variable defined outside a function:
  8. Question 35: The unnamed except block ...
  9. Question 37: The following statement ... assert x == 0
  10. Question 38: The following code: print(float("1, 3"))