Latest Posts

Write a shell script to modify “cal” command to display calendars of the specified months.

Write a shell script to modify “cal” command to display calendars of the specified months. CODE: # !/bin/bash # Ch…

Write a shell script to check if the number entered at the command line is prime or not.

Write a shell script to check if the number entered at the command line is prime or not. CODE: #!/bi…

Practical: Unix Programming Lab

 Practical: Unix Programming Lab 1. Write a shell script to check if the number entered at the command line is pri…

To learn use of in case of a two dimensional array.

To learn use of in case of a two dimensional array. Program: import java.util.Scanner; public class Tw…

To learn use of single dimensional array by defining the array dynamically.

To learn use of single dimensional array by defining the array dynamically. Program: import java.util…

Write a program that creates illustrates different levels of protection in classes/subclasses belonging to same package or different packages.

Write a program that creates illustrates different levels of protection in classes/subclasses belon…

Write a program to create a multilevel package and also creates a reusable class to generate Fibonacci series, where the function to generate Fibonacci series is given in a different file belonging to the same package

Write a program to create a multilevel package and also creates a reusable class to generate Fibona…

Write a program to show the use of static functions and to pass variable length arguments in a function.

Write a program to show the use of static functions and to pass variable length arguments in a func…

Write a program to show the difference between public and private access specifiers. The program should also show that primitive data types are passed by value and objects are passed by reference and to learn use of final keyword

Write a program to show the difference between public and private access specifiers. The program sh…