Wednesday, September 19, 2012

Turbo C Full Screen for Windows 7


  • First Download this Turbo C Software.
  • File is present on mediafire , so download to your computer and its a zipped file. You need to unzip the file.
  • An EXE file is present , just click on install it.
  • After installation you can see short cut icon on your desktop like this
  • Just click on short cut icon. The Turbo c will open in full screen Mode in windows 7 .
  • Everything works cool .
  • Before closing the turbo c, you will get a command prompt. No need to worry just type  ”EXIT” and press enter.

Thursday, September 13, 2012

HTML (LAB) Homework

<html>
<head>
<title>Angulat Tag</title>
<body vlink="green" alink="red">
</head>
<center>
<h1> Anglular tag</h1>
<font face="Comic Sans MS, cursive" size="+3"

Demerits (Disadvantages) of Word-Processor


  • Problem with programs
  • the untimely shutdown
  • so many option hard to learn
  • Data deleted if light cut off ( If didn't saved )
  • Required computer and electric power
  • Require printer
  • Hundred of symbols not easily accessed on a keyboard.

Download PPT5 of Business Communication

New PPT Unit 5 have arrived lets download in your Computer or Mobile

Monday, September 10, 2012

Assignment 1 Introduction of Internet


1. What is a computer network? How its work?
2. Explain a brief concept of internet.
3. Write a short note on the different type of network classified on the basic geographic are that it spans.
4. Explain in brief the following terms SAN, DAN & PAN
5. What is network topology? List out the different type of topologies.
6. Explain in details the below given network topology with help of diagram, clearly starting its advantages as   well as disadvantages.
- Bus Topology
- Ring Topology
- Star Topology
- Tree Topology
- Mesh Topology
7. Which Topology utilizes maximum cable?
8. What is Dial-Up access? Which device required for dial up internet connection?
9. State full form of ISDN, DSN and ADSL.
10. List out the different type of internet connection and explain each in brief.
11. What is URL? Explain in brief the tree main part of URL.
12. Write a note on IP Address.
13. State clearly the difference between Public IP Addresses and Private IP Addresses.
14. Explain in brief the concept of ISP.
15. State clearly the similarities and differences in INTRANET, EXTRANET and VPN.

Switch case find Larger & Smaller Value


#include<stdio.h>
#include<conio.h>
void main()
{
char i;
int x,y;
clrscr();

printf("Enter X value");
scanf("%d",&x);
printf("Enter Y Value");
scanf("%d",&y);

printf("\n\nFor see Largest Number Enter L\n");
printf("For see Smaller Number Enter S");
printf("\n\nEnter Code");
scanf("%s",&i);

switch(i)
{
case 'l':
{
if(x>y)
{
printf("X is Large");
}
else
{
printf("Y is Large");
}
break;
}
case 's':
{
if(x<y)
{
printf("X is smaller");
}
else
{
printf("Y is smaller");
}
break;
}
}
getch();
}

Sunday, September 9, 2012

WAP to find EVEN numbers using FOR LOOP


#include<stdio.h>
#include<conio.h>
void main()
{
int i;
clrscr();
for(i=1; i<=10; i++)
{
if(i%2==0)
{
printf("%d\n",i);
}
}
getch();

}

Tuesday, September 4, 2012

Download C-Lab Programs with Answers

Here I have uploaded all answers of our new C Assignment.