Here is a listing of tough C++ programming questions on “Function Declarations” along with answers, explanations and/or solutions:
1. Where does the execution of the program starts?
a) user-defined function
b) main function
c) void function
d) else function
View Answer
Explanation: Normally the execution of the program in c++ starts from main only.
2. What are mandatory parts in the function declaration?
a) return type, function name
b) return type, function name, parameters
c) parameters, function name
d) parameters, variables
View Answer
Explanation: In a function, return type and function name are mandatory all else are just used as a choice.
3. which of the following is used to terminate the function declaration?
a) :
b) )
c) ;
d) ]
View Answer
Explanation: ; semicolon is used to terminate a function declaration statement in C++.
4. How many can max number of arguments present in function in the c99 compiler?
a) 99
b) 90
c) 102
d) 127
View Answer
Explanation: C99 allows to pass a maximum of 127 arguments in a function.
5. Which is more effective while calling the functions?
a) call by value
b) call by reference
c) call by pointer
d) call by object
View Answer
Explanation: In the call by reference, it will just passes the reference of the memory addresses of passed values rather than copying the value to new memories which reduces the overall time and memory use.
6. What will be the output of the following C++ code?
#include <iostream>
using namespace std;
void mani()
void mani()
{
cout<<"hai";
}
int main()
{
mani();
return 0;
}
a) hai
b) haihai
c) compile time error
d) runtime error
View Answer
Explanation: We have to use the semicolon to declare the function in line 3. This is called a function declaration and a function declaration ends with a semicolon.
7. What will be the output of the following C++ code?
#include <iostream>
using namespace std;
void fun(int x, int y)
{
x = 20;
y = 10;
}
int main()
{
int x = 10;
fun(x, x);
cout << x;
return 0;
}
a) 10
b) 20
c) compile time error
d) 30
View Answer
Explanation: In this program, we called by value so the value will not be changed, So the output is 10
Output:
$ g++ fun.cpp $ a.out 10
8. What is the scope of the variable declared in the user defined function?
a) whole program
b) only inside the {} block
c) the main function
d) header section
View Answer
Explanation: The variable is valid only in the function block as in other.
9. How many minimum number of functions should be present in a C++ program for its execution?
a) 0
b) 1
c) 2
d) 3
View Answer
Explanation: The execution of a C++ program starts from main function hence we require atleast 1 function to be present in a C++ program to execute and i.e. the main function.
Sanfoundry Global Education & Learning Series – C++ Programming Language.
To practice all areas of C++ language, here is complete set of 1000+ Multiple Choice Questions and Answers.
- Practice Computer Science MCQs
- Practice Programming MCQs
- Apply for C++ Internship
- Check Programming Books
- Check Computer Science Books