How many types of comments are there in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between a constructor and a destructor in c++.
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
Why the usage of pointers in C++ is not recommended ?
When are exception objects created?
write a program that a 5 digit number and calculates 2 power that number and prints it.
2 Answers Vimukti Technologies,
which operator is used for performing an exponential operation a) > b) ^ c) none
What is a far pointer? where we use it?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
what is polymorphism?
Define pointers?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;