School of Computer Science and Engineering (SCOPE) : List of Experiments Assessment No. Topic Experiments Due Date
School of Computer Science and Engineering (SCOPE) : List of Experiments Assessment No. Topic Experiments Due Date
4. Write a shell script to find the sum of first ‘N’ numbers in Fibonacci series (use for loop)
5. Write a shell script to print a given number in reverse order and sum of the individual digits.
6. Write a shell script to read two strings and display whether it is equal, not equal, null strings or string with
special characters.
7. Write a shell script to accept one integer argument and print its multiplication table.
8. Write a Shell Script that makes use of grep to isolate the line in /etc/passwd that contains your login details.
9. Write a shell script to display all files in the /home/YourLoginName subdirectory as well as display the type
of all files.
10. Using shell script, display the contents of the present working directory. If it is an ordinary file print its
permission and change the permissions to r--r--r-- .
11. Use find, grep and sort to display a sorted list of all files in the /home/YourLoginName subdirectory that
contains the word “hello” somewhere inside them.
System Calls 12. Write a C program to kill a process by specifying its name rather than its PID. 30-08-2020
13. Create a file with few lines, Write a C program to read the file and delete the spaces more than one in the
file (use UNIX file API’s).
14. Write a program
a. To create parent & child process and print their id
b. To create a zombie process.
c. To create orphan process.