Thursday, October 17, 2013

How to write Procedure Block Name in PL/SQL simple example

----------------------------------------
Syntax:
----------------------------------------
CREATE [OR REPLACE] PROCEDURE [PROCEDURE_NAME](ARGUMENTS {IN / OUT / INOUT} DATA-TYPE)
IS/AS
    CURSOR DECLARATION;
    VARIABLE DECLARATION;
BEGIN
    SQL & PL/SQL STATEMENTS;
EXCEPTION
    ERROR HANDLING;
END;
/

Wednesday, October 9, 2013

Virtual Base Class ( Student, Marks, Behaviour, ECA & Result ) C++ Program

#include<conio.h>
#include<iostream.h>

class student
{
    public:
    int roll,id;
    char name[20],std[6];
    void getstudent()
    {
        cout<<"\n\tEnter Student Details \n";
        cout<<"\nEnter ID No :";cin>>id;
        cout<<"\nEnter STD : ";cin>>std;
        cout<<"\nEnter Name : ";cin>>name;
    }
};

Thursday, October 3, 2013

Multiple Hierarchical Inheritance C++ Program ( Gold, Cash, Properties )

#include<conio.h>
#include<iostream.h>

class MFMother
{
    double gold,properties;
    public:
    double togold,toopro;
    void mgetdata()
    {
        cout<<"\nEnter GMother's Details ";
        cout<<"\nEnter Gold in Kg :";cin>>gold;
        gold = gold*30200;

Sunday, September 15, 2013

Deque Algorithm for Curcular Queue using Array


If(Front == U)

      next = L

Else

      next = Front + 1

EndIf


Item = NULL

Enque Algorithm for Curcular Queue using Array

If(Rear == U)
      next = L
Else
      next = Rear + 1
EndIf

If(next == Front)
      print “Queue is Full.

Saturday, September 7, 2013

Maths Paper Style for Internal Exam

Q-1 SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 15 M

2->NORMAL FORMS
2->MATRICES

Q-2(A) THEORY [CONNECTIVES] 4M 


(B) PROPERTIES [CONNECTIVES] 4M


(C)SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 12M

Q-3(A)DEFINITION+EXAMPLE 5M


(B)SOLVE THE FOLLOWING(ANY 1 OUT OF 2) 4M
(C)DEFINITIONS (ANY 6 OUT OF 7) 6M

TOTAL: 50 MARKS