Consider the following ANSI C program.
#include <stdio.h>
int main()
{
int i, j, count;
count = 0;
i = 0;
for (j = -3; j <= 3; j++)
{
if ((j >= 0) && (i++))
count = count + j;
}
count = count + i;
printf("%d", count);
return 0;
} Which one of the following options is correct?
Step 1: Initial values.
Initially,
\[
i = 0, count = 0
\]
The loop runs for \(j = -3\) to \(j = 3\).
Step 2: Understanding the if-condition.
The condition is:
\[
(j \ge 0) \ && \ (i++)
\]
The logical AND operator uses short-circuit evaluation. Hence, \(i++\) is executed only when \(j \ge 0\).
Step 3: Loop-wise evaluation.
For \(j = -3, -2, -1\):
\[
j \ge 0 \text{ is false } $\Rightarrow$ i++ \text{ is NOT executed}
\]
So, \(i = 0\), \(count = 0\).
For \(j = 0\):
\[
j \ge 0 \text{ is true, } i++ = 0 \ (\text{false})
\]
Condition fails, but \(i\) becomes \(1\).
\(count\) unchanged.
For \(j = 1\):
\[
i++ = 1 \ (\text{true})
\]
Condition true, so:
\[
count = count + 1 = 1, i = 2
\]
For \(j = 2\):
\[
i++ = 2 \ (\text{true})
\]
\[
count = 1 + 2 = 3, i = 3
\]
For \(j = 3\):
\[
i++ = 3 \ (\text{true})
\]
\[
count = 3 + 3 = 6, i = 4
\]
Step 4: Final computation.
After the loop:
\[
count = count + i = 6 + 4 = 10
\]
Step 5: Conclusion.
The program compiles successfully and prints:
\[
10
\]
Final Answer: (B)
Consider the following C program
The value printed by the given C program is __________ (Answer in integer).
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).

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:
Consider the following process information for Shortest Remaining Time First (SRTF) scheduling:
\[ \begin{array}{|c|c|c|} \hline \textbf{Process} & \textbf{Arrival Time (AT)} & \textbf{Burst Time (BT)} \\ \hline P1 & 0 & 10 \\ P2 & 1 & 13 \\ P3 & 2 & 6 \\ P4 & 8 & 9 \\ \hline \end{array} \]Find the turnaround time for each process.
In a 4-bit ripple counter, if the period of the waveform at the last flip-flop is 64 microseconds, then the frequency of the ripple counter in kHz is ______________. {(Answer in integer)}
Consider the following C code segment:
int x = 126, y = 105;
do {
if (x > y)
x = x - y;
else
y = y - x;
} while (x != y);
printf("%d", x);
The output of the given C code segment is ____________. (Answer in integer)
The following two signed 2’s complement numbers (multiplicand \( M \) and multiplier \( Q \)) are being multiplied using Booth’s algorithm:
| Multiplicand (\( M \)) | Multiplier (\( Q \)) |
|---|---|
| 1100 1101 1110 1101 | 1010 0100 1010 1010 |
The total number of addition and subtraction operations to be performed is __________. (Answer in integer)
The maximum value of \(x\) such that the edge between the nodes B and C is included in every minimum spanning tree of the given graph is __________ (answer in integer).
The value printed by the given C program is __________ (Answer in integer).