Sudhir sharma has Published 1149 Articles

Spread Spectrum Communications - Definition & Techniques

sudhir sharma

sudhir sharma

Updated on 27-Feb-2023 11:52:09

1K+ Views

Spread Spectrum Communication, a technique used to enhance the reliability and security of wireless transmissions. Spread spectrum communication involves spreading a signal over a wide range of frequencies, which makes it difficult for unauthorized users to intercept or jam the signal. This technique employs different methods to spread the signal, ... Read More

How Applications Coexist over TCP and UDP?

sudhir sharma

sudhir sharma

Updated on 27-Feb-2023 11:48:41

621 Views

When computers communicate over the internet, they follow a set of rules and protocols to ensure that data reaches its intended destination. These protocols outline how data is sent, received, and processed by computers, and are necessary for ensuring that the communication is successful. Transmission Control Protocol (TCP) is a ... Read More

2-tier and 3-tier Architecture in Networking

sudhir sharma

sudhir sharma

Updated on 27-Feb-2023 11:43:42

4K+ Views

Architecture in networking refers to the way a network is designed and organized, serving as the blueprint for the interaction and cooperation between different components and systems. Effective network architecture is crucial for a successful network setup and requires careful planning and design. When it comes to classifying network architecture, ... Read More

The Symmetric Cipher Model

sudhir sharma

sudhir sharma

Updated on 27-Feb-2023 11:40:54

3K+ Views

Encrypting sensitive information is like locking up your valuables in a strongbox, making sure that only those with the key can access it. And one tried and true method for doing so is the Symmetric Cipher Model, also known as Secret Key Cryptography. This encryption model is like having a ... Read More

How to hide an IP address

sudhir sharma

sudhir sharma

Updated on 27-Feb-2023 11:32:07

714 Views

An IP address is like a digital fingerprint, revealing your location and identity online. But just like how you can put on a disguise to hide your physical identity, you can also conceal your IP address to protect your privacy and security. Here are a few methods to do so ... Read More

Find the smallest after deleting given elements using C++

sudhir sharma

sudhir sharma

Updated on 14-Feb-2022 09:21:12

166 Views

In this problem, we are given two arrays arr[] and del[]. Our task is to find the smallest after deleting given elements.We will be deleting values from the array arr[] that are present in del[]. And then print the smallest value after deletion.Let’s take an example to understand the problem, ... Read More

Find the slope of the given number using C++

sudhir sharma

sudhir sharma

Updated on 14-Feb-2022 09:16:48

407 Views

In this problem, we are given a number N. Our task is to find the slope of the given number.Slope of a number is the total number of maxima and minima digits in the number.Maxima digit is the digit whose both neighbours (previous and next) are smaller.Maxima digit is the ... Read More

Minimum Fibonacci terms with sum equal to K in C++

sudhir sharma

sudhir sharma

Updated on 14-Feb-2022 09:13:05

281 Views

In this problem, we are given a number K. Our task is to find the Minimum Fibonacci terms with sum equal to K.Fibonacci Series generates subsequent numbers by adding two previous numbers. The Fibonacci series starts from two numbers − F0 & F1. The initial values of F0 & F1 ... Read More

Maximum occurred integer in n ranges using C++

sudhir sharma

sudhir sharma

Updated on 14-Feb-2022 07:59:13

529 Views

In this problem, we are given N ranges. Our task is to maximum occurred integer in n ranges.For the starting and ending value of all ranges. We need to find the value which occurs the most.Let’s take an example to understand the problem, Input S1 = 1, E1 = 3 ... Read More

Find the Nth term of the series 14, 28, 20, 40,….. using C++

sudhir sharma

sudhir sharma

Updated on 14-Feb-2022 07:52:06

339 Views

In this problem, we are given an integer value N.Our task is to find the nth term of the series −14, 28, 20, 40, 32, 64, 56, 112….Let’s take an example to understand the problem, InputN = 6Output64Solution ApproachTo find the Nth term of the series we need to find ... Read More

Advertisements