• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

OS Input Output Systems

Question 1

Which of the following is major part of time taken when accessing data on the disk?
  • Settle time
  • Rotational latency
  • Seek time
  • Waiting time

Question 2

We describe a protocol of input device communication below. a. Each device has a distinct address b. The bus controller scans each device in sequence of increasing address value to determine if the entity wishes to communicate. c. The device ready to communicate leaves it data in IO register. d. The data is picked up and the controller moves to step-a above. Identify the form of communication best describes the IO mode amongst the following: Source: nptel
  • Programmed mode of data transfer
  • DMA
  • Interrupt mode
  • Polling

Question 3

From amongst the following given scenarios determine the right one to justify interrupt mode of data-transfer: Source: nptel
  • Bulk transfer of several kilo-byte
  • Moderately large data transfer but more that 1 KB
  • Short events like mouse action
  • Key board inputs

Question 4

Normally user programs are prevented from handling I/O directly by I/O instructions in them. For CPUs having explicit I/O instructions, such I/O protection is ensured by having the I/O instructions privileged. In a CPU with memory mapped I/O, there is no explicit I/O instruction. Which one of the following is true for a CPU with memory mapped I/O? (GATE CS 2005)
  • I/O protection is ensured by operating system routine(s)
  • I/O protection is ensured by a hardware trap
  • I/O protection is ensured during system configuration
  • I/O protection is not possible

Question 5

Put the following disk scheduling policies results in minimum amount of head movement.
  • FCFS
  • Circular SCAN
  • Elevator

Question 6

Consider a hard disk with 16 recording surfaces (0-15) having 16384 cylinders (0-16383) and each cylinder contains 64 sectors (0-63). Data storage capacity in each sector is 512 bytes. Data are organized cylinder-wise and the addressing format is . A file of size 42797 KB is stored in the disk and the starting disk location of the file is <1200, 9, 40>. What is the cylinder number of the last sector of the file, if it is stored in a contiguous manner?
  • 1281
  • 1282
  • 1283
  • 1284

Question 7

A file system with 300 GByte disk uses a file descriptor with 8 direct block addresses, 1 indirect block address and 1 doubly indirect block address. The size of each disk block is 128 Bytes and the size of each disk block address is 8 Bytes. The maximum possible file size in this file system is

  • 3 Kbytes

  • 35 Kbytes

  • 280 Bytes

  • Dependent on the size of the disk

Question 8

A computer handles several interrupt sources of which the following are relevant for this question.

. Interrupt from CPU temperature sensor (raises interrupt if 
  CPU temperature is too high)
. Interrupt from Mouse(raises interrupt if the mouse is moved 
  or a button is pressed)
. Interrupt from Keyboard(raises interrupt when a key is 
  pressed or released)
. Interrupt from Hard Disk(raises interrupt when a disk 
  read is completed)
Which one of these will be handled at the HIGHEST priority?
  • Interrupt from Hard Disk
  • Interrupt from Mouse
  • Interrupt from Keyboard
  • Interrupt from CPU temperature sensor

Question 9

An application loads 100 libraries at start-up. Loading each library requires exactly one disk access. The seek time of the disk to a random location is given as 10 ms. Rotational speed of disk is 6000 rpm. If all 100 libraries are loaded from random locations on the disk, how long does it take to load all libraries? (The time to transfer data from the disk block once the head has been positioned at the start of the block may be neglected)
  • 0.50 s
  • 1.50 s
  • 1.25 s
  • 1.00 s

Question 10

A CPU generally handles an interrupt by executing an interrupt service routine
  • As soon as an interrupt is raised
  • By checking the interrupt register at the end of fetch cycle.
  • By checking the interrupt register after finishing the execution of the current instruction.
  • By checking the interrupt register at fixed time intervals.

There are 76 questions to complete.

Last Updated :
Take a part in the ongoing discussion