Q: Can any function call itself?
Solution: The correct answer is: Yes
Solution: The correct answer is: 111011
Q: Which operator has highest precedence?
Solution: The correct answer is: ()
Q: Choose the option that contains only valid hexadecimal integers.
Solution: The correct answer is: H9F, HFF, HAA
Q: A sorting algorithm traverses through a list, comparing adjacent elements and switching them under certain conditions. What is this sorting algorithm called?
Solution: The correct answer is: bubble sort
Solution: The correct answer is: Compilation Error
Solution: The correct answer is: 10
Q: What is the value of a in the below program?
int main()
{
int a, b=20;
a = 90/b;
return 0;
}Solution: The correct answer is: 4
Q: In the following sorting procedures, which one will be the slowest for any given array?
Solution: The correct answer is: Bubble sort
Q: What is the output of below program?
class base
{
public:
base()
{
cout<<"BCon";
}
~base()
{
cout<<"BDest ";
}
};
class derived: public base
{
public:
derived()
{ cout<<"DCon ";
}
~derived()
{ cout<<"DDest ";
}
};
int main()
{
derived object;
return 0;
}Solution: The correct answer is: BCon DCon DDest BDest
| You Have Score    | /10 |