System Practicum Assignment 1 Solution

$24.99 $18.99

Instructions Plagiarism is strictly prohibited. In case of violation, a zero will be awarded for this assignment as a warning and a quick F grade if repeated later. In Moodle, students need to submit below given files in a zip archive named as {RollNo}_SP_assignment_1.zip: A readme.md file which provides the instructions for running your codes…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:

Description

5/5 – (2 votes)

Instructions

  • Plagiarism is strictly prohibited. In case of violation, a zero will be awarded for this assignment as a warning and a quick F grade if repeated later.

  • In Moodle, students need to submit below given files in a zip archive named as {RollNo}_SP_assignment_1.zip:

    • A readme.md file which provides the instructions for running your codes in detail including the versions of programming language and all the modules that have been used.

    • Makefile for compiling and executing the given code, make sure to use gcc <= 9.3.

    • The code and report for the assignment.

    • Give appropriate names to all the submitted files.

  • Submit a single report for the assignment. The report should be concise.

  • Students using Windows or any other OS are requested to make sure that their code runs perfectly on Linux as mentioned in each problem. Your evaluation will be done on computers having Ubuntu 20.04.

  • Students must write their codes in C/C++ programming language.

  • The deadline for submission is 6th March 2022. No late submissions will be entertained.

Problem 1 – Creating a Shell

(15 marks)

The shell or Command line interpreter is a fundamental User Interface in an Operating System. You have to create a simple shell that supports the following internal commands:

  1. clr

Clear the screen. (1 mark)

  1. pause

Pause operations of the shell until ‘Enter’ is pressed. (1 mark)

  1. help

Display User Manual. (1 mark)

  1. quit / Ctrl+D

Quit the shell. (1 mark)

  1. history

Display the list of previously executed commands, even on shell restart. (1 mark)

  1. cd <directory>

Change the current default directory to <directory>. If the <directory> argument is not present, report the current directory. If the directory doesn’t exist an appropriate error should be reported. This command should change the PWD environment variable for current shell. (1 mark)

  1. dir <directory>

List all the contents of the directory <directory>. (1 mark)

  1. environ

List all the environment strings of the current shell and the bash shell. (1 mark)

  1. echo <comment>

Display <comment> on the display followed by a new line. Multiple spaces/tabs should be reduced to a single space. (1 mark)

  1. The shell environment should contain shell=<pathname>=myshell where <pathname>=myshell is full path for the shell executable (not a hardwired path back to your directory, but the one from which it was executed). (3 marks)

  1. The shell must be able to take its command line input from a file. That is, if the command line is invoked with a command line argument: myshell <batchfile> then <batchfile> is assumed to contain a set of command lines for the shell to process.

When the end of file is reached, the shell should exit. Obviously, if the shell is invoked without a command line argument, it solicits input from the user via prompt on the display. (3 marks)

Note:

  1. Do not use wrapper function unless essential.

  1. Avoid using direct system calls to implement commands unless essential.

  1. Do appropriate error handling wherever necessary.

Bonus: (3 marks)

Assume that the full path to the executable is provided as an input. For example: suppose a C program is compiled into an executable “prog” in directory /home/user, then we want to run that program in the shell as follows:

$/home/user/prog

Problem 2 – Dining students

(10 marks)

5 students love the canteen food. They sit around a canteen table and eat food using a pair of spoons. There is a food bowl at the centre of the table. Each student has a left spoon and a right spoon (a total of 5 spoons on the table). The job of each student is to eat and think repeatedly. But one can eat only when both of their left and right spoons are available. The eat-think cycle of a student is as follows: pick up both spoons, eat food for 20 second, put down both the spoons, and think for a random amount of time (< 2 seconds).

Use threads with locks to simulate the students eat-think lifecycle. There are 4 states for each student:

  1. Waiting for Spoons

  1. One spoon acquired.

  1. Both spoons acquired / Eating (20 seconds)

  1. Thinking (< 2 seconds)

Output:

  1. A file containing the state change log. We call it a change when the state (waiting for spoons/one spoon acquired/both spoons acquired/thinking) of even one student changes.

For example, consider an instant where student 1 (S1) has both spoons, student 2 (S2) is waiting for first spoon, and all other students are thinking. The next instant, student 3 (S3) comes out of thinking. Rest remains same for this instant. The state change log will look like:

S1: Both spoons acquired.

S2: Waiting for spoons

S3: Thinking

S4: Thinking

S5: Thinking

——————–

S1: Both spoons acquired.

S2: Waiting for spoons

S3: Waiting for spoons

S4: Thinking

S5: Thinking

  1. Run your code 5 times for a simulation time of 30 minutes each. Generate the 5 different state change log files and summarize your findings in a report. Discuss whether your solution allows exactly fair allocation, prevents deadlock and starvation.

Problem 3 – Matrix Multiplication

(10 marks)

Write a sequential program to multiply two square matrices. Initialize the matrices with any random values. The size of matrix (n) should be taken as command line argument. Now write a parallel program using threads to do the same. Run both programs for different values of n (n=1 to at least 3000) and make proper log of respective running time.

Input

n = size of the square matrix

Output

Create a report which includes the graph of input size (n) vs running times for both programs. Run each program at least 5 times and use average running time for analysis. Discuss your inferences.

Note

  1. Use dynamic memory allocation for arrays.

  1. Avoid running any heavy program at the time of execution.

The End

System Practicum Assignment 1 Solution
$24.99 $18.99