Thursday, August 8, 2013

Download DFS all PPTs Files till Unit Test 1

Hello Friends I have uploaded all DFS Material including all the PPTs Files till we have learned so far. So Download this zip file and extract it you will get total 6 files.

Wednesday, August 7, 2013

C++ Programs List for Lab File

Here is my C++ Programs list. I can't say its 100% right. Yes but you can get idea about total number of programs have to be written in C++ Lab File. If you want to note down then you can Its just for inform you to these programs must be in your Lab File.

Given Programs in short name so try to understand definition.
Program List :

Download SQL Theory Assignment 2 with Answer

Here is one zip file download and extract it. You will get number of image which contain all questions' answers. Lets complete it.

Thursday, August 1, 2013

All Matrix's Definations for SY-BCA

1. Matrix: 
A matrix is an arrangement of numbers with M rows and N columns in a rectangular array.
Matrices are denoted by capital letter. like A,B,C

2. Raw Matrix:
A matrix in which there is only one rows and any number of columns this called a row matrix.

Tuesday, July 30, 2013

Maths 5 Inportant Definations

1. Path:
Path is sequence of edges such that the Terminal vertex of some edge Ei is the Initial vertex of some edge Ej appearing next in the sequence, where 1<=i, J<=n

2.Reachability:
A vertex v of a digraph is said to be reachable from vertex u if there is a directed path in that digraph from u to v

DOWNLOAD SQL REFERENCE BOOK

Sunday, July 28, 2013

Simple Insert Single Link List Program in C Language

#include<stdio.h>
#include<conio.h>

struct node
{
int data;
struct node *link;
};
struct node *header,*ptr,*newx,*temp;

Thursday, July 25, 2013

SQL(LAB) Assignment 4 Queries's Answer


1. Create table Student with below given table structure and constraints. Datatype Constraints Remarks Roll_no Number(3) Primary Key  Unique identification number of student Name Varchar2(15) Unique Name of student Birth_Date Date Gender Varchar2(10) Not Null  Male or Female.

1. CREATE TABLE STUDENT
(ROLL_NO NUMBER(3) CONSTRAINT PK_RNO PRIMARY KEY,
NAME VARCHAR2(15) CONSTRAINT UN_NAME UNIQUE,

Wednesday, July 17, 2013

Get SQL Assignment 2 Query 's Answer


 Download SQL Assignment 2 Lab all Answer 


 password : smitguide



Download ans file




1)CREATE TABLE BOOK_DETAILS
(BCODE NUMBER(2) CONSTRAINT PK_BCODE PRIMARY KEY,
BNAME VARCHAR2(25) CONSTRAINT UN_BNAME UNIQUE,
AUTHER VARCHAR2(20),

Monday, July 15, 2013

Download SQL Theory Assignment 1

1.       What is RDBMS? List example of RDBMS packages.

2.       State the full form of SQK. What is role of SQL with respect of RDBMS package? List out the major features of SQL

3.       Explain in brief the different between SQL and SQL* Plus

4.       State the difference between CHAR and VARCHAR2 datatype