Skip to main content

PDF TEST

Introduction To DBMS(Database Management System).

 


What is Data?

Data is collection of details of any object. It is always related to input.


What is Information?

Information is what we get after doing proper process on data. It is always related to output.


What is Database?

Database is a collection of interrelated data.


What is DBMS?

DBMS or DataBase Management System is a computerized process of efficiently and effectively recording(managing) the data.

Comments

Popular posts from this blog

How to create PLAY & PAUSE(STOP) buttons in Macromedia Flash 8...

POST - 2 How to create PLAY & PAUSE(STOP) buttons in Macromedia Flash 8 Step-1 Open Macromedia Flash 8 and create New Flash Document. Step-2 Draw an Oval by clicking Oval in tools section. Step-3 Now in Layer-1 right click on Frame No. 60 and select Insert Keyframe. Step-4 Select(with selection tool in tools section) and drag Oval(Object) to your last position.(Where you want to end motion effect) Step-5 Now right click on Frame No. 30 and select Create Motion Tween. Step-6 Now add new layer(By right clicking on existing layer and choosing Insert Layer) and draw two buttons using rectangle tool in tools section.(Make sure to make both these buttons of different colours. You can select colour before drawing from tools section) Step-7 Now right click on button and select Convert to symbol...Give proper name to button and make sure to select Type as Button.(Do this for both buttons. Names must be different) Step-8 (Optional) You can add text on your buttons from tools section... Step-...

Write a CPP program to swap two integer numbers with the use of reference variable...

 POST -  All the code given below is compiled using turbo CPP and working totally fine but if you are using any new IDE there might be some difference in code... #include<iostream.h> #include<conio.h> void swap (int &x , int &y) {      int temp;     temp=x;     x=y;     y=temp; } main() {      int a, b;      clrscr();      cout<<"Enter The Value Of A : ";      cin>>a;      cout<<"Enter The Value Of B : ";      cin>>b;      swap(a,b);      cout<<"After Swapping..."<<endl;      cout<<"A= "<<a<<endl;      cout<<"B= "<<b<<endl;      getch();      return(0); }  OUTPUT: