(PCEP): Module 1 UPDATED ACTUAL
Exam Questions and CORRECT Answers
What are the four fundamental elements that make a language? - CORRECT
ANSWER An alphabet, a lexis, a syntax, and semantics
What is CPython? - CORRECT ANSWER It's the default, reference implementation of
Python, written in the C language.
What is true about compilation? (Select two answers) - CORRECT ANSWER (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) - CORRECT ANSWER (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!") - CORRECT ANSWER The program will output Hello! to the screen.
What do you call a file containing a program written in a high-level programming language? -
CORRECT ANSWER A source file
What do you call a command-line interpreter which lets you interact with your OS and execute
Python commands and scripts? - CORRECT ANSWER A console
What is the best definition of a script? - CORRECT ANSWER It's a text file that contains
instructions which make up a Python program.