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 19 discussion

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

What is the expected output of the following code?

  • A. 8
  • B. 7.0
  • C. 8.0
  • D. 9.0
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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
3 months, 3 weeks ago
Selected Answer: C
To determine the expected output of the given Python code, we need to follow the order of operations (PEMDAS/BODMAS) which stands for Parentheses, Exponents (Powers), Multiplication and Division (from left to right), and Addition and Subtraction (from left to right). 1. **Exponentiation**: `2 ** 3` is calculated first: \[ 2 ** 3 = 8 \] 2. **Modulo operation**: `y % 8`: \[ 12 % 8 = 4 \] 3. **Floor division**: `x // 2`: \[ 9 // 2 = 4 \] 4. **Multiplication**: `4 * 2`: \[ 4 * 2 = 8 \] 5. **Division**: `8 / 2`: \[ 8 / 2 = 4.0 \] 6. **Addition**: `4.0 + 4`: \[ 4.0 + 4 = 8.0 \] So, the expected output of the code is: 8.0
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