CS 3377 Dollinger UNIX Exam 2

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

1/50

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.

51 Terms

1
New cards

when a program starts, what are the three standard file descriptors that are open and ready for use? (only need to know that there are three)

1. stdin

2. stdout

3. stderr

2
New cards

gives you a freopen, know what it does

- reopens a file with a different mode

- freopen works on streams

3
New cards

what are the four areas in the c++ programming memory model?

1. stack

2. heap

3. bss

4. uninitialized data area

4
New cards

which one of the four segments of the program lasts the lifetime of the program unless your application deletes it?

heap

5
New cards

in the c++ program memory model, what contains variables that are explicitly initialized in the program?

initialized data segment

6
New cards

in the c++ programming memory model, data in this memory area is initialized by the kernel to arithmetic 0 until the programs stops executing

uninitialized data segment

7
New cards

in the c++ programming memory model, what memory area stores information that is saved each time a function is called? and each time a function is called, the address the word will return to any arguments.

stack

8
New cards

in the c++ memory model, what's the memory area that does dynamic memory allocation?

heap

9
New cards

what part of the memory consists of the machine instructions that the cpu executes?

text segment

10
New cards

what's stored in the BSS (know what the bss is -> text segment?)

static variables

11
New cards

where's dynamic memory done?

heap

12
New cards

in the c++ programming memory model, the uninitialized memory area variables have a lifetime of the program. (t/f)

true

13
New cards

after a fork, identify the differences b/t a parent and a child

both parent and child have different processes and different return values(?) check this

14
New cards

what's the return value of a fork for the child?

0

15
New cards

what does a fork return if it fails?

-1

16
New cards

including the initial parent process, the total number of parent processes after a fork executes will be how many?

2

17
New cards

gives you programs using forks and couts, will ask you how many lines are outputted.

2

18
New cards

after you execute a fork, and you get the pid and cout it, what value will be displayed?

you don't know (trick question)

19
New cards

which of the following is NOT true about a fork?

forks split the input data into multiple parts

20
New cards

after a fork operation, the pid of the parent process is always 0 (t/f)

false

21
New cards

what allows you to make more than one file descriptor entry point to the same file entry?

dup() -> not an option, so fork?

22
New cards

for pipes, what's the index used to read?

fds 0

23
New cards

for pipes, what's the index used to write?

fds 1

24
New cards

what is NOT true about pipes?

the pipe API is used to create a pipe between 2 programs

25
New cards

can you do pipes between two existing processes? (y/n)

no

26
New cards

when we use name pipes, the correct open will block until the corresponding open will open the pipe (t/f)

true

27
New cards

when using name pipes, both the client and the server must use known name pipes to establish communication (t/f)

true

28
New cards

what's the sequence of operations for doing pipes?

(CMCO)

1. create

2. mkfifo

3. chmod

4. open

29
New cards

what's the correct order of operations in a client-server?

(SCRW)

1. socket

2. connect

3. read

4. write

30
New cards

what's the correct order of operations in a socket server?

(SBLARW)

1. socket

2. bind

3. listen

4. accept

5. read/write

31
New cards

for the socket client, what do both programs must have to know to communicate?

port number

32
New cards

for a socket client and server, both programs must know the port address to communicate with each other (t/f)

true

33
New cards

which api is NOT used with a client socket?

a. listen

b. socket

c. read

d. connect

e. write

listen

34
New cards

what is the interface of the ipc mechanism that can occur between systems across the network?

sockets

35
New cards

on the server side, is there a connect operation? (y/n)

no

36
New cards

can sockets communicate between processes on the same machine? (y/n)

yes, with address 127.0.0.1

37
New cards

when setting up the socket call, we specified SOCK_STREAM. what does SOCK_STREAM indicate?

TCP ip

38
New cards

pthread create only takes one argument for its last parameter (t/f)

true

39
New cards

if i do a pthread create, it'll set up a thread configuration and it then must do a pthread start command (t/f)

false, there is no pthread start

40
New cards

a process by default is only one thread of control, one set of machine instructions executing at a time (t/f)

true

41
New cards

in a linux system, to correctly build a c++ application that uses pthreads, #include pthread.h must exist in the source code and a -pthread must be included in the g++ build line (t/f)

true

42
New cards

which memory segment is not shared by multiple threads of a program?

stack

43
New cards

threads improve program performance because threads in the process can execute for times greater than the time allocated for the process of the thread (t/f)

false

44
New cards

we lock and unlock the mutex to set up a critical code section. what does it do to the threads?

only lets one thread in at a time

45
New cards

what's the operation we use to lock and unlock the critical code section?

mutex

46
New cards

cout's are NOT thread safe (t/f)

true

47
New cards

in the main program thread, what waits for a starter thread to complete?

pthread_join

48
New cards

what's not true about threads?

threads are created by fork() system calls

49
New cards

linux is what type of operating system?

pre-emptive and time-shared

50
New cards

execvp() makes a mirror copy of a process? (t/f)

false

51
New cards

gives code segments and asks a couple questions about how many total processes there are