Python Certified Entry-Level Programmer (PCEP) Module 1 Introduction to Python & Computer, Exams of Advanced Education

Python Certified Entry-Level Programmer (PCEP) Module 1 Introduction to Python & Computer Programming Study Guide 2026-2.docx

Typology: Exams

2025/2026

Available from 06/15/2026

Toperthetop
Toperthetop 🇬🇧

3

(6)

27K documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Python Certified Entry-Level Programmer (PCEP) Module 1 |
Introduction to Python & Computer Programming Study Guide 2026
What are the four fundamental elements that make a language? - ANS ✔✔An
alphabet, a lexis, a syntax, and semantics
What is CPython? - ANS ✔✔It's the default, reference implementation of
Python, written in the C language.
What is true about compilation? (Select two answers) - ANS ✔✔(1) It tends to
be faster than interpretation.
(2) The code is converted directly into machine code executable by the
processor.
Select the true statements? (Select two answers) - ANS ✔✔(1) Python is free,
open-source, and multiplatform.
(2) Python is a good choice for creating and executing tests for applications.
What is the expected behavior of the following program?
print("Hello!") - ANS ✔✔The program will output Hello! to the screen.
What do you call a file containing a program written in a high-level
programming language? - ANS ✔✔A source file
What do you call a command-line interpreter which lets you interact with
your OS and execute Python commands and scripts? - ANS ✔✔A console
What is the best definition of a script? - ANS ✔✔It's a text file that contains
instructions which make up a Python program.
pf2

Partial preview of the text

Download Python Certified Entry-Level Programmer (PCEP) Module 1 Introduction to Python & Computer and more Exams Advanced Education in PDF only on Docsity!

Python Certified Entry-Level Programmer (PCEP) Module 1 | Introduction to Python & Computer Programming Study Guide 2026 What are the four fundamental elements that make a language? - ANS ✔✔An alphabet, a lexis, a syntax, and semantics What is CPython? - ANS ✔✔It's the default, reference implementation of Python, written in the C language. What is true about compilation? (Select two answers) - ANS ✔✔(1) It tends to be faster than interpretation. (2) The code is converted directly into machine code executable by the processor. Select the true statements? (Select two answers) - ANS ✔✔(1) Python is free, open-source, and multiplatform. (2) Python is a good choice for creating and executing tests for applications. What is the expected behavior of the following program? print("Hello!") - ANS ✔✔The program will output Hello! to the screen. What do you call a file containing a program written in a high-level programming language? - ANS ✔✔A source file What do you call a command-line interpreter which lets you interact with your OS and execute Python commands and scripts? - ANS ✔✔A console What is the best definition of a script? - ANS ✔✔It's a text file that contains instructions which make up a Python program.

What is the expected behavior of the following program? prin("Goodbye!") - ANS ✔✔The program will generate an error message on the screen. What is machine code? - ANS ✔✔A low-level programming language consisting of binary digits/bits that the computer reads and understands.