What is the value of the bool?
bool is_int(789.54)
i=5;
i=(++i)/(i++);
printf("%d",i);
What is the output of the above program?
Which of the following is a valid identifier in C++?
What will be the output of the following C++ code that writes to a text file?
Which of the following is not a type of inheritance?
Which of the following can be used to determine the size of a type or object?
Is the following statement True or False?
A character set is a set of alphabets,letters and some special characters that are valid in C language.
Is the following statement True or False?
If two pointers p and q of the same type point to the same address, then p == q must evaluate to true.
#include <iostream>
#include <algorithm>
using namespace std;
int main ()
{
cout << min(2, 1) << ' ';
cout << min('m','m') << '\n';
return 0;
}
What does polymorphism in OOPs mean?