edited by
1,055 views
1 votes
1 votes

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}$$

  1. $(a)-(iii) \: (b)-(iv) \: (c)-(i) \: d-(ii)$
  2. $(a)-(iv) \: (b)-(iii) \: (c)-(i) \: d-(ii)$
  3. $(a)-(iv) \: (b)-(iii) \: (c)-(ii) \: d-(i)$
  4. $(a)-(iii) \: (b)-(iv) \: (c)-(ii) \: d-(i)$
edited by

2 Answers

0 votes
0 votes

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()

0 votes
0 votes

Option (A) is correct.

  1. In UNIX Wait() is used to WaitForSingleObject() .
  2. In UNIX Fork() is used for create-process().
  3. In UNIX Create() is used for CreateFile().
  4. In UNIX Close() is used for CloseHandle()
Answer:

Related questions

1 votes
1 votes
3 answers
1
Arjun asked Nov 5, 2017
870 views
Which of the following routing technique / techniques is/are used in distributed systems?Fixed RoutingVirtual RoutingDynamic Routing(a) only(a) and (b) only(c) onlyAll (a...
1 votes
1 votes
2 answers
3
Arjun asked Nov 5, 2017
957 views
The Sigmoid activation function $f(t)$ is defined as$\dfrac{1}{\text{exp} (t) + \text{exp} (-t)}$$t \text{ exp}(-t)$$\dfrac{1}{1+ \text{exp} (t)}$$\dfrac{1}{1+ \text{exp...