UNIX & Linux programs Program in UNIX to reverse the entered number. Share Write a shell script to reverse the entered number.(e.g. if user enters the number 123 then the out… Read More
UNIX & Linux programs Programin UNIX to identify all zero byte files in the current directory and delete them Share Write a shell script to identify all zero byte files in the current directory and delete them. Befo… Read More
Program in UNIX to check entered year is leap year or not Share Write a shell script to check entered year is leap year or not echo "enter a year" read y i… Read More
UNIX & Linux programs program in UNIX which accepts three sides of triangle and check triangle can be formed or not. Share Write a shell script which accepts three sides of triangle and check triangle can be formed or not. … Read More
UNIX & Linux programs Program in UNIX to compute factorial of a positive integer Share Write a shell script to compute factorial of a positive integer echo Enter a number to find its fact… Read More
UNIX & Linux programs Program in UNIX - File size to be displayed Share Write a script which reports names and sizes of all files in the directory (directory would be supp… Read More
UNIX & Linux programs UNIX Program to check the entered word starts with vowel, ends with a digit or it is just three-letter word Share Write a program to check the entered word starts with vowel, ends with a digit or it is just three-… Read More
UNIX & Linux programs Program in UNIX which checks after every one-minute whether user has logged in or not Share A friend of yours has promised to log in at a particular time. However, he has not kept the promise… Read More
UNIX & Linux programs Program in UNIX - Filename displayed Share The word unix is present in only some of the files supplied as arguments to the shell script. Your … Read More
UNIX & Linux programs Program in UNIX - File copy Share A shell script receives even number of filenames. Suppose four filenames are supplied then the firs… Read More
UNIX & Linux programs UNIX program to print the multiplication table Share Write a program to print the multiplication table of entered number. echo "Enter the number to … Read More
UNIX & Linux programs UNIX Program to display a list of all files in the current directory with permission Share Write a shell script, which display a list of all files in the current directory those have read, w… Read More
UNIX & Linux programs UNIX program to check whether every argument supplied is a file or a directory Share Write a shell script, which will receive any number of filenames as arguments. The shell script sho… Read More
UNIX & Linux programs UNIX Program to find GCD and LCM of these number Share Write a shell script, which will accept two positive integers and find GCD and LCM of these numbers… Read More
Write a shell script to generate following series1,3,2,4,3,5,4,6,----100 Share Write a shell script to generate following series 1,3,2,4,3,5,4,6,----100num=1while [ $num -le 98 … Read More
UNIX & Linux programs Program in UNIX to convert Kilometers and print this distance in meters, feet, inches and centimeters. Share The distance between two cities (in Km.) is input through the keyboard. Write a program to convert … Read More
UNIX & Linux programs Program in UNIX to display number of days in that month Share Write a Shell script that accept the month number and display number of days in that month. echo -n … Read More
UNIX & Linux programs Program in UNIX to find out at how many terminals has this user logged in Share While executing a shell script either the LOGNAME or the UID is supplied at the command prompt. Wri… Read More
UNIX & Linux programs Program in UNIX to determine whether the year is a leap year or not Share Write a shell script, which receives any year from the keyboard and determines whether the year is … Read More
UNIX & Linux programs Program in UNIX to calculate the division obtained by the student Share The marks obtained by a student in 5 different subjects are input through the keyboard. The student… Read More
UNIX & Linux programs Program in UNIX to find out whether it is an odd number or even number Share Any integer input through the keyboard. Write a program to find out whether it is an odd number or … Read More
UNIX & Linux programs Program in UNIX to determine whether the seller has made profit or incurred loss Share If cost price and selling price of am item is input through the keyboard, write a program to determ… Read More
UNIX & Linux programs Program in UNIX to calculate gross salary Share Ramesh’s basic salary is input through the keyboard. His dearness allowance is 55% of basic salary,… Read More
UNIX & Linux programs Program in UNIX to calculate the sum of digits Share If a three-digit positive number is input through the keyboard, write a program to calculate the su… Read More
Program to calculate the area and perimeter of the rectangle, and the area and circumference of the circle Share The length and breadth of a rectangle and radius of circle are input through the keyboard. Write a … Read More
UNIX & Linux programs UNIX & Linux programs Index UNIX & Linux programs Index Share 1 Write a program in UNIX to calculate the area and perimeter of the rectangle, and the area and ci… Read More
Tell you friends about this website Share Please tell your friends, school/college groups about this website, and let's make this thing g… Read More
Data Communication network programs (DCN) Data Communication network(DCN) program to implement the peer to peer (chatting) application. Share Write a program to implement the peer to peer (chatting) application. Program Code: #include<stdio… Read More
Write a program to compress the contents of the file. Share Write a program to compress the contents of the file. Program Code: #include#include#includevoid ma… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement character level encryption by polyalphabetic encryption method. Share Write a program to implement character level encryption by polyalphabetic encryption method.Progra… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement character level encryption by monoalphabetic encryption method. Share Write a program to implement character level encryption by monoalphabetic encryption method. Program… Read More
Data Communication network programs (DCN) Data Communication network(DCN) program to implement RSA algorithm using C. Share Write a program to implement RSA algorithm using C. Program Code: #include<stdio.h> #include<… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to generate sink tree for given network. Share Write a program to generate sink tree for given network. Program Code: #include<stdio.h> #includ… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program for shortest path routing algorithm (Dijkstra’s algorithm). Share Write a program for shortest path routing algorithm (Dijkstras algorithm). Program Code: #include<… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement Walsh matrix Share Program to implement Walsh matrix #include<stdio.h> #include<conio.h> #include<math.h&g… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement bit stuffing method Share Write a program to implement bit stuffing method #include<stdio.h> #include<conio.h> void … Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement LRC method (Single-Parity Check) Share Write a program to implement LRC method (Single-Parity Check) #include<stdio.h> #include<con… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement VRC method(Double-Parity Check) Share Write a program to implement VRC method(Double-Parity Check) #include<stdio.h> #include<coni… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement CRC method Share Program to implement CRC method #include<stdio.h> #include<conio.h> void compute_crc(int d… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to implement the checksum method at sender & receiver’s end. Share Program to implement the checksum method at sender & receiver’s end. #include<stdio.h> #inc… Read More
Data Communication network programs (DCN) Data Communication network(DCN) Program to Check & Correct the error in the data at the receiver’s end by implementing Hamming Code Share Program to Check & Correct the error in the data at the receiver’s end by implementing Hamming… Read More