C Programming The recursive functions are executed in a ........... First In First Out order Iterative order Last In First Out order Parallel order Random order First In First Out order Iterative order Last In First Out order Parallel order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 1 0 The actual values read for each argument. ASCII value of the input read. The number of successful read input values. 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Function scope No scope at all Block scope Local scope File scope Function scope No scope at all Block scope Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? pow(2, x) power(x, 2) power(2, x) pow(x, 2) sqr(x) pow(2, x) power(x, 2) power(2, x) pow(x, 2) sqr(x) ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Register Linked list Array Stack Queue Register Linked list Array Stack ANSWER DOWNLOAD EXAMIANS APP