Skip to content
Courses
DSA to Development
Machine Learning & Data Science
Generative AI & ChatGPT
Become AWS Certified
DSA Courses
Data Structure & Algorithm(C++/JAVA)
Data Structure & Algorithm(Python)
Data Structure & Algorithm(JavaScript)
Programming Languages
CPP
Java
Python
JavaScript
C
All Courses
Tutorials
Python
Python Tutorial
Python Programs
Python Quiz
Python Projects
Python Interview Questions
Python Data Structures
Java
Java Tutorial
Java Collections
Java 8 Tutorial
Java Programs
Java Quiz
Java Projects
Java Interview Questions
Advanced Java
Programming Languages
JavaScript
C++
R Tutorial
SQL
PHP
C#
C
Scala
Perl
Go Language
Kotlin
Interview Corner
System Design Tutorial
Company Preparation
Top Topics
Practice Company Questions
Interview Experiences
Experienced Interviews
Internship Interviews
Competitive Programming
Multiple Choice Quizzes
Aptitude for Placements
Computer Science Subjects
Operating System
DBMS
Computer Networks
Engineering Mathematics
Computer Organization and Architecture
Theory of Computation
Compiler Design
Digital Logic
Software Engineering
DevOps and Linux
DevOps Tutorial
GIT
AWS
Docker
Kubernetes
Microsoft Azure Tutorial
Google Cloud Platform
Linux Tutorial
Software Testing
Software Testing Tutorial
Software Engineering Tutorial
Testing Interview Questions
Jira
Databases
DBMS Tutorial
SQL Tutorial
PostgreSQL Tutorial
MongoDB Tutorial
SQL Interview Questions
MySQL Interview Questions
PL/SQL Interview Questions
Android
Android Tutorial
Android Studio Tutorial
Kotlin For Android
Android Projects
Android Interview Questions
6 Weeks of Android App Development
Excel
MS Excel Tutorial
Introduction to MS Excel
Data Analysis in Excel
Basic Excel Formulas & Functions
Data Analysis in Advanced Excel
Workbooks
Statistical Functions
Data Visualization in Excel
Pivot Tables in Excel
Excel Spreadsheets in Python
Basic Excel Shortcuts
Mathematics
Number System
Algebra
Linear Algebra
Trigonometry
Set Theory
Statistics
Probability
Geometry
Mensuration
Logarithms
Calculus
DSA
DSA Tutorial
Practice
Practice Coding Problems
Problem of the Day
GfG SDE Sheet
Competitive Programming
Company Wise SDE Sheets
Facebook SDE Sheet
Amazon SDE Sheet
Apple SDE Sheet
Netflix SDE Sheet
Google SDE Sheet
Top Interview Questions
Puzzles
All Puzzles
Top 100 Puzzles Asked In Interviews
Top 20 Puzzles Commonly Asked During SDE Interviews
Data Science
Python Tutorial
R Tutorial
Machine Learning
Data Science using Python
Data Science using R
Data Science Packages
Pandas Tutorial
NumPy Tutorial
Data Visualization
Python Data Visualization Tutorial
Data Visualization with R
Data Analysis
Data Analysis with Python
Data Analysis with R
Deep Learning
NLP Tutorial
Web Tech
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
PHP Tutorial
ReactJS Tutorial
NodeJS Tutorial
Bootstrap Tutorial
Typescript
Web Development Using Python
Django Tutorial
Flask Tutorial
Postman
Github
Cheat Sheets
HTML Cheat Sheet
CSS Cheat Sheet
JavaScript Cheat Sheet
React Cheat Sheet
Angular Cheat Sheet
jQuery Cheat Sheet
Bootstrap Cheat Sheet
Learn Complete Web Development
Trending Now
DSA
Web Tech
Foundational Courses
Data Science
Practice Problem
Python
Machine Learning
JavaScript
System Design
Django
DevOps Tutorial
Java
C
C++
ReactJS
NodeJS
CP Live
Aptitude
Puzzles
Projects
Sign In
▲
Similar Topics
DSA
22.3k+ articles
Python
20.1k+ articles
Mathematical
7.7k+ articles
Arrays
6.4k+ articles
Strings
3.2k+ articles
C++ Programs
2.5k+ articles
School Programming
1.4k+ articles
Matrix
1.2k+ articles
Geometric
690+ articles
CBSE - Class 11
100 articles
school-programming
230+ posts
Popular Articles
Recent Articles
Program to find Prime Numbers Between given Interval
Last Updated: 24 December 2024
Given two numbers m and n as interval range, the task is to find the prime numbers in between this interval.Examples:Input: m = 1, n = 10Out
...read more
Mathematical
Prime Number
school-programming
C Programs
Technical Scripter 2018
DSA
Understanding file sizes | Bytes, KB, MB, GB, TB, PB, EB, ZB, YB
Last Updated: 23 October 2024
The memory of a Computer is any physical device that is capable of storing information whether it is large or small and stores it temporaril
...read more
School Programming
Operating Systems-Memory Management
school-programming
CBSE - Class 11
Random Access Memory (RAM) and Read Only Memory (ROM)
Last Updated: 27 December 2024
Memory is a fundamental component of computing systems, essential for performing various tasks efficiently. It plays a crucial role in how
...read more
Operating Systems
GATE CS
School Programming
school-programming
Computer Organization & Architecture
CBSE - Class 11
Similar Topics
DSA
22.3k+ articles
Python
20.1k+ articles
Mathematical
7.7k+ articles
Arrays
6.4k+ articles
Strings
3.2k+ articles
C++ Programs
2.5k+ articles
School Programming
1.4k+ articles
Matrix
1.2k+ articles
Geometric
690+ articles
CBSE - Class 11
100+ articles
Types of Operating Systems
Last Updated: 23 January 2025
Operating Systems can be categorized according to different criteria like whether an operating system is for mobile devices (examples Androi
...read more
Operating Systems
GATE CS
School Programming
school-programming
CBSE - Class 11
Introduction to Operating System
Last Updated: 03 April 2025
An operating system acts as an intermediary between the user of a computer and computer hardware. In short its an interface between computer
...read more
Operating Systems
GATE CS
school-programming
CBSE - Class 11
Program to find the minimum (or maximum) element of an array
Last Updated: 03 May 2024
Given an array, write functions to find the minimum and maximum elements in it.The most simplest way to find min and max value of an element
...read more
Searching
Recursion
school-programming
CBSE - Class 11
DSA
C/C++ Puzzles
Basic Coding Problems
Basic Input / Output in C++
Last Updated: 09 January 2025
In C++, input and output are performed in the form of a sequence of bytes or more commonly known as streams.Input Stream: If the direction o
...read more
cpp-input-output
CPP-Basics
C++
school-programming
CBSE - Class 11
C++ Data Types
Last Updated: 17 March 2025
Data typesspecify the type of data that a variable can store. Whenever a variable is defined in C++, the compiler allocates some memory for
...read more
CPP-Basics
C++
school-programming
CBSE - Class 11
Writing First C++ Program - Hello World Example
Last Updated: 11 January 2025
The "Hello World" program is the first step towards learning any programming language and is also one of the most straightforward programs y
...read more
C Basics
CPP-Basics
C++
School Programming
school-programming
CBSE - Class 11
C++ Loops
Last Updated: 21 March 2025
In C++ programming, sometimes there is a need to perform some operation more than once or (say) n number of times. For example, suppose we w
...read more
C Basics
CPP-Basics
C++
School Programming
school-programming
CBSE - Class 11
Linear Search Algorithm
Last Updated: 27 March 2025
Given an array, arr of n integers, and an integer element x, find whether element x is present in the array. Return the index of the first o
...read more
Arrays
Searching
school-programming
CBSE - Class 11
DSA
Introduction of DBMS (Database Management System)
Last Updated: 07 March 2025
A Database Management System (DBMS) is a software solution designed to efficiently manage, organize, and retrieve data in a structured manne
...read more
DBMS
SQL
school-programming
DBMS Basics
CBSE - Class 11
Databases
Pass Array to Functions in C
Last Updated: 07 March 2025
Passing an array to a function allows the function to directly access and modify the original array. In this article, we will learn how to p
...read more
cpp-array
cpp-pointer
CPP-Functions
C Language
C++
school-programming
CBSE - Class 11
Reverse words in a string
Last Updated: 18 March 2025
Given a string str, your task is to reverse the order of the words in the given string. Notethatstrmay contain leading or trailing dots(.) o
...read more
Strings
Microsoft
Amazon
Adobe
Morgan Stanley
Goldman Sachs
Cisco
Paytm
Accolite
Payu
Zoho
MAQ Software
SAP Labs
MakeMyTrip
Reverse
Wipro
school-programming
CBSE - Class 11
DSA
Array Reverse - Complete Tutorial
Last Updated: 25 September 2024
Given an array arr[], the task is to reverse the array. Reversing an array means rearranging the elements such that the first element become
...read more
Arrays
Strings
Amazon
VMWare
MAQ Software
Moonfrog Labs
Infosys
Reverse
school-programming
CBSE - Class 11
DSA
1
2
3
4
5
6
7
8
>>
Last
1
2
3
4
5
6
>>
Last
1
2
3
4
>>
Last
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !