logo

Crowdly

Browser

Add to Chrome

TI504M - Computer Architecture and Operating Systems

Looking for TI504M - Computer Architecture and Operating Systems test answers and solutions? Browse our comprehensive collection of verified answers for TI504M - Computer Architecture and Operating Systems at efreussite.fr.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

What is the PID of the parent process?

0%
0%
0%
0%
0%
0%
View this question

The previous program displays the following output:

hdd@lea:~$ ./a.out

Is the display below correct:

13237

13237 13238

13237 13238 13239

13237 13238 13239 13240

13237 13238 13239 13240 13241

0%
0%
View this question

Which process executes the last for loop containing the calls to waitpid()?

0%
0%
0%
View this question

In this program:

0%
0%
0%
View this question

What is the PID of the last created child?

0%
0%
0%
0%
0%
0%
View this question

The execution time of the program is:

0%
0%
0%
0%
View this question

What is the PID of the first created child?

0%
0%
0%
0%
0%
0%
View this question

Under the SHELL, how many input/output streams are there?

0%
0%
0%
0%
0%
View this question

The following code:

char* myreader(int fd){ 

    int cmp = 0;

    char c;

    while(read(fd, &c, 1) == 1 && c!= '\n') cmp++;

    char *ch = (char*) malloc (cmp+1);

    lseek(fd, 0, SEEK_SET);

    read(fd, ch, cmp);

    ch[cmp] = 0;

    return ch;

}

0%
0%
0%
0%
View this question

Determine the value of x in the following program:

int main() {

    int x = 1;

    int pid = fork();

    if (pid != 0) {

        printf("x=%d\n", ++x);

        exit(0);

    }

    printf("x=%d\n", --x);

    exit(0);

}

0%
0%
0%
0%
View this question

Want instant access to all verified answers on efreussite.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome