Students can Download 2nd PUC Computer Science Chapter 8 Function Overloading Questions and Answers, Notes Pdf, 2nd PUC Computer Science Question Bank with Answers helps you to revise the complete Karnataka State Board Syllabus and to clear all their doubts, score well in final exams.
Karnataka 2nd PUC Computer Science Question Bank Chapter 8 Function Overloading
2nd PUC Computer Science Function Overloading One Mark Questions and Answers
Question 1.
What is meant by function overloading?
Answer:
Function overloading is the process of defining the function with same name to carray out similar types of activities with various data items.
Question 2.
When is function overloading needed?
Answer:
Two or more function have same name, but differ in number of arguments or data type of arguments.
Question 3.
Write an advantage of function overloading.
Answer:
It is easier to understand the flow of information & debug.
Question 4.
Name one condition for overloading of functions.
Answer:
Each functions is the set of overloading functions must have different argument list.
Question 5.
What is an inline functions?
Answer:
A short function consists of function call along with function code.
Question 6.
Write one advantage of inline function.
Answer:
The speed of execution of a program increases.
Question 7.
The inline ifunction is always converted to a code block. True / False.
Answer:
True.
Question 8.
What is a friend function?
Answer:
A friend function is a non – member function that is a friend of a class.
Question 9.
Write an example for friend function declaration.
Answer:
Friend int sum (number n1, number n2);
Question 10.
Write one condition for using a friend function.
Answer:
It cannot access the member variable directly & has to use an object.
Question 11.
Can the keyword friend be used while declaring a friend function?
Answer:
Yes.
Question 12.
Overloading a function means using different names to perform the same operations True / False.
Answer:
False.
2nd PUC Computer Science Function Overloading Two Marks Questions and Answers
Question 1.
What is meant by overloading implements polymorphism?
Answer:
Ploymorphism refers to “one name having many forms, different behavior of an instance of an object depending on situations”. C++ implements polymorphism through function overloading & operator overloading. The function overloading allows the user to create new abstract data types.
Question 2.
Write example for definition & declaration of function overloading.
Answer:
int product (int p, int q, int r);
float product (float x, float y, float z);
int product (int p, int q, int r)
{
cout << “product = ” << p* q* r << endl;
}
float product (float x, float y, float z)
{
cout << ” product = ” << x* y* z << endl;
}
Question 3.
What are the restrictions on overloading functions?
Answer:
- Each function in a set of overloaded fucntions must have different argument lists.
- If typed is used for naming functions, then the function is not considered as different type.
Question 4.
What are the inline functions? Give an example.
Answer:
A short function consists of function call along with function code.
ex:
inline int square (int a)
{
return (a*a);
}
Question 5.
Write the advantages of inline functions.
Answer:
- The inline member functions are compact function calls
- Therefore the size of the object code is considerably reduced.
- The speed of the execution of a program increases.
- Very efficient code can be generated.
- The readability of the program increases.
Question 6.
Create an inline function to check if a number is prime or not.
Answer:
# include < iostream.h> # include < conio.h > inline void isprime (int a) { for (int i = 2; i < a-1; i ++) { if (a % i == 0) { cout < < "\n The number is not prime " ; break'; } } If (i == a) cout < < "\n The number is prime"; } void main () { int num; clrscr () ; cout < < "Enter the no to check prime or not "; is prime (num); get ch (); ; }
Question 7.
When are the friend functions are used? write the syntax of declaration of friend functions.
Answer:
Friend functions are used to access the private abd protected members of the class.
ex:
class class – name
public :
friend void function 1 (void);
};
Question 8.
Write any two characteristics of friend functions.
Answer:
- A friend function although not a member function, has the full access right to the private & protect members of the classes.
- A friend function cannot be called using the object of the class. It can be involved like any normal function
- A friend function is declaration by the class that is granting access. The friend declared can be placed anywhere in the class declaration. It is not affected by the access control keywords.
2nd PUC Computer Science Function Overloading Three Marks Questions and Answers
Question 1.
Write any three reasons for function overloading.
Answer:
- When different functions are created for different operations, than user has to call respective function depending on the situation.
- Code Executed is fast.
- It is easier to understand the flow of information and debug.
- Code maintenance is easy.
- Easier interface between programs & Real world objects.
Question 2.
What are the advantages of inline functions?
Answer:
- Inline functions are small in size + compact.
- Inline function are executed faster than other functions.
- Efficient code can be generated.
- Readability of the program is increased.
Question 3.
What are the disadvantage of inline functions?
Answer:
- The Inline function definition is too long or too complicated.
- The Inline function is recursive.
- The Inline function has looping constructs.
- The Inline function has a switch or goto.
Question 4.
When is it possible that an inline function may not work?
Answer:
- The Inline function definition is too long or too complicated.
- The Inline function is recursive.
- The Inlinr function has looping constructs.
- The Inlinr function has a switch or goto.
Question 5.
Write any three characteristics of friend function.
Answer:
- A friend function is a non- member function that is a friend of a class.
- The friend function is declared within a class with the perfix friend. But it should be defined outside the class like a normal function without the prefix friend.
- It an access public members like non – member functions.
2nd PUC Computer Science Function Overloading Five Marks Questions and Answers
Question 1.
Explain the need for function overloading.
Answer:
Function overloading means two or more functions have same namfe, but differ in the number of arguments or data type of arguments. Therefore it is said that (function name) is overloaded. Function overloading therefore a process of defining. Same function neme to carry out similar types of activities with various data items. The advantages of the function overloading are:
1. When different functions are created for different operations (hen user has to call respective functions depending on the situations. Instead for different situations if the same functions are called with different arguments using function overloading, then the compiler automatically decides about the appropriate functions by comparing the arguments types used in the call to the funciton & call to the required function. Thus the code is executed faster.
2. It is easy to understand the flow of information & debug.
3. Code maintanance is easy.
4. Easier interface between programs & real world objects.
Question 2.
Discuss the overloaded functions with syntax & examples.
Answer:
Function overloading is the process of defining the functions with same name to carry out similar types of activities with various data items. Two or more functions have same name, but differ in number of arguments or data type of arguments. It is easier to understand the flow of information & debug. Each functions in the set of overload functions must have different arguments list.
int product (int p, int q, int r);
float product (float x, float y, float z);
int product (int p, int q, int r)
{
cout << ” product = “<< p* q* r << end 1;
}
float product (float x, float y, float z)
{
cout << ” product = “<< x* y* z << end 1 ;
}
Question 3.
Explain the inline functions with syntax & example.
Answer:
A short function consists of function call along with function code & the process is known as expansion.
- Inline function definition starts with the keyword, inline.
- The inline functions should be defined before all that calls it.
- The compiler replaces the function call statement with the function code itself (expansion) then compiles the entire code.
- They run little faster then the normal function calling overheads are saved.
Example:
# include < iostream, h> inline int square (int a) { return (a*a) ; } int main () { int x, y; x = square (5); Cout << " square of 5 = "<< x << end1; y = square (10); Cout << " square of 10 = " << y << end1; return 0 ; }
Question 4.
Explain the friend functions & their characteristics.
Answer:
A function is a non – member function that is a friend of a class, The friend function is declared inside the class with the prefix friend.
- A friend function although not a member function, has the full access right to the private & protect members of the classes.
- A friend functions cannot be called using the object of the class. It can be invoked like any normal function.
- A friend function is declared by the class that is granting access. The friend declared can be placed anywhere in the class declaration. It is not affected by the access control keywords (public, private based protected)
- They are normal external functions that are given special access privileges.
- It cannot access the number variable directly & has to use an object- name member – name [Here is membership operator],
- The function is declaration with the keyword friend But while defining friend function it does not use either keyword friend or “::” operator.