exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 6 question 19 discussion

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

You want to write a program that asks the user for a value. For the rest of the program you need a whole number, even if the user enters a decimal value.
What would you have to write?

  • A. num = str(input('How many do you need?'))
  • B. num = int(float(input('How many do you need?')))
  • C. num = float(input('How many do you need?'))
  • D. num = int('How many do you need?')
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
akumo
1 month ago
Selected Answer: B
he input() function gets the user's input as a string. float() converts that string into a floating-point number (allowing for decimal input). int() then converts the float to an integer, effectively discarding the decimal part.
upvoted 2 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