You are on page 1of 2

Sl No Subject

Question

Answer1 Answer2 Answer3


Non Pree
mptive
Preempti Both (1)
ve check and (2)
check

Operating
11 Systems

In a Win 95 operating system, which of the


following is used in multitasking?

Operating
12 Systems
Operating
13 Systems
Operating
14 Systems

The very first process created by the kernel


that runs till the kernel process halts is:
init
In MS Windows, the keystroke and mouse
entry are interpreted as:
Interrupt
Which of the following processes dies out but
still waits ?
Exit

15 C/C++

What is the output of the following program?


main()
{ int i=0;
for(i=0;i<20;i++)
{
switch(i){
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default i+=4;
break;}
printf("%d,",i);
}
}
0,5,9,13,1
7
5,9,13,17 12,17,22
In this c++ program segment, what is the
Output of:
void main()
{
int var1 = 10;
cout<<var1<<" "<<var1++<<" "<<++var1<<"
"<<var1++;
}

18 C/C++

10 10 12
12

getty

Both (1)
and (2)

Message Event
Wakeup

Zombie

10 11 12 13 12 12
13
10

Answer4 CorrectAnswer Difficulty Level


Neither
(1) nor (2)

SubmittedDate

Sleep

16,21

12 13 10
10

Neither
(1) nor (2)
None of
the above

You might also like