Advertisements
Advertisements
प्रश्न
What happens if you modify a variable outside the function? Give an example.
उत्तर
When a function depends on variables or functions outside of its definition block, you can never be sure that the function will behave the same every time it’s called.
For example let y: = 0
(int) inc (int) x
y: = y + x;
return (y)
In the above example, the value of y gets changed inside the function definition due to which the result will change each time. The side effect of the inc ( ) function is it is changing the data ‘ of the external visible variable ‘y’.
APPEARS IN
संबंधित प्रश्न
The small sections of code that are used to perform a particular task are called ______
Which of the following is a unit of code that is often defined within a greater code structure?
Which of the following defines what an object can do?
What is a subroutine?
Which of the following is a normal function definition and which is a recursive function definition.
let rec sum x y:
return x + y
Which of the following is a normal function definition and which is a recursive function definition.
let disp :
print ‘welcome’
Which of the following is a normal function definition and which is a recursive function definition.
let rec sum num:
if (num!=0) then return num + sum (num-1)
else
return num
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 function?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
A statement that invokes the function recursively?
Identify in the following program.
let rec gcd a b:=
if b <> 0 then gcd b (a mod b) else return a
The statement which terminates the recursion?