Advertisements
Advertisements
Question
Which of the following are mandatory to write the type annotations in the function definition?
Options
Curly braces
Parentheses
Square brackets
indentations
Solution
Parentheses
APPEARS IN
RELATED QUESTIONS
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.