Tuesday, September 26, 2017

BCA - III (Sem)

    1.       WAP  to add two number.
    2.       WAP to compare two number and display largest number.
    3.       WAP to compare three number and display largest number.
    4.       WAP to check wheather the given number is prime or not.
    5.       WAP to print odd number between 1 to 100.
    6.       WAP to compare two dates.
    7.       WAP to print the financial year of given date.
    8.       WA procedure to fetch data from table emp using explicit  cursor.
    9.       WA procedure to fetch data from order table using explicit cursor with attributes.
   10.     WA procedure to implement too_many_rows, no_data_found, Zero_Divide and Others exception          for prime number.
   11.      WA procedure to implement defined exception in financial year.
   12.     Write a function to check that given no is prime or not. If prime then return 1 or not prime than             return 0.
    13.    WA procedure ti insert 1000 rows in a tab le called student using cursor, for loop and exception.
    14.    WA procedure to create  trigger that will restrict to delete, update and Insert DML operation in the data from table student.

    15.    WA procedure to insert a row data is inserted and delete from the table student the fieldare id, operation date, operation data, operation type and studentid.

    16.  Perform export a .dmp file and import same file into the user "Vivekanand".




3 comments:

  1. Sir, It's Anupam Dubey.
    Sir Monday ko kes sama humlogo ko college ana ha, practical kab sa ha and humlogo ko kya-kya laka ana ha.

    ReplyDelete
  2. Practical will start from 8:30 AM, morning
    1. Practical File
    2. College Diary

    ReplyDelete

Financial Year Oracle PLSQL Program

 CREATE OR REPLACE function FINANCIAL_YEAR(p_date DATE) return varchar2 IS    v_first     varchar2(4);    v_second    varchar2(4);    v_year...