CSc 332 (6X) Task 4 – System Calls Summary solution

$24.99

Original Work ?

Download Details:

  • Name: Task4-1whjmr.zip
  • Type: zip
  • Size: Unknown

Category: You will Instantly receive a download link upon Payment||Click Original Work Button for Custom work

Description

5/5 - (3 votes)

CSc 332 (6X) – Operating Systems
PART 2 Average Grade Calculator
There are 10 students enrolled in a course. The course covers x number of chapters from a textbook
(x > 1). In each chapter y number of homework(s) are assigned (y ≥ 1). The average grade for each
homework in all the chapters need to be found out.
To solve this, write program which has the main process as Director process, which reads a file
containing grades of all homeworks of all chapters and creates x number of Manager processes. Each
Manager process will take care of solving a chapter. Each manager process will create y number of
Worker process and pass one homework to each of them and they calculate and print the average.
The input file should contain the data according to the value of x and y. For example, the input text
file and the process tree for x = 2 and y = 2 will look like the following:
(a) (b)
1
The Director process is responsible for opening and closing the input text file. It stores the values
in a two dimensional integer array with 10 rows. You may need to use the following C functions
(in addition to the necessary file & process management system calls): fopen(), fscanf(), fseek(),
fclose().
Submission Instructions
• Save your programs in a single folder and zip as: task4_lastname.zip. Make sure your programs
compile and run without any errors.
• Email your code with subject line “Task 4 – CSc 332 (6X) – lastname”
******
2