Thursday, November 21, 2013
SelectionSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
int main()
{
int s,i,j,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
#include<conio.h>
int main()
{
int s,i,j,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
Labels:
BCA Semester-3,
C-Programs,
DFS
HeapSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
void build_Heap(int [],int);
void HeapSort(int H[],int n);
int main()
{
int arr[10],n,i;
printf("Enter the total number of array elements: ");
scanf("%d",&n);
#include<conio.h>
void build_Heap(int [],int);
void HeapSort(int H[],int n);
int main()
{
int arr[10],n,i;
printf("Enter the total number of array elements: ");
scanf("%d",&n);
Labels:
BCA Semester-3,
C-Programs,
DFS
InsertionSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
int main()
{
int i,j,s,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
#include<conio.h>
int main()
{
int i,j,s,temp,a[20];
printf("Enter total elements: ");
scanf("%d",&s);
Labels:
BCA Semester-3,
C-Programs,
DFS
QuickSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
void quicksort(int [10],int,int);
int main()
{
int x[20],size,i;
printf("Enter size of the array: ");
scanf("%d",&size);
#include<conio.h>
void quicksort(int [10],int,int);
int main()
{
int x[20],size,i;
printf("Enter size of the array: ");
scanf("%d",&size);
Labels:
BCA Semester-3,
C-Programs,
DFS
BubbleSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
int main(){
int s,temp,i,j,a[20];
printf("Enter total numbers of elements: ");
scanf("%d",&s);
printf("Enter %d elements: ",s);
for(i=0;i<s;i++)
scanf("%d",&a[i]);
#include<conio.h>
int main(){
int s,temp,i,j,a[20];
printf("Enter total numbers of elements: ");
scanf("%d",&s);
printf("Enter %d elements: ",s);
for(i=0;i<s;i++)
scanf("%d",&a[i]);
Labels:
BCA Semester-3,
C-Programs,
DFS
MergeSort C Program (DFS)
#include<stdio.h>
#include<conio.h>
void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);
int main(){
int merge[10],i,n;
printf("Enter the total number of elements: ");
scanf("%d",&n);
printf("Enter the elements which to be sort: ");
for(i=0;i<n;i++){
scanf("%d",&merge[i]);
}
#include<conio.h>
void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);
int main(){
int merge[10],i,n;
printf("Enter the total number of elements: ");
scanf("%d",&n);
printf("Enter the elements which to be sort: ");
for(i=0;i<n;i++){
scanf("%d",&merge[i]);
}
Labels:
BCA Semester-3,
C-Programs,
DFS
Monday, November 18, 2013
Wednesday, November 13, 2013
SQL Commands Useful for PROGRAMMERS
ABORT -- abort the current transaction
ALTER DATABASE -- change a database
ALTER GROUP -- add users to a group or remove users from a group
ALTER TABLE -- change the definition of a table
ALTER TRIGGER -- change the definition of a trigger
ALTER USER -- change a database user account
ANALYZE -- collect statistics about a database
ALTER DATABASE -- change a database
ALTER GROUP -- add users to a group or remove users from a group
ALTER TABLE -- change the definition of a table
ALTER TRIGGER -- change the definition of a trigger
ALTER USER -- change a database user account
ANALYZE -- collect statistics about a database
Tuesday, November 12, 2013
Monday, October 28, 2013
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;
/
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;
/
Labels:
BCA Semester-3,
SQL
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;
}
};
#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;
}
};
Labels:
BCA Semester-3,
C++,
Homework
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;
#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;
Labels:
BCA Semester-3,
C++,
Homework
Sunday, September 15, 2013
Deque Algorithm for Curcular Queue using Array
If(Front
== U)
next = L
Else
next = Front + 1
EndIf
Item
= NULL
Labels:
DFS
Enque Algorithm for Curcular Queue using Array
If(Rear
== U)
next = L
Else
next = Rear + 1
EndIf
If(next
== Front)
print “Queue is Full.
Labels:
BCA Semester-3,
DFS
Wednesday, September 11, 2013
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
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
Labels:
BCA Semester-3,
Mathematics
Monday, August 26, 2013
Friday, August 23, 2013
How to write Simple Stack Program using Linked List
#include<conio.h>
#include<stdio.h>
#include<stdio.h>
void PUSH();
void PEEP();
void POP();
void PEEP();
void POP();
struct node{
int data;
struct node *link;
struct node *link;
}*head,*top=NULL,*newx,*item;
Labels:
BCA Semester-3,
C-Programs,
DFS
Wednesday, August 21, 2013
How to write Simple Stack Program in C
#include<conio.h>
#include<stdio.h>
#include<stdio.h>
void PUSH();
void PEEP();
int POP();
void PEEP();
int POP();
int top=-1,item,a[10];
void main()
{
{
int i;
clrscr();
clrscr();
for(i=0;i<12;i++)
{
{
printf("\nEnter No: ");
scanf("%d",&item);
scanf("%d",&item);
Labels:
BCA Semester-3,
C-Programs,
DFS
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.
Labels:
BCA Semester-3,
DFS,
PPTs
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 :
Labels:
BCA Semester-3,
C++
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.
Labels:
BCA Semester-3,
SQL
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:
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.
Labels:
BCA Semester-3,
Mathematics
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
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
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
Labels:
BCA Semester-1,
Mathematics
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;
#include<conio.h>
struct node
{
int data;
struct node *link;
};
struct node *header,*ptr,*newx,*temp;
Labels:
BCA Semester-3,
C-Programs,
DFS
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,
Labels:
BCA Semester-3,
SQL
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),
Labels:
BCA Semester-3,
SQL
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
Labels:
BCA Semester-3,
SQL
Friday, July 12, 2013
DFS(lab) Book Library Application Codding (273 Lines)
Hello Friends, I have created application which ma'am was given in our lab test. So, its still not in full version you can modify in this codding with your own functions. Execute it ....
/*Create one Book Library application which have Library Functions. A program must be perform on given functions
1. Search Student
2. Search Book
3. Issue Book
4. Manipulate
*/
2. Search Book
3. Issue Book
4. Manipulate
*/
#include<stdio.h>
#include<conio.h>
#include <stdlib.h> //<--- This header file used for exit(0); function
#include<conio.h>
#include <stdlib.h> //<--- This header file used for exit(0); function
Labels:
BCA Semester-3,
C-Programs,
DFS
Tuesday, July 9, 2013
Saturday, July 6, 2013
C++ Notes (Practical C++ Programming Teacher's Guide Introduction)
Practical C++ Programming Teacher's Guide Introduction
This guide is designed to help with the classroom presentation of the material in Practical C++ Programming. It contains a set of teacher's notes for each chapter which give you information about the key concepts covered in the chapter as well some ideas for in-class demonstration. The live demonstration section alrets you to the live programs available for demonstration in class. There is also a set of review questions for each chapter with answers. (The “Quiz” document contains these questions without answers.) Hopefully this guide will make your teaching of C++ a little easier.
Labels:
BCA Semester-3,
C++,
PDFs
Friday, July 5, 2013
Mathematics Group Presentation and Members SYBCA-2
Mathematics Group with Members
Matrices :
076,079,099,100,107,110
Graph Theory :
063,066,072,088,090,101
Connectives :
069,071,074,081,104,108
Normal forms and Theory of Interference :
068,077,092,105,109,111
Relational and Ordering :
064,075,082,089,096,113
Posets and Lattices :
061,067,078,087,095,106
Boolean Algebra :
062,073,083,091,097,112
Matrices :
076,079,099,100,107,110
Graph Theory :
063,066,072,088,090,101
Connectives :
069,071,074,081,104,108
Normal forms and Theory of Interference :
068,077,092,105,109,111
Relational and Ordering :
064,075,082,089,096,113
Posets and Lattices :
061,067,078,087,095,106
Boolean Algebra :
062,073,083,091,097,112
Labels:
BCA Semester-2,
Mathematics
Saturday, June 29, 2013
Download DFS PPT Material's Files
Hello, SY-BCA Students. Download this Data File Structure Material. Here is 4 files. If download link not working just comment below
Download below listed Files
Labels:
BCA Semester-3,
DFS,
PPTs
Friday, June 28, 2013
C++ Simple Program with Class
#include<stdio.h>
#include<iostream.h>
class student
{
char name[20];
int age;
public:
void getdata()
{
cin>>name;
cin>>age;
}
#include<iostream.h>
class student
{
char name[20];
int age;
public:
void getdata()
{
cin>>name;
cin>>age;
}
Labels:
BCA Semester-3,
C++
Monday, June 24, 2013
Friday, June 21, 2013
First Hello World ! C++ Program
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
cout<<"Hello World !";
getch();
}
#include<conio.h>
void main()
{
clrscr();
cout<<"Hello World !";
getch();
}
Labels:
BCA Semester-3,
C++
Monday, June 17, 2013
C++ File Maintain Instruction
This is instruction about How you have to maintain C++ Lab File :
File Color : "Yellow"
Submit Duration : Each 10 Programs
Program Output : Front of Program Codding (as image below)
Note: Don't write program's output backside of your current codding page. example Id you have written program 1 then its output must be front of its codding.
Labels:
BCA Semester-3,
C++,
Info
Tutorial: How to Install Microsoft Lookback Adapter
Today we are going to install Microsoft Lookback Adapter in our system. Here I have listed steps that you will able to install this adapter easily. Follow each steps one by one and if you getting any difficulty in between just be free and post your comment below post. I will help you out.
Steps : How to Install "Microsoft Lookback Adapter"
step 1: Go to your "Control Penal"
step 2: Now, Select "Hardware and Sound"
step 3: Click on "Device Manager"
Labels:
BCA Semester-3
Wednesday, June 12, 2013
Sunday, June 9, 2013
Download SMITGUIDE Application for your Android Device
Hello, Friends. Today i'm going to launch SMITGUIDE Application for your Android Device. Download this app and you will able to get update in your phone without opening real website.
Labels:
Info
Sunday, May 5, 2013
Learn CSS3 Transition Duration Effect with Example
Here I have uploaded html file, from which you can learn some CSS3 effects. Download this html file and run in your browser. Don't forget to check coding you will get better idea about coding if you understand it.
I have use : -wekit-transition-duration. so open this file in Google Chrome, Otherwise change -webkit- to your browser
You can use :
-webkit- for Goog;e Chrome & Safari Browsers
-moz- for Mozila Firefox
-ms- for Microsoft Internet Explorer
If you have any doubt just comment below...
Labels:
BCA Semester-2,
CSS3
Monday, April 22, 2013
Wednesday, April 17, 2013
Introduction about Linux in C Programming ( Linux Material )
Introduction
to Linux:-
Linux is a Unix-like
computer operating system assembled under the model of free and open source
software development and distribution.
The defining
component of Linux is the operating system kernel first released 5 October 1991
by Linus Torvalds.
Linux was originally
developed as a free operating system for Intel x86-based personal computers.
It is a leading
operating system on servers and other big iron systems such as mainframe
computers and supercomputers.
Labels:
BCA Semester-2,
Info
Tuesday, April 16, 2013
WAP to Illustrate use of Malloc Function
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,*p,
clrscr;
Labels:
BCA Semester-2,
C-Programs
Wednesday, April 10, 2013
Sunday, April 7, 2013
Most IMP Advanced C-Programming Questions (University Exam)
1.
State different between Array & Structure
with example
2.
Explain structure with pointer with suitable
example
3.
State different between Array with example
4.
State different between automatic & external
variable with example
5.
Different between Global Variable & Static
Variables with example
Labels:
BCA Semester-1,
C-Programs,
DBMS
Friday, April 5, 2013
Normalization Flow Chart
Normalization step by steps:-
1.
Check, If there are any comma separated value.
If yes then create a row for single data.
2.
Check for primary key, It must exist.
3.
Check weather Primary key -> Composite key.
If no, then table is already in 2nd Normalization Form. Else draw dependency
diagram and follow the process to convert table in 2NF. It removes partial
dependency.
4.
Check if there exists any Transitive dependency.
If no, Table already in 3NF.
Labels:
BCA Semester-2,
DBMS
Thursday, April 4, 2013
WAP Structure with File Handling
#include<stdio.h>
#include<conio.h>
struct product
{
int c;
char name[20];
int qty,cost;
}p[100];
Labels:
BCA Semester-2,
C-Programs
How to Draw House,Tree & Sun with C-Graphics
#include<graphics.h>
#include<conio.h>
void main()
{
int gd=DETECT ,gm;
int p[]={320,150,420,300,250,300,320,150};
initgraph(&gd,&gm,"C:\\TC\\BGI");
cleardevice();
Labels:
BCA Semester-2,
C-Programs
Tuesday, April 2, 2013
Wednesday, March 27, 2013
Maths Presentation Schedule
1.
Limit & Differentiation over
2.
Derivative 30
March
3.
Application of Derivative 2 April
4.
Integration 4
April
5.
Application of Integration 6 April
6.
Differential Equations 9 April
Labels:
BCA Semester-2,
Info,
Mathematics
IMP DBMS Information
1.
Problem with File System.
2.
Advantages & Disadvantages of DBMS.
3.
Function of DBMS.
4.
Relationship Types
5.
Hierarchical & Network Model
6.
Degree Data Abstract
7.
All kinds of Keys.
8.
Entity Rules
9.
Relation Set Operator
10.
Data Dictionary & Indexes
11.
ERModel & Normalization
12.
Cardinality, Weak Entity
o
DBMS -Database
Management System
o
DBTG -Database
Task Group
Labels:
BCA Semester-2,
DBMS
Saturday, March 16, 2013
Friday, March 15, 2013
Wednesday, March 13, 2013
Friday, March 8, 2013
Assignment 4 (DBMS)
1.
What is weak entity? How you know that a
particular entity is a weak entity explain with example.
2.
When do we call that two entities have a strong
relationship?
3.
Explain domain of any attributes.
4.
Write a very short note on existence dependence.
5.
Explain relationship participation in detail.
6.
What is relationship degree ?Explain all kind
of relationship degree why entity relationship is called recursive?
7.
Explain associative entities.
Labels:
BCA Semester-2,
DBMS
Sunday, March 3, 2013
Weak Entity and Strong Entities in DBMS
An entity set that does not possess sufficient attributes to form a
primary key is called a weak entity set. One that does have a primary
key is called a strong entity set.
For example,
The entity set transaction has attributes transaction-number, date and amount.
Different transactions on different accounts could share the same number.
These are not sufficient to form a primary key (uniquely identify a transaction).
For example,
The entity set transaction has attributes transaction-number, date and amount.
Different transactions on different accounts could share the same number.
These are not sufficient to form a primary key (uniquely identify a transaction).
Labels:
BCA Semester-2,
DBMS,
Info
Wednesday, February 27, 2013
List of C programs to be written in File (2nd Sem)
Dear Students,
Here is a list of programs which you are supposed to write in your file.
I am not specifying all the programs which we have done in the lab, but only some of the basic programs. Make sure that you have at least recorded all of them in your files.
Here is a list of programs which you are supposed to write in your file.
I am not specifying all the programs which we have done in the lab, but only some of the basic programs. Make sure that you have at least recorded all of them in your files.
Structures in C :
- To display mark sheet of one student, where student is defined as structure as per its attributes.
- To display mark sheet of such n students, as per previous program.
- Create a structure bank and perform following functions :
Labels:
BCA Semester-2,
C-Programs
Friday, February 22, 2013
Download all C- Programs (sem-2)
Hello, Friends we have got all the C Programs which we have done in C Lab. If you want any program then download given below file, Its contains all the programs.
Labels:
BCA Semester-2,
C-Programs
Monday, February 4, 2013
Saturday, February 2, 2013
Friday, February 1, 2013
IMP Questions for Computer Organization
- What’s Hardware and Software?
- What’s Application and System Software?
- Explain Computer Organization & Functional Units
- Explain Main Memory & Auxiliary Memory
- What’s Device Controller?
Labels:
BCA Semester-2,
Info
Wednesday, January 30, 2013
Count Array elements with Pointers ( homework )
#include<stdio.h>
#include<conio.h>
void main()
{
int a[20],i,*p,ct=0,n;
clrscr();
Labels:
BCA Semester-2,
C-Programs
Tuesday, January 22, 2013
Learn Pointer easily with Hindi
Friends watch this video you will get how pointer work.
Labels:
BCA Semester-2,
C-Programs,
Info
DBMS Assignment 2 Questions
Q.1 Describe the below mentioned topics and their advantages and disadvantages.
1. Hierarchical Model
2. Network Model
3.Relational Model
4.Entity Relational Model
Labels:
BCA Semester-2,
DBMS
Friday, January 18, 2013
Degrees of Data Abstraction
Hello Students,
Here is a wonderful documentation of three schema architecture of DBMS or Degrees of Data abstraction..
http://www.myreadingroom.co.in/images/stories/docs/dbms/degrees%20of%20data%20abstraction.pdf
-Shalini
Here is a wonderful documentation of three schema architecture of DBMS or Degrees of Data abstraction..
http://www.myreadingroom.co.in/images/stories/docs/dbms/degrees%20of%20data%20abstraction.pdf
-Shalini
Labels:
BCA Semester-2,
DBMS
Thursday, January 17, 2013
Computer Organization Assignment 1 Questions
- Define: Program, Instruction set, Hardware & software.
- What is can Operating System?
- List out the main function of an Operating System.
- Explain in details the function units of computer with the help of the diagram.
- Explain in brief the concept of stored program.
Labels:
BCA Semester-2
Thursday, January 10, 2013
Bank App : Costumer Name, Account Number,Balance, Withdrew, Deposit etc. (C Program)
#include<stdio.h>
#include<conio.h>
struct bank
{
char name[20];
int an,bal;
};
Labels:
BCA Semester-2,
C-Programs
Tuesday, January 8, 2013
Create Structure for take input all Bank Information. (Bank App)
#include<stdio.h>
#include<conio.h>
#include<conio.h>
struct bank
{
char bname[20],name[20];
long int acn,bl,wid,dep;
}v;
{
char bname[20],name[20];
long int acn,bl,wid,dep;
}v;
Labels:
BCA Semester-2,
C-Programs
Sunday, January 6, 2013
Account Ration Analysis Formulas
All Account Ration Analysis Formulas :
Labels:
Accounts,
BCA Semester-2,
Info
Tuesday, January 1, 2013
Name of 5 DBMS Softwares
* Oracle
* SQL server
* Fox Pro
* MS-Access
* Sequel-Pro(mac)
Labels:
BCA Semester-2,
DBMS
8 Problems With File System Management
(1) Data Redundancy
Data Redundancy means same information is duplicated in several files. This makes data redundancy.
(2) Data Inconsistency
Data Inconsistency means different copies of the same data are not matching. That means different versions of same basic data are existing. This occurs as
Data Redundancy means same information is duplicated in several files. This makes data redundancy.
(2) Data Inconsistency
Data Inconsistency means different copies of the same data are not matching. That means different versions of same basic data are existing. This occurs as
Labels:
BCA Semester-2
Subscribe to:
Posts (Atom)