Friday, September 21, 2012

C - ASCII TABLE




A             -              Z               65           -              90
  A             -              z              97           -              122
0              -              9              48           -              57


Subscribe SMIT Blog via SMS



Now, we have another way to stay connected with SMIT Guide Blog. You all are using mobile so we have started new SMS service which will get you update with blog news exe. If SMIT Blog published any new post as soon as you will get message in your mobile. Which good to keep update. So how to subscribe Blog channel follows below steps for subscribe.

1.      One way is click on below link. It will as you “Would you like to subscribe to the channel SMIT_GUIDE?” Click on YES button.


Yeah, some peoples are saying that I’m getting error, I can’t subscribe. Its ok here is second way to subscribe.

2.      In this step you have to send one Message to given number It maybe charge Rs. 1/-

ON SMIT_GUIDE     to     +919870807070

So, friends here are two ways to subscribe. Let’s do now and keep connected with SMIT_GUIDE Blog.

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();

}