Showing posts from 2013

BFS Program in C

#include<stdio.h> #include<conio.h> int a[20][20],q[20],visited[20],n,i,j,f=0,r=-…

DFS Program in C

#include<stdio.h> #include<conio.h> int a[20][20],reach[20],n; void dfs(int v) …

Network DBMS

The NDBMS is built primarily on a one–to-many relationship, but where a parent-child represent…

The Concept of Keys

A key is an attribute of a table which helps to identify a row. There can be many different …

E-R Diagram

When a company asks you to make them a working, functional DBMS which they can work with, ther…

Database Administrator

The Database Administrator, better known as DBA, is the person (or a group of persons) respons…

Data Independence

This brings us to our next topic: data independence. It is the property of the database which …

Types of Data

Three Views of Data We know that the same thing, if viewed from different angles produces di…

Introduction to DBMS

As the name suggests, the database management system consists of two parts.  They are: Datab…

Use Case Model

Specific Instructional Objectives At the end of this lesson the student will be able to: • Id…

Load More
That is All