Advertisements
Advertisements
प्रश्न
Which of the following are mandatory to write the type annotations in the function definition?
पर्याय
Curly braces
Parentheses
Square brackets
indentations
उत्तर
Parentheses
APPEARS IN
संबंधित प्रश्न
Which of the following is a distinct syntactic block?
The variables in a function definition are called as ______
The values which are passed to a function definition are called ______
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.