| List I | List II | ||
| A | printf("%d", size of (3.14)); | I | 5 |
| B | Union A (intx, float y,} printf("%d", size of (A)); | II | 4 |
| C | Invalid ostruct B {char x; double y;}; C. 2 printf("%d", size of (B));pcode | III | 2 |
| D | printf("%d", size of ('1')); | IV | 8 |
Arrange the following data types available in C language according to their size (smallest to largest):
A. signed long int
B. long double
C. unsigned char
D. unsigned int
Choose the correct answer from the options given below:
What is the output of the following code fragment?
int x = 24;}
printf("%d\n", x);
printf("%3d %3d\n", x, x);}

Suppose in a multiprogramming environment, the following C program segment is executed. A process goes into the I/O queue whenever an I/O related operation is performed. Assume that there will always be a context switch whenever a process requests an I/O, and also whenever the process returns from an I/O. The number of times the process will enter the ready queue during its lifetime (not counting the time the process enters the ready queue when it is run initially) is _________ (Answer in integer).

Consider the following C program
The value printed by the given C program is _________ (Answer in integer).