Moumita has Published 162 Articles

What are Repeaters in Computer Network?

Moumita

Moumita

Updated on 09-Sep-2023 23:35:00

33K+ Views

Repeaters are network devices operating at physical layer of the OSI model that amplify or regenerate an incoming signal before retransmitting it. They are incorporated in networks to expand its coverage area. They are also known as signal boosters.Why are Repeaters needed?When an electrical signal is transmitted via a channel, ... Read More

What are the IEEE 802.11 Wireless LAN Standards?

Moumita

Moumita

Updated on 07-Sep-2023 00:51:38

37K+ Views

IEEE 802.11 standard, popularly known as WiFi, lays down the architecture and specifications of wireless LANs (WLANs). WiFi or WLAN uses high frequency radio waves for connecting the nodes.There are several standards of IEEE 802.11 WLANs. The prominent among them are 802.11, 802.11a, 802.11b, 802.11g, 802.11n and 802.11p. All the ... Read More

Shortest Path algorithm in Computer Network

Moumita

Moumita

Updated on 06-Sep-2023 21:32:55

43K+ Views

In computer networks, the shortest path algorithms aim to find the optimal paths between the network nodes so that routing cost is minimized. They are direct applications of the shortest path algorithms proposed in graph theory.ExplanationConsider that a network comprises of N vertices (nodes or network devices) that are connected ... Read More

What are Gateways in Computer Network?

Moumita

Moumita

Updated on 06-Sep-2023 11:19:36

41K+ Views

A gateway is a network node that forms a passage between two networks operating with different transmission protocols. The most common type of gateways, the network gateway operates at layer 3, i.e. network layer of the OSI (open systems interconnection) model. However, depending upon the functionality, a gateway can operate ... Read More

What are Routers in Computer Network?

Moumita

Moumita

Updated on 02-Sep-2023 13:46:41

44K+ Views

Routers are networking devices operating at layer 3 or a network layer of the OSI model. They are responsible for receiving, analysing, and forwarding data packets among the connected computer networks. When a data packet arrives, the router inspects the destination address, consults its routing tables to decide the optimal ... Read More

What are Hub and Switch in Computer Network?

Moumita

Moumita

Updated on 02-Sep-2023 12:19:27

55K+ Views

HubsA hub is a physical layer networking device which is used to connect multiple devices in a network. They are generally used to connect computers in a LAN.A hub has many ports in it. A computer which intends to be connected to the network is plugged in to one of ... Read More

What are Switches in Computer Network?

Moumita

Moumita

Updated on 02-Sep-2023 10:35:46

62K+ Views

Switches are networking devices operating at layer 2 or a data link layer of the OSI model. They connect devices in a network and use packet switching to send, receive or forward data packets or data frames over the network.A switch has many ports, to which computers are plugged in. ... Read More

ALOHA Protocol in computer network

Moumita

Moumita

Updated on 02-Sep-2023 10:08:55

76K+ Views

ALOHA is a multiple access protocol for transmission of data via a shared network channel. It operates in the medium access control sublayer (MAC sublayer) of the open systems interconnection (OSI) model. Using this protocol, several data streams originating from multiple nodes are transferred through a multi-point transmission channel.In ALOHA, ... Read More

Directed Acyclic Graph (DAG)

Moumita

Moumita

Updated on 22-Feb-2021 11:57:05

12K+ Views

DefinitionIn computer science and mathematics, a directed acyclic graph (DAG) refers to a directed graph which has no directed cycles.ExplanationIn graph theory, a graph refers to a set of vertices which are connected by lines called edges. In a directed graph or a digraph, each edge is associated with a ... Read More

Dijkstra’s algorithm to compute the shortest path through a graph

Moumita

Moumita

Updated on 22-Feb-2021 11:38:19

18K+ Views

DefinitionThe Dijkstra’s algorithm finds the shortest path from a particular node, called the source node to every other node in a connected graph. It produces a shortest path tree with the source node as the root. It is profoundly used in computer networks to generate optimal routes with the aim ... Read More

Advertisements