19
QuizMultiple Choice

Resources for Programmers — Unit test

Question 19 of 25 • Introduction to Information Technology - EL3701

A function, writeamount, is defined:def writeamount ( name, amount = 0 ): print “Name : ”, name; print “Amount: ”, amount; return;When users do not enter the amount they paid, the system automatically assumes they paid nothing. This functionality is an example of a

Answer
A
default argument.
B
subroutine.
C
keyword argument.
D
return statement.
Previous
Next
A function, writeamount, is defined:def…