difference between overloading and overridding
Answers were Sorted based on User's Feedback
Answer / priyanka agrawal
In overloading functions will have same name but different
parameters lists but in overloading functions must have
same name and same signature.
| Is This Answer Correct ? | 1 Yes | 4 No |
How is class defined?
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).
why to use template classes in c++?
Is html an oop?
Can we create object of interface?
What is a superclass in oop?
Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
how to write a java program for an output ****0 ***01 **012 *0123 01234
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
What are two types of polymorphism?
hi all..i want to know oops concepts clearly can any1 explain??
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }