...
August 29, 2024

OOPS

Question 66 Which of the following is not correct (in C++) ? A Class templates and function templates are instantiated in the same way B Class […]
August 29, 2024

OOPS

Question 65 ‘ptrdata’ is a pointer to a data type. The expression *ptrdata++ is evaluated as (in C++) : A *(ptrdata++) B (*ptrdata)++ C * (ptrdata) […]
August 29, 2024

OOPS

Question 68 The associativity of which of the following operators is Left to Right, in C++ ? A Unary Operator B Logical not C Array element […]
August 29, 2024

OOPS

Question 88 Consider the following recursive Java function f that takes two long arguments and returns a float value : public static float f(long m, long […]