reeju srivastava


{ City } bangalore
< Country > india
* Profession * se
User No # 5983
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 37
Users Marked my Answers as Wrong # 53
Questions / { reeju srivastava }
Questions Answers Category Views Company eMail




Answers / { reeju srivastava }

Question { HCL, 21483 }

What is the advantage of symbian OS devices comparing with
j2me and Brew OS devices???


Answer

Advantage of Symbian OS device over j2me and Brew OS
devices is H/W access. Symbain OS has best Hardware access
to the phone rather than j2me and Brew OS.

Is This Answer Correct ?    19 Yes 13 No

Question { 13967 }

What is a mixin class?


Answer

Mixin is a class that does not implement any method but are
in fact has only pure virtual methods. The implementor
decides the logic for these methods.

The term mixin were originally explored in the Lisp
language In C++, the term has been used to describe classes
in a particular (multiple) inheritance arrangement:

As superclasses of a single class that themselves have a
common virtual base
class .

We would like to specify an extension without pre-
determining what exactly it can extend. This is equivalent
to specifying a subclass while leaving its superclass as a
parameter to be determined later. The benefit is that a
single class can be used to express an incremental
extension, valid for a variety of classes.

Is This Answer Correct ?    3 Yes 19 No


Question { Lason, 25182 }

Is there any difference between dlearations int* x and int
*x? If so tell me the difference?


Answer

There is no diffrence between int* x and int *x.
but difference will come into picture when you use:

Case 1:
int* x,y,z;

and

Case2:
int *x,y,z;

in first case x,y and z are integer pointer, where as
un second case only x is integer pointer rest y and z is
integer. So its always a good practice not to put multiple
variable in single line.

Is This Answer Correct ?    15 Yes 21 No