
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 1205 Articles

sudhir sharma
13K+ Views
In this article, we'll show how to add two numbers using C++ and display the result. Adding two numbers is a basic arithmetic operation, meaning we combine their values to get a total. We will see different methods to solve this. Different Ways to Add Two Numbers in ... Read More

sudhir sharma
913 Views
Don't let hackers compromise your data! Stay informed about the vital distinctions between plaintext and cleartext with our must-read Article on cybersecurity today. Introduction In today's digital world, the importance of data security and encryption cannot be overstated. Among the many concepts in cybersecurity, two terms often used interchangeably—but with ... Read More

sudhir sharma
184 Views
Introduction In today's digital age, system security has become a critical aspect of protecting our valuable information and assets from harmful cyber threats. Whether it's safeguarding your personal data or securing an organization's network, cybersecurity plays a pivotal role in every aspect of our lives. As hacking techniques and malware ... Read More

sudhir sharma
3K+ Views
Write a C program to left rotate an array by n position. How to rotate left rotate an array n times in C programming. Logic to rotate an array to left by n position in C program.Input: arr[]=1 2 3 4 5 6 7 8 9 10 N=3 Output: 4 ... Read More

sudhir sharma
685 Views
In this problem, we are given an array bin[] of size n of binary strings. Our task is to create a program to find the Bitwise AND (&) of N binary strings. Here, we will take all numbers and find the bitwise AND of them i.e. bin[0] & bin[1] &... ... Read More

sudhir sharma
5K+ Views
Mutable data members are those members whose values can be changed in runtime even if the object is of constant type. It is just the opposite of a constant. Sometimes logic requires to use of only one or two data members as a variable and another one as a constant ... Read More

sudhir sharma
9K+ Views
In this problem, we are given an array arr[] consisting of N unsorted elements. Our task is to find the largest three elements in an array. Let's take an example to understand the problem Example Input : arr[] = {7, 3, 9, 12, 1} Output : 12, 9, 7 Solution ... Read More

sudhir sharma
404 Views
Want to know how some Websites fly to the first page of search engines and others fail to rank? The secret is typically rooted in a deeper comprehension of SEO. SEO is not just a single technique but a technique involving several factors aimed at improving your online visibility profile. ... Read More

sudhir sharma
4K+ Views
Introduction Are you struggling with slow query execution in your Database Management System (DBMS)? Actually, the fact is, parallelism in DBMS can significantly enhance the performance and speed of your queries. In this article, we'll unravel the concept of parallel query execution, its types - intraquery and interquery parallelism, their ... Read More

sudhir sharma
4K+ Views
Introduction Have you been grappled with slow database performance and clueless how to optimize it? Fact is, efficient physical database design and tuning can significantly enhance your database operations. In this enlightening article, we will unravel practical methods that revamp your system's speed by addressing bottlenecks, utilizing proper indexing strategies, ... Read More