exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 2 question 89 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 11
Topic #: 2
[All PCEP-30-02 Questions]

What is the expected output of the following code?
x = 28
y = 8
print(x / y)
print(x // y)
print(x % y)

  • A. 1 | 3.0
    2 | 3
    3 | 2
  • B. 1 | 3.5
    2 | 3
    3 | 4
  • C. 1 | 3
    2 | 3.5
    3 | 4
  • D. 1 | 3.5
    2 | 3.5
    3 | 2
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
hovnival
1 month, 1 week ago
Selected Answer: B
The expected output of the code is: x = 28 y = 8 print(x / y) # This performs floating-point division print(x // y) # This performs integer (floor) division print(x % y) # This calculates the remainder of the division Let's calculate each step: 1. `x / y` performs floating-point division: \( 28 / 8 = 3.5 \) 2. `x // y` performs integer (floor) division: \( 28 // 8 = 3 \) 3. `x % y` calculates the remainder of the division: \( 28 \% 8 = 4 \) So, the output will be: 3.5 3 4 Therefore, the correct answer is: B. 1 | 3.5 2 | 3 3 | 4
upvoted 1 times
...
christostz03
5 months, 2 weeks ago
b is the correct answer
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago