Skip to main content

What is network? What are the different types of network? Example.

Answer:

Network: A network is a group of two or more computer systems linked together. Examples include local-area networks (LANs) and wide-area networks (WANs).



Different types of network: Computer network can be classified into three classes_
1.      LAN (Local Area Network).
2.      MAN (Metropolitan Area Network).
3.      WAN (Wide Area Network).

LAN (Local Area Network):This is one of the original categories of network, and one of the simplest.  LAN networks connect computers together over relatively small distances, such as within a single building or within a small group of buildings.

MAN (Metropolitan Area Network):This is another of the original categories of network, and slightly more complex in nature. WAN networks connect computers together over large physical distances, remotely connecting them over one huge network and allowing them to communicate even when far apart. The Internet is a WAN, and connects computers all around the world together.


WAN (Wide Area Network):This is a network which is larger than a LAN but smaller than a WAN, and incorporates elements of both. It typically spans a town or city and is owned by a single person or company, such as a local council or a large company.

Popular posts from this blog

Draw the basic organization of computer

Answer:                 The basic organization of computer__ Input Unit: ·          It accepts (or reads) instructions and data from outside. ·          It converts these instructions and data in computer acceptable form ·          It supplies the converted instructions and data to the computer system for further processing. Central Processing Unit (CPU): Control Unit: Control unit of a computer system manages and coordinates the operations of all other components of the computer system. Arithmetic Logic Unit(ALU): Arithmetic logic unit of a computer system is the place, where the actual executions of instruction, takes place during processing operation. Storage Unit: Primary Memory: It is volatile ( loses data on power dissipation). It is used to hold running program instruction, data, intermediate results, and results of ongoing processing of jobs. Secondary Memory: It i

Describe the four basic data types. How could we extend the range of values they represent?

Answer: The basic four data types are: Data Type Integer Type Character Type Floating Point Type Void Type signed int short int long int unsigned unsigned int unsigned short int unsigned long int char signed char unsigned char float double long double