Python Institute PCEP-30-02 Übungsprüfungen
Zuletzt aktualisiert am 27.04.2025- Prüfungscode: PCEP-30-02
- Prüfungsname: PCEP – Certified Entry-Level Python Programmer
- Zertifizierungsanbieter: Python Institute
- Zuletzt aktualisiert am: 27.04.2025
Question #51
An alternative name for a data structure called a stack is:
- A . LIFO
- B . FIFO
- C . FOLO
Question #52
What is the expected output of the following code?
- A . (‚Peter‘: 30, ‚Paul‘: 31)
- B . (‚Peter‘, ‚Paul‘)
- C . [‚Peter‘: 30, ‚Paul‘: 31]
- D . [‚Peter‘, ‚Paul‘]
Question #53
The value thirty point eleven times ten raised to the power of nine should be written as:
- A . 30.11E9.0
- B . 30E11.9
- C . 30.11*10^9
- D . 30.11E9
Question #54
What is the output of the following code?
- A . 2x
- B . 22
- C . The program will cause an error.
- D . 4
Question #55
The n digraph forces the print() function to:
- A . duplicate the character next to the digraph
- B . stop its execution
- C . break the output line
- D . output exactly two characters: and n
Question #56
What is the expected output of the following code?
- A . 8
- B . 2
- C . 4
- D . 6
- E . The code is erroneous.
Question #57
Which of the following variable names are illegal and will cause the SyntaxError exception? (Choose two.)
- A . print
- B . In
- C . for
- D . in
Question #58
Select the true statements: (Choose two.)
- A . You can use keywords as variable names in Python
- B . You can use keywords as function names in Python
- C . You cannot use keywords as variable names in Python
- D . You cannot use keywords as function names in Python
Question #59
What is the expected output of the following code?
- A . None
- B . 2
- C . The code is erroneous.
- D . 4
Question #60
The user enters 123.
Which of the following code snippets will print 124 to the monitor? (Choose three.)
A )
B )
C )
D )
- A . Option A
- B . Option B
- C . Option C
- D . Option D