adplus-dvertising
frame-decoration

Question

The Default Parameter Passing Mechanism is called as

a.

Call by Value

b.

Call by Reference

c.

Call by Address

d.

Call by Name

Answer: (a).Call by Value

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The Default Parameter Passing Mechanism is called as

Similar Questions

Discover Related MCQs

Q. Functions defined with class name are called as

Q. Consider the program below in a hypothetical programming language which allows global variables and a choice of static or dynamic scoping
 
int i;
program Main( )
{
i = 10;
call f ( );
}
procedure f( )
{
int i = 20;
call g ( );
}
procedure g( )
{
print i;
}

Let x be the value printed under static scoping and y be the value printed under dynamic scoping. Then x and y are

Q. What does the following declaration mean ?

int (*ptr) [10];

Q. Which of the following has, compilation error in C ?

Q. Which of the following operators can not be overloaded in C+ + ?

Q. __________allows to create classes which are derived from other classes, so that they automatically include some of its "parent' s" members plus its own members.

Q. The correct way to round off a floating number x to an integer value is

Q. Which of the following correctly describes overloading of functions ?

Q. C++ actually supports the following two complete dynamic systems:

Q. Important advantage of using new and delete operators in C++ is

Q. When an array is passed as parameter to a function, which of the following statements is correct?

Q. What does the following expression means?

char *(*(*a[N]) ()) ();

Q. What will be the output of the following 'C' code?

main ( )

{        int x = 128;

          printf("\n%d”, 1 + x ++);

}

Q. Which of the following differentiates between overloaded functions and overridden functions?

Q. Which of the following is not a member of class?

Q. Consider the following statements S1, S2 and S3 :

S1 : In call-by-value, anything that is passed into a function call is unchanged in the caller's scope when the function returns.
S2: In call-by-reference, a function receives implicit reference to a variable used as argument.
S3: In call-by-reference, caller is unable to see the modified variable used as argument.

Q. How many tokens will be generated by the scanner for the following statement?
x = x * (a+b) - 5;

Q. When the following code is executed , what will be the value of x and y ?
 
 int x =1, y= 0;
y=x++;

Q. What is the output of the following program ?
(Assume that the appropriate preprocessor directives are included and there is no syntax error)

main ( ) 
           {    char S[ ] = "ABCDEFGH";
                 printf ("%C",* (& S[3]));
                 printf ("%s", S + 4);
                 printf ("%u", S);
            /* Base address of S is 1000 */
            }

Q. Which of the following, in C++, is inherited in a derived class from base class ?