Unit 6 - Practice Quiz

CSE316 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which of the following is NOT a standard file attribute maintained by the operating system?

A. Identifier
B. Name
C. Location
D. Current file contents

2 In which file access method is information in the file processed in order, one record after the other?

A. Indexed Access
B. Direct Access
C. Relative Access
D. Sequential Access

3 Which directory structure allows a user to create their own subdirectories and organizes files into a hierarchy?

A. Flat directory
B. Tree-structured directory
C. Hash-structured directory
D. Single-level directory

4 What is the specific operation called when a file system is attached to an existing directory structure?

A. Mounting
B. Formatting
C. Linking
D. Spooling

5 Which allocation method suffers from external fragmentation?

A. Indexed allocation
B. Hashed allocation
C. Linked allocation
D. Contiguous allocation

6 In Linked Allocation, what is the major disadvantage regarding file access?

A. It uses too much disk space for pointers
B. It creates external fragmentation
C. It requires a File Allocation Table (FAT)
D. It only supports efficient sequential access

7 Which allocation method solves the external fragmentation problem and supports efficient direct access by bringing all pointers together into one block?

A. Linked allocation
B. Contiguous allocation
C. Indexed allocation
D. Dynamic allocation

8 A Bit Vector is used for which purpose in file management?

A. File compression
B. Directory implementation
C. Free-space management
D. File protection

9 Which directory implementation method requires a linear search to find a file?

A. Hash Table
B. Indexed List
C. Linear List
D. B+ Tree

10 What is the primary problem with using a Hash Table for directory implementation?

A. Linear search time
B. Collisions
C. External fragmentation
D. Inability to store metadata

11 Which of the following is a 'Dedicated Device'?

A. CPU
B. Main Memory
C. Hard Disk Drive
D. Tape Drive

12 What technique allows a dedicated device (like a printer) to appear as a shared device?

A. Caching
B. Swapping
C. Polling
D. Spooling

13 In the context of device management, which devices transfer data one character at a time?

A. Block devices
B. Network devices
C. Character devices
D. Storage devices

14 What is the time taken for the disk arm to move the heads to the cylinder containing the desired sector called?

A. Seek time
B. Rotational latency
C. Transfer time
D. Response time

15 Which disk scheduling algorithm selects the request with the least seek time from the current head position?

A. SSTF
B. C-LOOK
C. SCAN
D. FCFS

16 What is a major disadvantage of the SSTF disk scheduling algorithm?

A. It is slower than FCFS
B. It may cause starvation of some requests
C. It causes head crashing
D. It is difficult to implement

17 Which disk scheduling algorithm is also known as the 'Elevator Algorithm'?

A. SSTF
B. C-SCAN
C. SCAN
D. FCFS

18 In C-SCAN disk scheduling, what happens when the head reaches the end of the disk?

A. It reverses direction immediately and services requests
B. It stops and waits for new requests
C. It returns to the beginning without servicing requests on the return trip
D. It randomly jumps to a new cylinder

19 What is a Direct Access Storage Device (DASD)?

A. Magnetic Disk
B. Magnetic Tape
C. Keyboard
D. Punch Card

20 Which hardware component is responsible for handling the details of specific device control and data transfer, offloading this work from the main CPU?

A. System Bus
B. Cache
C. I/O Channel / IOP
D. ALU

21 What is the primary purpose of Inter Process Communication (IPC)?

A. To manage disk space allocation
B. To increase the CPU clock speed
C. To allow processes to exchange data and synchronize actions
D. To prevent processes from running simultaneously

22 Which of the following is NOT a standard IPC mechanism?

A. Message Passing
B. Fragmentation
C. Shared Memory
D. Pipes

23 In the context of IPC, what is a 'Race Condition'?

A. When the outcome of execution depends on the specific order in which access takes place
B. When two processes try to read the same file
C. When a process runs faster than the CPU
D. When two processes communicate via a pipe

24 What is a fundamental characteristic of a standard (anonymous) Pipe?

A. It is unidirectional
B. It allows communication between unrelated processes
C. It persists after the creating process terminates
D. It is bidirectional by default

25 What limitation applies to standard (anonymous) pipes?

A. They store data permanently on disk
B. They require a network connection
C. They can only be used by processes with a common ancestor (parent-child)
D. They are slower than message queues

26 The popen() function in C library is used to:

A. Create a new thread
B. Allocate shared memory
C. Create a pipe, fork a child, and invoke a shell
D. Open a file for direct access

27 Which function is used to close a stream opened by popen()?

A. fclose()
B. exit()
C. close()
D. pclose()

28 Which IPC method is generally considered the fastest?

A. Shared Memory
B. Message Queues
C. Pipes
D. Sockets

29 What is a mandatory requirement when using Shared Memory?

A. Network protocols
B. Serial access
C. Synchronization mechanism
D. Disk mounting

30 What is another name for a Named Pipe?

A. LIFO
B. FIFO
C. Signal
D. Socket

31 How does a FIFO differ from a standard Pipe?

A. FIFO can only be used by a parent and child
B. FIFO is faster
C. FIFO allows bidirectional communication only
D. FIFO exists as a device special file in the file system

32 Which system call is typically used to create a FIFO?

A. pipe()
B. msgget()
C. mkfifo()
D. shmget()

33 In a Message Queue, how are messages typically retrieved?

A. By message size
B. By message type or priority
C. Strictly FIFO only
D. Randomly

34 Which protection mechanism involves associating a list of users and their access rights with each file?

A. Password protection
B. Capability Lists
C. Access Control List (ACL)
D. Key locks

35 In an Acyclic-Graph Directory structure, what is the main benefit over a Tree structure?

A. No cycle detection required
B. Ability to share files and subdirectories
C. Smaller size
D. Faster searching

36 What happens to a file in a 'DAG' directory structure if one of the links to it is deleted?

A. The file becomes hidden
B. The file remains if other links exist
C. The file system crashes
D. The file is deleted immediately

37 Which file access pattern is best suited for CD-ROMs?

A. Read-Write
B. Random Access
C. Write-only
D. Sequential Access

38 Group 'world' or 'others' in Unix file protection refers to:

A. Users in the same group as the owner
B. All users in the system other than owner and group
C. System Administrators only
D. The owner of the file

39 What does the acronym NFS stand for?

A. Network File System
B. New File System
C. Network Folder Service
D. Non-fragmented System

40 In Free-Space Management, what is a disadvantage of the Linked List method?

A. It is hard to implement
B. It wastes space
C. It causes internal fragmentation
D. It requires traversing the list to find multiple free blocks

41 Which device type is strictly sequential access?

A. Solid State Drive
B. Flash Drive
C. Magnetic Tape
D. Magnetic Disk

42 What is the role of the Device Controller?

A. To compile code
B. To interface between the OS and the device hardware
C. To schedule processes
D. To manage user logins

43 Blocking I/O means:

A. The I/O device is blocked
B. The kernel crashes
C. The process is suspended until I/O is completed
D. The process continues while I/O executes

44 Which IPC method utilizes a kernel-managed linked list of messages?

A. Semaphores
B. Shared Memory
C. Pipes
D. Message Queues

45 In File Management, what is an Absolute Path Name?

A. Path starting from the root directory
B. Path of a hidden file
C. Path starting from the current directory
D. Path containing no spaces

46 What does the open() system call typically return?

A. The file content
B. A file handle or file descriptor
C. True or False
D. The file size

47 Which disk scheduling algorithm is theoretically optimal but impossible to implement without knowing future requests?

A. SCAN
B. Look
C. Shortest Seek Time First
D. FCFS

48 With respect to Directory Implementation, what is a Hash Table bucket?

A. A physical storage unit
B. A type of file
C. A list of entries that hash to the same value
D. A trash can for deleted files

49 The logic that prevents a user from reading another user's file is handled by:

A. Disk Scheduling
B. File Allocation Table
C. File Protection Mechanism
D. Directory Structure

50 What is the main function of a Control Unit in I/O systems?

A. Execute arithmetic operations
B. Decode instructions and generate control signals for the device
C. Store data permanently
D. Manage RAM