Python Institute PCEP-30-02 Exam Certified Entry-Level Python Programmer Study Guide & Pra, Exams of Advanced Education

Python Institute PCEP-30-02 Exam Certified Entry-Level Python Programmer Study Guide & Practice Questions 2026-3.docx

Typology: Exams

2025/2026

Available from 06/15/2026

Toperthetop
Toperthetop 🇬🇧

3

(6)

27K documents

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Python Institute PCEP-30-02 Exam | Certified Entry-Level Python
Programmer Study Guide & Practice Questions 2026
A set of rules which defines the ways in which words can be coupled in
sentences is called:
A. lexis
B. syntax
C. semantics
D. dictionary - ANS ✔✔Answer: B
Which of the following expressions evaluate to a non-zero result? (Select two
answers.)
A.2**3/A-2
B.4/2**3-2
C.1**3/4-1
D.1*4//2**3 - ANS ✔✔Answer: AB
Python Is an example of which programming language category?
A. interpreted
B. assembly
C. compiled
D. machine - ANS ✔✔Answer: A
What is true about tuples? (Select two answers.)
A. Tuples are immutable, which means that their contents cannot be changed
during their lifetime.
B. The len { } function cannot be applied to tuples.
C. An empty tuple is written as { } .
pf3

Partial preview of the text

Download Python Institute PCEP-30-02 Exam Certified Entry-Level Python Programmer Study Guide & Pra and more Exams Advanced Education in PDF only on Docsity!

Python Institute PCEP-30-02 Exam | Certified Entry-Level Python Programmer Study Guide & Practice Questions 2026 A set of rules which defines the ways in which words can be coupled in sentences is called: A. lexis B. syntax C. semantics D. dictionary - ANS ✔✔Answer: B Which of the following expressions evaluate to a non-zero result? (Select two answers.) A.23/A- B.4/23- C.13/4- D.14//2*3 - ANS ✔✔Answer: AB Python Is an example of which programming language category? A. interpreted B. assembly C. compiled D. machine - ANS ✔✔Answer: A What is true about tuples? (Select two answers.) A. Tuples are immutable, which means that their contents cannot be changed during their lifetime. B. The len { } function cannot be applied to tuples. C. An empty tuple is written as { }.

D. Tuples can be indexed and sliced like lists. - ANS ✔✔Answer: A, D What is true about exceptions and debugging? (Select two answers.) A. A tool that allows you to precisely trace program execution is called a debugger. B. If some Python code is executed without errors, this proves that there are no errors in it. C. One try-except block may contain more than one except branch. D. The default (anonymous) except branch cannot be the last branch in the try-except block. - ANS ✔✔Answer: A, C Which of the following are the names of Python passing argument styles? (Select two answers.) A. keyword B. reference C. indicatory D. positional - ANS ✔✔Answer: A, D How many hashes (+) does the code output to the screen? A. one B. zero (the code outputs nothing) C. five D. three - ANS ✔✔Answer: C What happens when the user runs the following code? A. The code outputs 3.