Answer Posted / anjana
FUNCTION OVER LOADING:
*two or more function having same name they are said to be function over loading
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the three main types of variables?
What does I oop mean?
What is multilevel inheritance in oop?
What is abstraction in oops?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What is abstraction encapsulation?
What is polymorphism explain its types?
Why do while loop is used?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
How do you answer polymorphism?
Write a program to sort the number with different sorts in one program ??
What is class and object in oops?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What is the purpose of enum?
What is encapsulation with real life example?