IT Cycle Sheet
IT Cycle Sheet
UNIVERSITY
(Estd. u/s 3 of UGC Act 1956)
Cycle Sheet – I
EMPLOYEE
JOINS
1. Create a PL/SQL block to accept an empno and display the salary of the
person.
2. Create a PL/SQL block to accept an empno and display the grade as
follows.
>5000 a
>4000 & <5000 b
<4000 c
3. Create a PL/SQL block to list all numbers between 1 and 100
4. Create table with 5 rows and 5 columns
5. To find the factorial of the given number using function
6. To find the Fibonacci of the given number using procedure
7. The ACCT_MAST table records the current balance for an account,
which is updated whenever, any deposits or withdrawals takes place. If the
withdrawal attempted is more than the current balance held in the account,
a user defined exception is raised displaying an appropriate error message.
Table name: ACCT_MAST
ACCT_NO CURBAL
SBI 15000
SA14 500
CA1 2000
8. Write a database trigger before insert for each row on the Bank (Table)
not allowing tranasactions on Sunday and Saturday.