Java

Java Code Examples

The following list presents some of the Java Code Examples. Basic Java Code Examples In order to find area of a rectangle, create a class Rectangle with data members length and breadth and member functions getDimensions() for reading input and findArea() to display the output. Write a program to demonstrate the use of method overloading …

C++

C++ Practice Exercise

The following list presents a C++ Practice Exercise. Solve the Following C++ Practice Exercise Write a program to implement the ‘Inline function’ Implement call by reference and return by reference using class in a C++ program. [Hint. Assume necessary functions] Write a program to implement the friend function by taking some real-life examples Implement ‘Function …

VB.NET

VB Dot NET Programs

Given below is a list of VB Dot NET Programs Create console application showing the use of conditional constructs – if, if-else, if-else if-else, nested if, select case. Create a console application showing the use of loops – Do….While loop, Do Until … Loop, While… Wend, For …  Next, For Each … Next. Create a …

SQL

SQL Practice Exercise

The following list presents a SQL Practice Exercise. The following are some of the databases. For the purpose of running queries given below you may use any one of these databases. However, you can use any other database also. Part 1 – SQL Practice Exercise Institute Database: The database has the following tables Student (enrolment_no, …

C

Data Structures Practice Questions

The following list provides important Data Structures Practice Questions. Write a program to implement following operation on one dimensional array (i) Insertion (ii) Deletion (iii) Traversal (iv) Reverse (v) Merge Create an application to Sort an array (menu driven) using: (i) BUBBLE SORT (ii) MERGE SORT(iii) INSERTION SORT (iv) SELECTION SORT Write a program to …