WHAT'S NEW?
Loading...

Important Networking Acronyms

Networking Acronyms'
AAL     ->ATM Adaptation Layer
AM      ->Amplitude Modulation
AMI     ->Alternate Mark Inversion
ANS     ->American National Standard
ANSI    ->American National Standard Institute
ARQ     ->Automatic Repeat Request
ASCII   ->American Standard Code for Information Interchange
ASK     ->Amplitude-Shift Keying
ATM     ->Asynchronous Transfer Mode
B-ISDN  ->Broadband ISDN
BOC     ->Bell Operating Company
CBR     ->Constant Bit Rate
CCITT   ->International Consultative Committee on Telegraphy and Telephony
CIR     ->Committed Information Rate
CRC     ->Cyclic Redundancy Check
CSMAICD ->Carrier Sense Multiple Access with Collision Detection
DCE     ->Data Circuit-Terminating Equipment
DES     ->Data Encryption Standard
DTE     ->Data Terminal Equipment
FCC     ->Federal Communications Commission
FCS     ->Frame Check Sequence
FDDI    ->Fiber Distributed Data Interface
FDM     ->Frequency-Division Multiplexing
FSK     ->Frequency-Shift Keying
FTP     ->File Transfer Protocol
FM      ->Frequency Modulation
HDLC    ->High-Level Data Link Control
HTTP    ->Hypertext Transfer Protocol
ICMP    ->Internet Control Message Protocol
IDN     ->Integrated Digital Network
IEEE    ->Institute of Electrical and Electronics Engineers
IETF    ->Internet Engineering Task Force
IP      ->Internet Protocol
IPng    ->Internet Protocol - Next Generation
ISDN    ->Integrated Services Digital Network
IS0     ->International Organization for Standardization
ITU     ->International Telecommunication Union
ITU-T   ->ITU Telecommunication Standardization Sector
LAN     ->Local Area Network
LAPB    ->Link Access Procedure-Balanced
LAPD    ->Link Access Procedure on the D Channel
LAPF    ->Link Access Procedure for Frame Mode Bearer Services
LLC     ->Logical Link Control
MAC     ->Medium Access Control
MAN     ->Metropolitan Area Network
MIME    ->Multi-Purpose Internet Mail Extension
NRZI    ->Nonreturn to Zero, Inverted
NRZL    ->Nonreturn to Zero, Level
NT      ->Network Termination
OSI     ->Open Systems Interconnection
PBX     ->Private Branch Exchange
PCM     ->Pulse-Code Modulation
PDU     ->Protocol Data Unit
PSK     ->Phase-Shift Keying
PTT     ->Postal, Telegraph, and Telephone
PM      ->Phase Modulation
QOS     ->Quality of Service
QPSK    ->Quadrature Phase Shift Keying
RBOC    ->Regional Bell Operating Company
RF      ->Radio Frequency
RSA     ->Rivest, Shamir, Adleman Algorithm
SAP     ->Service Access Point
SDH     ->Synchronous Digital Hierarchy
SDU     ->Service Data Unit
SMTP    ->Simple Mail Transfer Protocol
SOAP    ->Simple Object Access Protocol
SONET   ->Synchronous Optical Network
TCP     ->Transmission Control Protocol
TDM     ->Time-Division Multiplexing
TE      ->Terminal Equipment
UNI     ->User-Network Interface
URI     ->Universal Resource Identifier
URL     ->Uniform Resource Locator
VAN     ->Value-Added Network
VBR     ->Variable Bit Rate
VCC     ->Virtual Channel Connection
VPC     ->Virtual Path Connection
WWW     ->World Wide Web

Get a Soft Copy of Your Aadhar Card - E-Aadhar

Get a Soft Copy of Your Aadhar Card - E-Aadhar


Hey guyz,

Whoever have not got Aadhar card,and still wanna need it or use it.
So follow following step to get a valid soft copy of Aadhar Card.

Goto:
http://eaadhaar.uidai.gov.in/

And all you need is Enrollment no and the date and time of registering on Aadhar.
This is mentioned on you Aadhar card's receipt.

1. Enter Your Enrollment Number:
2. After that enter your Date and Time of Registration:
3. In Resident Name: Enter your Name and Surname as noted on Aadhar Card.
4. After that enter your PIN
5. At last enter CAPTCHA code given in that image.

This all complete verification.
Now its time of validation.Now you will display last 04 digit of your mobile number which you have given at the time of registration of Aadhar.
Or if you have changed your mobile or it may lost.Click on "No" button.And Enter your new mobile number.

Now One Time Password(OTP) will be sent on your mobile number.
Enter this for validation.

Now you will get a link to download your E-Aadhar.

Download your E-Aadhar.
Your area's PIN is the password of that pdf.

If it asks for validation,click here for more details of validation:

http://eaadhaar.uidai.gov.in/ValidateDocumnet/ValidateDigitalSignatures.htm


P.S. : Don't give your information to other. They can get easily your        Aadhar card with that information and use it as proof on behalf       on them.

Create Your Website For Free - With Free Domain and Free Web Hosting

Create Your Website For Free-With Free Domain and Free Web Hosting
Hi Everyone,,,

If you are interested to have your own website,and with free hosting,then you can do after reading this.

Having website is a very good marketing tool for an Entrepreneur. And keeping this thing in mind, Govt. of India tied up with Google & Hostgator company to provide a way to new INDIAN entrepreneur to have a website so that he can develop his business.

There is a only valid limitation is that,you should have to give your PAN card no. or ur service tax bill no. to ensure that you are an INDIAN.

Firstly On that site you have to choose a available domain with ".in" extension,after that you have to fill all the details according you or your company.
And at last you have to configure your site.

If you have any problem in configuring your website,they're given support for you.Some PDFs are available for you to  guide how to improve your site to gain more customers and increase your business.


I insist all the entrepreneurs of India,utilize this utility and share with others so that more entrepreneurs will be available in India and ultimately Indian Economics will have a acceleration of growth, and which is very good for us to "Led India to A Developed Country."


Here is the link of this site:


http://www.indiagetonline.in


Free Online Courses

Free Online Courses
Free Online Courses

Standford University and Coursera company from United Kingdon(England) with 50 universities of U.K. offering free online courses under the name of MOOC(Mass Open Online Course).

If you are interested you can enroll with them.The syllabus is also superb that will brushup your old data and add high class data.And they are giving a certificate after successfull completion of the course. And this will definitely benifit at your campus as well as technical life.

I hope u all will like it.
So enjoy.
For course,click below link:

http:\\www.coursera.org

Magic Square Generation in 'C' Language with Example

Magic Square Generation in C
 /*  
  Magic Square:-   
    It is a square matrix whose row element's addition and column element's   
    addition and diagonal element's addition is same.   
    Read more about Magic Square:- http://en.wikipedia.org/wiki/Magic_square  
 */  
 #include<stdio.h>  
 #define MAX 100  
 int main()  
 {  
       int sqr[MAX][MAX];  
       int i,j,p,q,n;  
       int cnt=1;  
      label:  
       printf("\nEnter matrix size:");  
      scanf("%d",&n);  
       if(n%2==0)  
       {  
            printf("\nPlease enter odd number.");  
            goto label;  
       }  
       for(i=0;i<n;i++)  
            for(j=0;j<n;j++)  
                 sqr[i][j]=0;  
       i=p=q=0;  
       j=(n-1)/2;  
       sqr[i][j]=cnt++;  
       do  
       {  
            if(i==0)  
                 p=n-1;  
            else  
                 p=i-1;  
            if(j==0)  
                 q=n-1;  
            else  
                 q=j-1;  
            if(sqr[p][q])  
            {  
                 p=i+1;  
                 q=j;  
                 sqr[p][q]=cnt++;  
            }  
            if(sqr[p][q] == 0)  
                 sqr[p][q]=cnt++;  
            i=p;  
            j=q;  
       }while(cnt != (n*n)+1);  
       printf("\nMagic Square is:\n");  
       for(i=0;i<n;i++)  
       {  
            for(j=0;j<n;j++)  
                 printf("\t%d",sqr[i][j]);  
            printf("\n");  
       }  
      return 0;  
 }