Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??
1 3108write a programe to calculate the simple intrest and compund intrest using by function overlading
1209#include
#include
#include
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).
1204
What is encapsulation and abstraction? How are they implemented in C++?
How Do you Code Composition and Aggregation in C++ ?
What exactly is polymorphism?
What is object in oops?
What is class and object in oops?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
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
What is a class in oop?
Why is oop better than procedural?
How does polymorphism work?
How long to learn object oriented programming?
Why is static class not inherited?
What is polymorphism and its types?
What is for loop and its syntax?
What is data binding in oops?