PCEP Data Types, Variables, Basic I/O and Operators • Set 6
PCEP Data Types, Variables, Basic I/O and Operators Practice Test 6 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. Which of the following shows the correct output?
Refer to the exhibit. ```python a = 10 b = 3 print(a / b) print(a // b) print(a % b) ```