
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sudhir sharma has Published 1149 Articles

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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

sudhir sharma
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