Shubhang Gupta (19/78098)
-
Write a program (using fork() and/or exec() commands) where parent and child execute:
- same program, same code.
- same program, different code.
- before terminating, the parent waits for the child to finish its task.
-
Write a program to report behaviour of Linux kernel including kernel version, CPU typeandmodel.(CPUinformation)
-
Write a program to report behaviour of Linux kernel including informationon 19 configured memory, amount of free and used memory. (memory information)
-
Write a program to print file details including owner access permissions, file access time, where file name is given as argument.
-
Write a program to copy files using system calls.
-
Write a program to implement FCFS scheduling algorithm.
-
Write a program to implement Round Robin scheduling algorithm.
-
Write a program to implement SJF scheduling algorithm.
-
Write a program to implement non-preemptive priority based scheduling algorithm.
-
Write a program to implement preemptive priority based scheduling algorithm.
-
Write a program to implement SRJF scheduling algorithm.
-
Write a program to calculate sum of n numbers using thread library.
-
Write a program to implement first-fit, best-fit and worst-fit allocation strategies.