Who become youngest gold medallist in shooting at Khelo India Youth Games 2019?
View Answer Report Error Discuss
What's the maximum hard drive size for FAT16-based Windows system?
Maximum hard drive size for FAT16-based windows system is 2GB.
View answer Workspace Report Error Discuss
What would be the output of the following program?
main()
{
float a = 0.7;
if ( a < 0.7f )
printf ( " C ");
else
Printf ( " C++ ");
}
C++
Highest Civilian Honour received by Sania Mirza is _________.
Who has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar"?
Abhinandan Varthaman who shot down the Pakistan's F-16 jet has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar".
Most medieval music was
Most medieval music was instrumental.
The Wheeler Island has been renamed as
char a[] = "Visual C++";
char *b = "Visual C++";
printf ("\n%d %d", sizeof (a), sizeof (b));
printf ("\n%d %d", sizeof (*a), sizeof (*b));
11 2
1 1