Advertisements
Advertisements
प्रश्न
The variables in a function definition are called as ______
विकल्प
Subroutines
Function
Definition
Parameters
उत्तर
The variables in a function definition are called Parameters.
APPEARS IN
संबंधित प्रश्न
Which of the following is a distinct syntactic block?
The values which are passed to a function definition are called ______
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.