Pages

Wednesday, 6 March 2024

PPS PRACTICAL 1 EXTRA PROGRAM FOR HOME WORK

1. Write a program to find sum of two numbers.

2. Write a program to find area of rectangle. (Area = length * width)

3. Write a program to find area of square. (Area = length * length)

4. Write a program to calculate inch from centimeter. (inch = centimeter * 2.56)

5. Write a program to calculate average of two numbers.

6. Write a program to print ASCII value of a number.


DBMS PRACTICAL 1 TABLES

CREATE TABLE DEPOSIT (ACTNO INT, CNAME VARCHAR(50), BNAME VARCHAR(50), AMOUNT DECIMAL(8,2), ADATE DATE); CREATE TABLE BORROW (LOANNO INT, CN...