EASY
HSSC Clerk
IMPORTANT
Earn 100

In C language, a hexadecimal number is represented by writing
(a)
(b)
(c)
(d)h
(e)None of these

50% studentsanswered this correctly

Important Questions on Programming in C/C++
MEDIUM
HSSC Clerk
IMPORTANT
Value of ixj, if i,j are integer type and ix long type would be

MEDIUM
HSSC Clerk
IMPORTANT
Which classes allow primitive types to be accessed as objects?

EASY
HSSC Clerk
IMPORTANT
Each pass through a loop is called a/an _____.

MEDIUM
HSSC Clerk
IMPORTANT
Which of the following is not recommended in a header file?

MEDIUM
HSSC Clerk
IMPORTANT
What's wrong?

HARD
HSSC Clerk
IMPORTANT
Which of the STL containers store the elements contiguously (in adjacent memory locations)?

MEDIUM
HSSC Clerk
IMPORTANT
What will be the range of the printed numbers in the following program?
#include<iostrearn.h>
void main ()
{
int n ;
do
{
cout <<n<<"\t";
n++;
} while :
cout <<endl;
}

MEDIUM
HSSC Clerk
IMPORTANT
What's wrong?
while
