1. 

The keyword used to transfer control from a function back to the calling function is

A. switch
B. goto
C. go back
D. return

2. 

What is the notation for following functions?

1.  int f(int a, float b)
    {
        /* Some code */
    }

2.  int f(a, b)
    int a; float b;
    {
        /* Some code */
    }

A. 1. KR Notation
2. ANSI Notation
B. 1. Pre ANSI C Notation
2. KR Notation
C. 1. ANSI Notation
2. KR Notation
D. 1. ANSI Notation
2. Pre ANSI Notation

3. 

How many times the program will print "IndiaMax" ?

#include<stdio.h>

int main()
{
    printf("IndiaMax");
    main();
    return 0;
}

A. Infinite times
B. 32767 times
C. 65535 times
D. Till stack overflows