BCA Raipur - BCA Notes S-1

Post your notes and other just by mailing us at bcaraipur@live.com

google search

Popular Posts


Welcome to BCA Notes

>>>>>>>>>>>>>>>>

Visitors

Search This Blog

Blogger templates

Visitor Map


Friday, 5 June 2015

Create a Program to change background colour USING setbkcolour function in cpp?

Create a Program to change  background colour USING setbkcolour function in cpp? #include<stdio.h> #include<conio.h> #include<graphics.h> #include<iostream.h> int main() {    int gd=DETECT,gm;    //graphic construct is DETECT    initgraph(&gd,&gm,"c:\\TurboC3\\BGI\\");    //init graph has three parameter graphic driver graphic mode,bgi graphic path setbkcolor(10);    clrscr();    //                ...

Create a LINE USING line function in cpp?

2. Create a LINE USING line function in cpp? #include<stdio.h> #include<conio.h> #include<graphics.h> #include<iostream.h> int main() {    int gd=DETECT,gm;    //graphic construct is DETECT    initgraph(&gd,&gm,"c:\\TurboC3\\BGI\\");    //init graph has three parameter graphic driver graphic mode,bgi graphic path    clrscr();    //                 clear screen    int...

Program to make a circle of circle with (100,100,100)

   1.     Program to make a circle of circle with (100,100,100) Source Code:- #include<stdio.h> #include<conio.h> #include<graphics.h> int main() {    int gd=DETECT,gm;    //graphic construct is DETECT    initgraph(&gd,&gm,"c:\\TurboC3\\BGI\\");    //init graph has three parameter graphic driver graphic mode,BGI graphic path    clrscr();    //                ...

Wednesday, 3 June 2015

Visual Basic .Net Interview and VIVA questions

1. What is Metadata? Metadata is termed as “Data about content of the data” and it is found in the catalog of libraries. Practically, it is used at back side of book to see the necessary topic. 2. What is the difference between VB and VB.Net? Following are the differences between VB and VB.Net: VB VB.Net Platform dependentPlatform Independent VB is backward compatibleVB.Net is not backward compatible InterpretedCompiler Language Exception Handling by ‘On Error…..Goto’Exception Handling by ‘Try….Catch’ Cannot develop multi-threaded applicationsCan...

Sunday, 31 May 2015

Computer Graphics Notes Part-I

   1. What is Computer Graphics? ●       Creation, Manipulation, and Storage of geometric objects (modeling) and their images (rendering) ●       Display those images on screens or hard copy devices ●       Image processing ●       Others: GUI, Haptics, Displays (VR)...    2. What drives computer graphics? ●       Game Industry –        The...

Friday, 29 May 2015

Array in Vb.net

Array:- An array stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. All arrays consist of contiguous memory locations. The lowest address corresponds to the first element and the highest address to the last element. Creating Arrays in VB.Net To declare an array in VB.Net,...