Match the following WINDOWS system calls and UNIX system calls with reference to process control and File manipulation. $$\begin{array}{llll} & \textbf{Windows} & & \textbf{UNIX} \\ (a) & \text{Create – process ( )} & (i) & \text{Open ( )} \\ (b) & \text{WaitForSingleObject ( )} & (ii) & \text{Close ( )} \\ (c) & \text{CreateFile ( )} & (iii) & \text{Fork ( )} \\ (d) & \text{CloseHandle ( )} & (iv) & \text{Wait ( )} \end{array}$$
Ans: (1) (a)-(iii) (b)-(iv) (c)-(i) (d)-(ii)
Windows UNIX
(a) Create - process () (iii) Fork()
(b) WaitForSingleObject () (iv) Wait()
(c) CreateFile () (i) Open()
(d) CloseHandle () (ii) Close()
Option (A) is correct.