An open API service indexing awesome lists of open source software.

https://github.com/debakarr/cs6xx

LAB programs for CS6xx (6th SEM)
https://github.com/debakarr/cs6xx

assignment c college lab pthreads shell socket

Last synced: 9 months ago
JSON representation

LAB programs for CS6xx (6th SEM)

Awesome Lists containing this project

README

          

### This repository contains all the LAB programs for CS6xx (6th SEM)

***

#### Operating System

***

**NOTE**: You can view **Subham Sarda's** Operating System LAB repo **[here](https://github.com/Shubh96/CSE_Sem_6)**.
Also you can view **Shubham Dey's** Operating System LAB repo **[here](https://github.com/ShubhamDey/OS-6th-Sem-Programs)**.

***

* Day 2

* [Addition of two numbers](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_2_1_addNumbers.sh)
* [Factorial of a number](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_2_2_factorial.sh)
* [Prime or not](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_2_3_prime.sh)
* [Fibonacci Series](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_2_4_fibonacci.sh)

* Day 3
* [Maximum of 3 numbers](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_3_1_maxNum.sh)
* [Show modified date of file if it exist](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_3_2_accessAndDisplayLastModified.sh)
* [Simple calculator](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_3_3_calculator.sh)

* Day 4
* [Addition of two numbers (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_1_addNumbers.sh)
* [Factorial of a number (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_2_factorial.sh)
* [Prime or not (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_3_prime.sh)
* [Fibonacci Series (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_4_fibonacci.sh)
* [Maximum of 3 numbers (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_5_maxNum.sh)
* [Show modified date of file if it exist (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_6_accessAndDisplayLastModified.sh)
* [Simple calculator (Using function)](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_1_7_calculator.sh)
* [Count vowels and consonants in a sentence](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/Bash%20Program/Day_4_2_countVowelsAndConsonants.sh)

* Day 6
* [Zombie Process](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_6_1_Zombie_process.c)
* [Orphan Process](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_6_2_Orphan_process.c)
* [Sleeping Process](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_6_3_Sleeping_process.c)

* Day 7 [Using execl with ps](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_7_exec.c)

* Day 8 [Semaphor?]

* Day 9 [POSIX](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_9_POSIX_thread.c)

* Day 10 [Pipe](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS693%5D%20Operating%20System/C%20Program/Day_10_pipe.c)

***

#### Computer Networks

***

**NOTE**: You can view **Sandeep's** Network LAB repo **[here](https://github.com/sandyjswl/CS-692)**.
Also you can view **Subham Sarda's** Network LAB repo **[here](https://github.com/Shubh96/CSE_Sem_6)**.

***

* **Assignment 8** [Implement a program that can retrieve name of a host](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS692%5D%20Computer%20Network/ShowHostName.java)

* **Assignment 9** [Write Socket program to show the time and date of a server machine](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/Socket/Date%20and%20Time)

* **Assignment 10** [Write a Socket program to send a message from client machine to server machine and reply back the same message from server to client](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/Socket/Multicast)

* **Assignment 11** [Write a Socket program to send a message (in lower case) from client machine to server machine and the server will convert the message into upper case](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/Socket/LowerCase%20To%20UpperCase)

* **Assignment 12** [Write a Socket program which will take numbers as input from client machine and send it to server machine where calculation would be done and sent the result to the client machine (Iterative Server)](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/Socket/Calculation)

* **Assignment 13** [Write a Socket program that will receive multicast message from client computer and display the output](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/Socket/Multicast)

* **Assignment 15** [Write a socket program to implement Data Link Layer Error Detection Mechanism (Cyclic Redundancy Check)](https://github.com/Dibakarroy1997/CS6xx/tree/master/%5BCS692%5D%20Computer%20Network/CRC)

***

#### Computer Networks

***

**NOTE**: You can view **Subham Sarda's** DBMS LAB repo **[here](https://github.com/Shubh96/CSE_Sem_6)**.

***

* **Upto Day 5** [Link to PDF](https://github.com/Dibakarroy1997/CS6xx/blob/master/%5BCS691%5D%20Database%20Management%20System/DBMS%20LAB%20Upto%20Day%205.pdf)

***

**P.S.**: As always pull request are always welcome.