Python Institute PCEP-30-02 Übungsprüfungen
Zuletzt aktualisiert am 31.05.2025- Prüfungscode: PCEP-30-02
- Prüfungsname: PCEP – Certified Entry-Level Python Programmer
- Zertifizierungsanbieter: Python Institute
- Zuletzt aktualisiert am: 31.05.2025
Question #111
What is the expected output of the following code?
x = 1 // 5 + 1 / 5
print(x)
- A . 0
- B . 0.2
- C . 0.0
- D . 0.4
Question #112
The following code reads two numbers.
Which of the following is the correct input for the code?
- A . 3,4
- B . 34
- C . None of the above.
- D . <pre>3 4</pre>
Question #113
What do you call a le containing a program written in a high-level programming language?
- A . A code le
- B . A target le
- C . A machine le
- D . A source le
Question #114
What is the expected output of the following code?
- A . The code is erroneous.
- B . [‚Peter‘, ‚Jane‘, ‚Mary‘]
- C . [‚Peter‘, ‚Jane‘]
- D . [‚Paul‘, ‚Mary‘, ‚Jane‘]
Question #115
Which of the approachable except: branches is taken into consideration when an exception occurs?
- A . The last matching branch.
- B . The fi rst matching branch.
- C . Any of the matching branches.
Question #116
What is the expected output of the following code?
- A . 01
- B . 10
- C . The code is erroneous.
- D . 00
- E . 11
Question #117
What is the output of the following snippet if the user enters two lines containing 3 and 6 respectively?
- A . 333333
- B . 18
- C . 36
- D . 666
Question #118
What is the expected output of the following code?
- A . 9
- B . The program will cause an error.
- C . 3
- D . 6
Question #119
What is the expected output of the following code?
print (2 ** 3 ** 2 ** 1)
- A . 64
- B . 16
- C . 128.0
- D . The code is erroneous.
- E . 16.0
- F . 512
Question #120
What is the expected output of the following code?
- A . 3
- B . The code is erroneous.
- C . 6
- D . 7