Advertisements
Advertisements
Question
The values which are passed to a function definition are called ______
Options
Arguments
Subroutines
Function
Definition
Solution
The values which are passed to a function definition are called Arguments.
APPEARS IN
RELATED QUESTIONS
Which of the following is a distinct syntactic block?
The variables in a function definition are called as ______
Which of the following are mandatory to write the type annotations in the function definition?
Define Function with respect to Programming language.
What are called Parameters and write a note on Parameter without Type?
What are called Parameters and write a note on Parameter with Type?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
Identify the statement which tells it is a recursive function?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
Name of the argument variable.