Skip to main content

what is computer network and their types ?

  what is network ?

- A network is a group of two or more computer systems, which are connected together. It also consist of a collection of computers, printers, scanner and other devices that are liked together.

Networking has single purpose to share information as fast as possible.

 

The basic types of network-

1) LAN - LAN stands for Local Area Network. It is used to network computers within a limited area like office, school by using the network media.

2) CAN - Campus Area Network is an interconnection of local area networks within limited geographical area. campus network can be additional to the set of wireless connections. connects several buildings to the same network. Example, corporate office campus, university.

3) MAN - MAN means Metropolitan Area Network, which optimized for a larger geographic area than a LAN, ranging from several blocks of buildings to entire city.

4) WAN - WAN is Wide Area Network that is network connection of wide area such as the world. ex.     Internet
5)PAN -PAN is a Personal Area Network which is referred to the interconnection of information technology devices mostly up to 10 meters. These interconnected devices include laptop, computers, mobiles, or other devices. It also known as wireless PAN.

 Broad Network Categories-
1. peer-to-peer networks - P2P networks involve to or more computers pooing individual resources such as disk drive.  Each computer acts as both the client and the server. These computers are directly communicate with the other computers.

2. Client-Server Networks - This involves  multiple client networks which are connected to at least a central server on network where applications are installed. Clients needs access to these server resources, they can access them only from the server. It is easier to upgrade software applications and files because it held on a single server computer. Security is assured in this model of network as the server controls access and permission to the resources.


Comments

Popular posts from this blog

Levels of Software Testing

   Levels of Software Testing There are various testing levels one of which is unit testing in which the smallest testable part of an application is testing for correctness. In integration testing we check the system when we linking  the various modules.  In system testing we check the system as a whole from customers’ viewpoint. Acceptance testing tries to check whether the system is acceptable by most of the users. Alpha testing is carried out at developer’s site and beta is at customer’s site. A Testers workbench is a virtual environment used to verify the correctness or soundness of a design or model. 11 step testing process is a experience based practical approach for solution to a test assignment.     UNIT TESTING -        Unit testing is a software development process in which the smallest testable parts of an application, called units, are individually and independently scrutinized for proper operation. Unit testing is often...

PL / SQL IN DBMS

                                          PL / SQL   Pl/SQL    state Loops in PL/SQL   Built in Function     Cursor Management     Exception INTRODUCTION   PL/SQL stands for Procedural Language/SQL. PL/SQL extends SQL by adding constructs found in procedural languages,  resulting in a structural language that is more powerful than  SQL.PL/SQL is not case sensitive. ‘C’ style comments (/* ……… */)  may be used in PL/SQL programs whenever required.   All PL/SQL programs are made up of blocks, each block performs  a logical action in the program. A PL/SQL block consists of three parts  1. Declaration section   2. Executable section   3. Exception handling section  Only the executable section is required. The other sections are  optional.  A PL/SQL block h...