Advertisements
Advertisements
प्रश्न
Define Function with respect to Programming language.
उत्तर
A function is a unit of code that is often defined within a greater code structure. Specifically, a function contains a set of code that works on many kinds of inputs, like variants, expressions and produces a concrete output.
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 ______
Which of the following are mandatory to write the type annotations in the function definition?
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.