0

Ex: NO:1 SQL QUERIES FOR CREATION OF DATABASE

Aim: To execute the queries to create and alter the schema of the database. Data Definition in SQL Creating Tables: The SQL command for creating an empty table has the following form: Syntax: create table...

0

PREREQUISITES FOR THE DBMS LAB

The prerequisites of the lab are: 1. Oracle-Sql 2. Visual Basic 6.0 SQL:          In relational database systems (DBS) data are represented using tables (relations). A query issued against the DBS also...

0

Ex.No:3c Dynamic Constructors

AIM:          To write a C++ program for string manipulation using dynamic constructors. ALGORITHM: STEP 1: Start the program. STEP 2: Declare the data members and member functions. STEP 3: Define the...

0

Ex.No:3a Constructor Overloading

AIM:          To write a C++ program for maintaining bank account using constructor overloading. ALGORITHM: STEP 1: Start the program. STEP 2: Declare the data members and constructors. STEP 3: Define the...

0

Ex.No:2b Inline Funtions

AIM:           To write a C++ program to perform arithmetic operation using inline function. ALGORITHM: STEP 1: Start the program. STEP 2: Declare and define inline functions ie. ‘add()’,’sub()’,’mul()’,’div()’. STEP 3: Assign...

0

Ex.No:2a Static Data and Function Members

AIM:           To write a C++ program using static data member and static member function. ALGORITHM: STEP 1: Start the program. STEP 2: Declare static variable ‘count’. STEP 3: Define static variable...

0

Ex.No:4c Sorting

AIM:          To write a C program to sort an array of n integers. ALGORITHM: Step 1: Start the program. Step 2: Read the array a. Step 3: Repeat for i ←...

0

Ex.no:3f Illustrate menu-driven Programming

AIM:          To write a C program to illustrate menu-driven Programming. ALGORITHM: Step 1: Start the program. Step 2: Read choice and num. Step 3: Repeat till a valid choice. Step 3a:...