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

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

What is true about lambda functions? (Choose two.)

  • A. they are called anonymous functions
  • B. they cannot return the None value as a result
  • C. they must contain the return keyword
  • D. they must have a non-zero number of parameters
Show Suggested Answer Hide Answer
Suggested Answer: AD 🗳️

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
JeyTlenJey
4 months ago
x = lambda : 10 print(x()) # returns 10 - it can have any number of argument , zero included y = lambda x: None print(y(1)) # returns None A is correct :(
upvoted 1 times
...
Dave304409
4 months, 3 weeks ago
Selected Answer: AD
is correct
upvoted 1 times
...
DKAT2023
4 months, 4 weeks ago
A and D are corrects
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 ...