Bhanu Priya

Bhanu Priya

1,060 Articles Published

Articles by Bhanu Priya

Page 64 of 106

What is traffic aware routing in computer networks?

Bhanu Priya
Bhanu Priya
Updated on 11-Sep-2021 5K+ Views

Traffic awareness is one of the approaches for congestion control over the network. The basic way to avoid congestion is to build a network that is well matched to the traffic that it carries. If more traffic is directed but a low-bandwidth link is available, congestion occurs.The main goal of traffic aware routing is to identify the best routes by considering the load, set the link weight to be a function of fixed link bandwidth and propagation delay and the variable measured load or average queuing delay.Least-weight paths will then favour paths that are more lightly loaded, remaining all are ...

Read More

What is physical layer coding violation?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 5K+ Views

Data link layer translates the physical layers raw bit stream into discrete messages called frames. Now the question is how can a frame be transmitted, so the receiver can recognize the start and end frame?TechniquesThe techniques we used to find the start and end frame are −Character countFlag byte with byte stuffingStarting and ending flag with bit stuffingEncoding Violation.Now let us see the Physical layer encoding violation technique.Physical layer encoding violationThis framing method is used only in those networks in which encoding on the physical medium contain some redundancy.Some LANs encode each bit of data by using two physical bits ...

Read More

What is the character count? Explain with an example?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 13K+ Views

Data link layer translates the physical layers raw bit stream into discrete messages called frames. Now the question is how can a frame be transmitted, so the receiver can recognize the start and end frame?TechniquesThe techniques we used to find the start and end frame are −Character countFlag byte with byte stuffingStarting and ending flag with bit stuffingEncoding Violation.Now let us see the character count technique.Character CountFirst framing method uses a field in the header to specify the number of characters in the frame. When the data link layer at the destination sees the character count, it knows how many ...

Read More

What are elementary data link layer protocols?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 32K+ Views

Elementary Data Link protocols are classified into three categories, as given below −Protocol 1 − Unrestricted simplex protocolProtocol 2 − Simplex stop and wait protocolProtocol 3 − Simplex protocol for noisy channels.Let us discuss each protocol one by one.Unrestricted Simplex ProtocolData transmitting is carried out in one direction only. The transmission (Tx) and receiving (Rx) are always ready and the processing time can be ignored. In this protocol, infinite buffer space is available, and no errors are occurring that is no damage frames and no lost frames.The Unrestricted Simplex Protocol is diagrammatically represented as follows −Simplex Stop and Wait protocolIn ...

Read More

What is baseband transmission in computer networks?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 7K+ Views

Digital Modulation is the process of converting between bits and signals.Transmission MechanismsThe various modulation schemes result in various transmission mechanisms which are as follows −Baseband transmission.Passband transmission.Multiplexing TechniquesSharing of a transmission channel by various signals is called multiplexing. The different multiplexing techniques are as follows −Time division multiplexing.Frequency division multiplexing.Code division multiplexing.Now, let us discuss one of the digital modulation schemes.Baseband TransmissionBaseband transmission is transmission of the encoded signal using its own baseband frequencies i.e. without any shift to higher frequency ranges. It is used for short distances.Steps in Baseband TransmissionLet us understand the baseband transmission step by step.Step 1 ...

Read More

What are wireless networks?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 3K+ Views

Digital wireless communication is not a new idea. Earlier, Morse code implemented the wireless network. Now-a-days, the modern digital systems use wireless systems of the same idea as Morse code as implemented but with better performance.Categories of Wireless NetworksWireless Networks are divided into three categories as explained below −System InterconnectionIt is all about interconnecting the components of a computer using short-range radio. Some companies together design a short-range wireless network called Bluetooth to connect various components like monitor, keyboard, mouse, printer etc, without wires.In simplest form, system interconnection networks use the master-slave concept. The system unit is normally the master. ...

Read More

What are the different types of Castings in computer networks?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 7K+ Views

Transmitting the data in the form of packets over the internet is called casting.Types of CastingsThe different types of casting are as follows −Unicast − Transmitting data from one host to another host (one-one)Broad cast − Transmitting data from one host to many host (one-all)Multicast − Transmitting data from one host to a particular group of host (one-many).Let us see each casting type in detail −UnicastTransmitting data from one source host to one destination host is called a unicast. It is called as a one to one transmission.For example − source Host IP Address 192.168.20.1 sending data to destination Host ...

Read More

What are the classifications of classful IP addresses?

Bhanu Priya
Bhanu Priya
Updated on 09-Sep-2021 3K+ Views

IP addresses are generally represented by a 32-bit unsigned binary value. It is represented in a dotted decimal format. For example, 9.250.7.5 is a valid IP address.The IP address consists of a pair of numbers −IP address = Class-based IP addressesThe first bits of the IP address specify how the rest of the address should be separated into its network and host part. This IP address consists of network ID and Host ID.Classes of IP addressThere are 5 classes of IP address in computer network, which are as follows −Class AClass BClass CClass DClass EThe numbers of IP addresses possible ...

Read More

C program to insert a node at any position using double linked list

Bhanu Priya
Bhanu Priya
Updated on 03-Sep-2021 2K+ Views

Linked lists use dynamic memory allocation and are collection of nodes.Nodes have two parts which are data and link.Types of Linked ListsThe types of linked lists in C programming language are as follows −Single / Singly linked lists.Double / Doubly linked lists.Circular single linked list.Circular double linked list.Double linked listThe diagram given below depicts the representation of double linked list.ExampleFollowing is the C program to insert a node at any position using double linked list − Live Demo#include #include struct node {    int num;    struct node * preptr;    struct node * nextptr; }*stnode, *ennode; void DlListcreation(int ...

Read More

C program to print Excel column titles based on given column number

Bhanu Priya
Bhanu Priya
Updated on 03-Sep-2021 850 Views

ProblemA program to print Excel column title that corresponds to a given column number (integer value). User has to enter the integer number based on given number it has to print excel column number.SolutionThe solution to print Excel column title that corresponds to a given column number in C programming language is explained below −Example 1Let us see an example.1 -> A 2 -> B ... 26 -> Z 27 -> AA 28 -> AB ...Example 2The input is as follows −number = 3 number = 27 number = 151The output is as follows −Excel column title: C Excel column ...

Read More
Showing 631–640 of 1,060 articles
« Prev 1 62 63 64 65 66 106 Next »
Advertisements