2.4 APUE07-10

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Including the initial parent process, the total number of the processes (in total) will be ____ after executing the code segment below.

if (pid=fork()) {fork();}

if (pid=fork()) {fork();}

if (pid=fork()) {fork();}


  • 8

  • 9

  • 16

  • 27

  • 32

27

2
New cards

Including the initial parent process, the total number of the processes (in total) will be ____ after executing the code segment below.

if (fork()) {fork();}


  • 1

  • 2

  • 3

  • 4

  • 0

3

3
New cards

After fork, the return value for the child is ___


  • -1

  • 0

  • 1

  • a new process ID for the child process

  • the process id of the parent process

0

4
New cards

By convention, UNIX System shells associate the file descriptor __ with the standard input of a process.


  • 0

  • 1

  • 2

  • 3

  • -1

0

5
New cards

After fork, the differences between the parent and child are ____.


  • The return values from fork

  • The process IDs

  • The different parent process IDs

  • All of the above

  • None of the above

All of the above

6
New cards

A file ___ is normally small non-negative integer that the kernel uses to identify the files accessed by a process.


  • buffer

  • table

  • descriptor

  • i-node

  • entry

descriptor

7
New cards

By convention, all shells in Unix open ___ file descriptors whenever a new program is run.


  • 0

  • 1

  • 2

  • 3

  • 4

  • as many as needed

3

8
New cards
<p>Consider a code segment for a pipe (e.g., to run "ls | wc") as we discussed in the classes, shown below.</p><p>What would it be the code segment using execlp for the "parent" process after setting the file descriptors for the pipe?</p><div data-type="horizontalRule"><hr></div><ul><li><p>execlp("ls","ls",(char *)0);</p></li><li><p>execlp("wc","wc",(char *)0)</p></li><li><p>execlp("ls","wc",(char *)0)</p></li><li><p>execlp("wc","ls",(char *)0)</p></li><li><p>execlp("ls | wc",(char *)0)</p></li></ul><p></p>

Consider a code segment for a pipe (e.g., to run "ls | wc") as we discussed in the classes, shown below.

What would it be the code segment using execlp for the "parent" process after setting the file descriptors for the pipe?


  • execlp("ls","ls",(char *)0);

  • execlp("wc","wc",(char *)0)

  • execlp("ls","wc",(char *)0)

  • execlp("wc","ls",(char *)0)

  • execlp("ls | wc",(char *)0)

execlp("ls","ls",(char *)0)

9
New cards

Signals provide a way of handling ___ events

asynchronous

10
New cards

If a process needs a child process to do some of its work, it will call ___ to make a copy of the current process.


  • dup

  • clone

  • thread

  • fork

  • dup

fork

11
New cards

After fork, the return value for the parent process is ___


  • -1

  • 0

  • 1

  • the child process id

  • the process id of the parent process

the child process id

12
New cards

What would be a proper way to set a signal handler (sig_int) for SIGINT?


  • SIGINT(sig_int);

  • sigint(SIGINT);

  • SIGINT(signal, sig_int);

  • signal(SIGINT, sig_int);

  • signal(sig_int, SIGINT);

signal(SIGINT, sig_int);

13
New cards

The new process created by fork is called the child process. This function is called once but returns ___.


  • none

  • once

  • twice

  • three times

  • as many as needed

twice

14
New cards

Given fork program as shown below, what would be the total number of processes at the end including the process running this program.

for (i=1; i < nprocs; i++) { childpid = fork(); }

When nprocs = 3, then the total number of processes after this code will be ____


  • 1

  • 2

  • 4

  • 8

  • 16

4

15
New cards

For convenience, ___ call is used to execute a command string (e.g., "ls -la | wc") within a program.


  • thread

  • process

  • pipe

  • fork

  • system

system

16
New cards

Including the initial parent process, the total number of the processes (in total) will be ____ after executing the code segment below.

fork(); fork(); fork();


  • 1

  • 4

  • 6

  • 8

  • 16

8

17
New cards

Including the initial parent process, the total number of the processes (in total) will be ____ after executing the code segment below.

if (fork() < 0) {fork();}


  • 1

  • 2

  • 3

  • 4

  • 0

2

18
New cards

The new file descriptor returned by dup is guaranteed to be the ___ numbered available file descriptor


  • lowest

  • highest

  • fixed

  • stack

  • arbitrary

lowest

19
New cards

Including the initial parent process, the total number of the processes (in total) will be ____ after executing the code segment below.

if (pid=fork() && pid2 = fork()) {fork();}
if (pid=fork() && pid2 = fork()) {fork();}
if (pid=fork() && pid2 = fork()) {fork();}


  • 16

  • 27

  • 32

  • 48

  • 64

64

20
New cards

Which API call completely replaces the current process with a new program (text, data, heap, stack)?


  • fork

  • system

  • exec

exec

21
New cards

The ____ contains all the information about the file: type, permissions, size, data pointers, etc.


  • v-node

  • i-node

  • file descriptor

  • superblock

  • directory

i-node

22
New cards
<p>For a pipe (ls | wc), what does the parent do after fork but before exec?</p><div data-type="horizontalRule"><hr></div><ul><li><p><span>close(pfd[0]); dup2(pfd[1], 1); close(pfd[1]);</span></p></li><li><p><span>close(pfd[1]); dup2(pfd[0], 0); close(pfd[0]);</span></p></li><li><p><span>close(pfd[0]); dup2(pfd[0], 1); close(pfd[1]);</span></p></li><li><p><span>close(pfd[1]); dup2(pfd[1], 0); close(pfd[0]);</span></p></li></ul><p></p>

For a pipe (ls | wc), what does the parent do after fork but before exec?


  • close(pfd[0]); dup2(pfd[1], 1); close(pfd[1]);

  • close(pfd[1]); dup2(pfd[0], 0); close(pfd[0]);

  • close(pfd[0]); dup2(pfd[0], 1); close(pfd[1]);

  • close(pfd[1]); dup2(pfd[1], 0); close(pfd[0]);

close(pfd[0]); dup2(pfd[1], 1); close(pfd[1]);