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...