Which of the following is not a logical operator?
Which exception is thrown by dynamic_cast?
What are the data elements in a structure called?
Which of the following function must use reference.
What will be the output of the following C++ code?
#include <stdio.h>
#include <math.h>
int main()
{
printf("%.2f", pow(7.0, 3));
return 0;
}
Predict the output of the following code:
int main()
{
int x,a=10;
x= a==10?printf("hait"):printf("hellon");
printf("%d",x);
}
How are constants declared in programming?
What will be the output of the following C program?
#include "stdio.h"
int main()
{
printf("abekus.co");
return 0;
}
To measure Time complexity of an algorithm Big O notation is used which:
Which of the following statement is correct?