Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam PCAP-31-03 All Questions

View all questions & answers for the PCAP-31-03 exam

Exam PCAP-31-03 topic 1 question 67 discussion

Actual exam question from Python Institute's PCAP-31-03
Question #: 67
Topic #: 1
[All PCAP-31-03 Questions]

Which of the following lambda definitions are correct? (Choose two.)

  • A. lambda(x,y) = x//y - x%y
  • B. lambda x,y: return x//y - x%y
  • C. lambda x,y: (x,y)
  • D. lambda x,y: x//y - x%y
Show Suggested Answer Hide Answer
Suggested Answer: CD 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
jarun2024
2 months, 3 weeks ago
A. lambda(x,y) = x//y - x%y ------ > SyntaxError: Lambda expression parameters cannot be parenthesized B. lambda x,y: return x//y - x%y ----> Lambda function not returning the values. So C & D is the correct expression. C. lambda x,y: (x,y) D. lambda x,y: x//y - x%y
upvoted 1 times
...
Dave304409
4 months ago
Selected Answer: CD
is correct
upvoted 1 times
...
DKAT2023
4 months, 2 weeks ago
Selected Answer: CD
C and D are correct
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 ...