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

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

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

  • A. lambda lambda: lambda * lambda
  • B. lambda x : def fun(x): return x
  • C. lambda : 3.1415
  • D. lambda x : None
Show Suggested Answer Hide Answer
Suggested Answer: CD 🗳️

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
flthymcnsty
1 month ago
Selected Answer: CD
Explanation: A lambda function in Python is an anonymous function that can have zero or more arguments but must consist of a single expression. The correct answers are: C. lambda : 3.1415 This is a valid lambda function with no arguments (lambda :) that always returns 3.1415. D. lambda x : None This is a valid lambda function that takes one argument (x) and always returns None. The incorrect answers are: A. lambda lambda: lambda * lambda The syntax is invalid because lambda is a reserved keyword in Python and cannot be used as a variable name. This will result in a SyntaxError. B. lambda x : def fun(x): return x The syntax is invalid because lambda functions cannot contain statements like def. This will result in a SyntaxError.
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