Why u change company?
Answers were Sorted based on User's Feedback
Answer / kesavan j
good company,standard,higer salary. J Kesavan
| Is This Answer Correct ? | 1 Yes | 11 No |
Answer / yathirajulu
ya, i develop my fimalar frameworks Ajax,Jsf & Hibernate in
this company, as well as my friend suggested to join in this
orgnazation, if u get a chance.
| Is This Answer Correct ? | 0 Yes | 14 No |
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?.
for example A,B,C,D are class all the 4 class contain one method who() but the method who() implementaion is differnet among each class. the relation among the 4 class are A is base class and is inherited by B and C.and from this two B and C where D is inherited. the question is i want to display the output who() method in all the classes(A,B,C,D)the output of who() method is diferrent amond all the class(A,B,C,D) ------A------ virtuval who(print a) override | | who(print b) B C override who(print c) | | -------D------ override who(print d)
when my application exe is running nad i don't want to create another exe what should i do
What do you mean by overloading?
what is virtual function?
26 Answers Aspire, HP, Infosys, RoboSoft, TCS,
#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; }
What is abstraction in oops with example?
WHAT IS THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.
What do you mean by inline function?
The expansion of GNU
How do you explain polymorphism?
What is the diamond problem in inheritance?