Top 100 Operating System Interview Questions

Table of Contents

Operating System Interview Questions

Hey learners here we share the top Operating System Interview Questions with answers, these Coding Interview Questions and these operating system viva questions are helps to crack your international Jobs, here we the team live learns presenting for you the viva questions for operating system.

Operating System Interview Questions
Operating System Interview Questions

Study skills

OS Interview Questions

1. Which one of the following errors will be handled by the operating system?

a) power failure

b) lack of paper in the printer

c) connection failure in the network

d) all of the mentioned

Answer: d

2. What is the main function of the command interpreter?

a) to get and execute the next user-specified command

b) to provide the interface between the API and application program

c) to handle the files in the operating system

d) none of the mentioned

Answer: a

3. In Operating Systems, which of the following is/are CPU scheduling algorithms?

a) Round Robin

b) Shortest Job First

c) Priority

d) All of the mentioned

Answer: d

4. If a process fails, most operating systems write the error information to a ______

a) log file

b) another running process

c) new file

d) none of the mentioned

Answer: a

5. Which facility dynamically adds probes to a running system, both in user processes and in the kernel?

a) DTrace

b) DLocate

c) DMap

d) DAdd

Answer: a

6. Which one of the following is not a real time operating system?

a) VxWorks

b) QNX

c) RTLinux

d) Palm OS

Answer: d

7. The OS X has ____________

a) monolithic kernel

b) hybrid kernel

c) microkernel

d) monolithic kernel with modules

Answer: b

8. What is an operating system?

a) collection of programs that manages hardware resources

b) system service provider to the application programs

c) interface between the hardware and application programs

d) all of the mentioned

Answer: d

9. To access the services of operating system, the interface is provided by the ___________

a) System calls

b) API

c) Library

d) Assembly instructions

Answer: a

wipro hr interview questions for freshers 2021

10. Which one of the following is not true?

a) kernel is the program that constitutes the central core of the operating system

b) kernel is the first part of operating system to load into memory during booting

c) kernel is made of various modules which can not be loaded in running operating system

d) kernel remains in the memory during the entire computer session

Answer: c

11. What is a long-term scheduler?

a) It selects processes which have to be brought into the ready queue

b) It selects processes which have to be executed next and allocates CPU

c) It selects processes which heave to remove from memory by swapping

d) None of the mentioned

Answer: a

12. If all processes I/O bound, the ready queue will almost always be ______ and the Short term Scheduler will have a ______ to do.

a) full, little

b) full, lot

c) empty, little

d) empty, lot

Answer: c

13. What is a medium-term scheduler?

a) It selects which process has to be brought into the ready queue

b) It selects which process has to be executed next and allocates CPU

c) It selects which process to remove from memory by swapping

d) None of the mentioned

Answer: c

14. What is a short-term scheduler?

a) It selects which process has to be brought into the ready queue

b) It selects which process has to be executed next and allocates CPU

c) It selects which process to remove from memory by swapping

d) None of the mentioned

Answer: b

15. The primary distinction between the short term scheduler and the long term scheduler is __________

a) The length of their queues

b) The type of processes they schedule

c) The frequency of their execution

d) None of the mentioned

Answer: c

Wipro interview questions and answers for freshers 2021

16. The only state transition that is initiated by the user process itself is __________

a) block

b) wakeup

c) dispatch

d) none of the mentioned

Answer: a

17. In a time-sharing operating system, when the time slot given to a process is completed, the process goes from the running state to the __________

a) Blocked state

b) Ready state

c) Suspended state

d) Terminated state

Answer: b

18. In a multiprogramming environment __________

a) the processor executes more than one process at a time

b) the programs are developed by more than one person

c) more than one process resides in the memory

d) a single user can execute many programs at the same time

Answer: c

19. Suppose that a process is in “Blocked” state waiting for some I/O service. When the service is completed, it goes to the __________

a) Running state

b) Ready state

c) Suspended state

d) Terminated state

Answer: b

20. The context of a process in the PCB of a process does not contain __________

a) the value of the CPU registers

b) the process state

c) memory-management information

d) context switch time

Answer: d

Wipro interview questions

Operating System
Operating System

21. If a process is executing in its critical section, then no other processes can be executing in their critical section. What is this condition called?

a) mutual exclusion

b) critical exclusion

c) synchronous exclusion

d) asynchronous exclusion

Answer: a

22. Which one of the following is a synchronization tool?

a) thread

b) pipe

c) semaphore

d) socket

Answer: c

23. A semaphore is a shared integer variable __________

a) that can not drop below zero

b) that can not be more than zero

c) that can not drop below one

d) that can not be more than one

Answer: a

24. Mutual exclusion can be provided by the __________

a) mutex locks

b) binary semaphores

c) both mutex locks and binary semaphores

d) none of the mentioned

Answer: c

25. When high priority task is indirectly preempted by medium priority task effectively inverting the relative priority of the two tasks, the scenario is called __________

a) priority inversion

b) priority removal

c) priority exchange

d) priority modification

Answer: a

Python interview questions

26. Process synchronization can be done on __________

a) hardware level

b) software level

c) both hardware and software level

d) none of the mentioned

Answer: c

27. A monitor is a module that encapsulates __________

a) shared data structures

b) procedures that operate on shared data structure

c) synchronization between concurrent procedure invocation

d) all of the mentioned

Answer: d

28. To enable a process to wait within the monitor __________

a) a condition variable must be declared as condition

b) condition variables must be used as boolean objects

c) semaphore must be used

d) all of the mentioned

Answer: a

29. Which process can be affected by other processes executing in the system?

a) cooperating process

b) child process

c) parent process

d) init process

Answer: a

30. When several processes access the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place is called ________

a) dynamic condition

b) race condition

c) essential condition

d) critical condition

Answer: b

3 thoughts on “Top 100 Operating System Interview Questions”

Leave a Comment