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 Tutorial
Taking Input in Python
Python Operators
Python Data Types
Python Loops and Control Flow
Python Conditional Statements
Python Loops
Python Functions
Python OOPS Concept
Python Data Structures
Python Exception Handling
Python File Handling
Python Exercises
Java
Learn Java Programming Language
Java Collections
Java 8 Tutorial
Java Programs
Java Interview Questions
Java Interview Questions
Core Java Interview Questions-Freshers
Java Multithreading Interview Questions
OOPs Interview Questions and Answers
Java Exercises
Java Quiz
Java Quiz
Core Java MCQ
Java Projects
Advance Java
Spring Tutorial
Spring Boot Tutorial
Spring Boot Interview Questions
Spring MVC Tutorial
Spring MVC Interview Questions
Hibernate Tutorial
Hibernate Interview Questions
Programming Languages
JavaScript
C++
R Tutorial
SQL
PHP
C#
C
Scala
Perl
Go Language
Kotlin
System Design
System Design Tutorial
Software Design Patterns
System Design Roadmap
Top 10 System Design Interview Questions and Answers
Interview Corner
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
GIT
AWS
Docker
Kubernetes
Microsoft Azure Tutorial
Google Cloud Platform
Linux
Linux Tutorial
Linux Commands A-Z
Linux Commands Cheatsheet
File Permission Commands
Linux System Administration
Linux File System
Linux Shell Scripting
Linux Networking
Linux Interview Questions
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
Data Structures
Arrays
Matrix
Strings
Linked List
Stack
Queue
Tree
Heap
Hashing
Graph
Set Data Structure
Map Data Structure
Advanced Data Structure
Data Structures Tutorial
Algorithms
Analysis of Algorithms
Design and Analysis of Algorithms
Asymptotic Analysis
Asymptotic Notations
Worst, Average and Best Cases
Searching Algorithms
Linear Search
Binary Search
Searching Algorithms Tutorial
Sorting Algorithms
Selection Sort
Bubble Sort
Insertion Sort
Merge Sort
Quick Sort
Heap Sort
Counting Sort
Radix Sort
Bucket Sort
Sorting Algorithms Tutorial
Greedy Algorithms
Dynamic Programming
Graph Algorithms
Pattern Searching
Recursion
Backtracking
Divide and Conquer
Mathematical Algorithms
Geometric Algorithms
Bitwise Algorithms
Randomized Algorithms
Branch and Bound
Algorithms Tutorial
DSA Tutorial
Practice
All DSA Problems
Problem of the Day
Company Wise Coding Practice
Amazon
Microsoft
Flipkart
Explore All
GfG SDE Sheet
Practice Problems Difficulty Wise
School
Basic
Easy
Medium
Hard
Language Wise Coding Practice
CPP
Java
Python
Curated DSA Lists
Beginner's DSA Sheet
Top 50 Array Problems
Top 50 String Problems
Top 50 DP Problems
Top 50 Graph Problems
Top 50 Tree Problems
Competitive Programming
Company Wise SDE Sheets
Facebook SDE Sheet
Amazon SDE Sheet
Apple SDE Sheet
Netflix SDE Sheet
Google SDE Sheet
DSA Cheat Sheets
SDE Sheet
DSA Sheet for Beginners
FAANG Coding Sheet
Product-Based Coding Sheet
Company-Wise Preparation 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
Django Tutorial
Django Projects
Django Interview Questions
Flask
Flask Tutorial
Flask Projects
Flask Interview Questions
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
▲
Similar Topics
DSA
22.3k+ articles
Mathematical
7.7k+ articles
Dynamic Programming
1.5k+ articles
School Programming
1.3k+ articles
Geometric
690+ articles
Pattern Searching
610+ articles
number-digits
590+ articles
number-theory
410+ articles
Basic Coding Problems
360+ articles
series-sum
110+ articles
series
510+ posts
Popular Articles
Recent Articles
Program to Print Fibonacci Series in Java
Last Updated: 18 April 2024
The Fibonacci series is a series of elements where, the previous two elements are added to get the next element, starting with 0 and 1. In t
...read more
Dynamic Programming
Greedy
Searching
Mathematical
Fibonacci
series
Recursion
Java Programs
DSA
Find the Nth row in Pascal's Triangle
Last Updated: 07 November 2024
Given a non-negative integer n, the task is to find the nth row of Pascal's Triangle. Note: The row index starts from 0.Examples:Input: n =
...read more
Mathematical
Competitive Programming
series
pattern-printing
Recursion
Permutation and Combination
DSA
Program to find the sum of the series 1 + x + x^2+ x^3+ .. + x^n
Last Updated: 12 July 2022
Given an integer X, the task is to print the series and find the sum of the series[Tex]1 + x^{1} + x^{2} + x^{3} + x^{4} ... x^{N}[/Tex]Exam
...read more
Mathematical
series
School Programming
series-sum
Write From Home
DSA
Similar Topics
DSA
22.3k+ articles
Mathematical
7.7k+ articles
Dynamic Programming
1.5k+ articles
School Programming
1.3k+ articles
Geometric
690+ articles
Pattern Searching
610+ articles
number-digits
590+ articles
number-theory
410+ articles
Basic Coding Problems
360+ articles
series-sum
110+ articles
Program to print Collatz Sequence
Last Updated: 22 June 2022
Starting with any positive integer N, Collatz sequence is defined corresponding to n as the numbers formed by the following operations :If n
...read more
Mathematical
series
DSA
Sum of first n even numbers
Last Updated: 17 July 2022
Given a number n. The problem is to find the sum of first n even numbers.Examples:Input : n = 4Output : 20Sum of first 4 even numbers= (2 +
...read more
Mathematical
series
DSA
Sum of the Series 1 + x/1 + x^2/2 + x^3/3 + .. + x^n/n
Last Updated: 16 August 2022
This is a mathematical series program where a user must enter the number of terms up to which the sum of the series is to be found. Followin
...read more
Mathematical
series
DSA
Sum of multiples of a number up to N
Last Updated: 09 June 2022
Given a number a and limit N. Find the sum of multiple of a upto N.Examples :Input : a = 4, N = 23Output : sum = 60[Multiples : 4, 8, 12, 16
...read more
Misc
Mathematical
series
DSA
Tribonacci Numbers
Last Updated: 13 November 2024
The tribonacci series is a generalization of the Fibonacci sequence where each term is the sum of the three preceding terms.a(n) = a(n-1) +
...read more
Mathematical
series
DSA
Program to find sum of first n natural numbers
Last Updated: 27 November 2024
Given a number n, find the sum of the first natural numbers.Examples :Input: n = 3Output: 6Explanation: Note that 1 + 2 + 3 = 6Input : 5Out
...read more
Mathematical
series
number-theory
DSA
Basic Coding Problems
Matrix Exponentiation
Last Updated: 09 October 2024
Matrix Exponentiation is one of the most used techniques in competitive programming. In this post, we will provide a detailed overview about
...read more
Algorithms
Dynamic Programming
Mathematical
Matrix
Competitive Programming
Fibonacci
series
Modular Arithmetic
matrix-exponentiation
DSA
Look-and-Say Sequence
Last Updated: 04 April 2024
Find the n'th term in Look-and-say (Or Count and Say) Sequence. The look-and-say sequence is the sequence of the below integers:1, 11, 21, 1
...read more
Strings
Amazon
Facebook
Zoho
series
pattern-printing
DSA
Program to find sum of series 1 + 1/2 + 1/3 + 1/4 + .. + 1/n
Last Updated: 16 February 2023
If inverse of a sequence follows rule of an A.P i.e, Arithmetic progression, then it is said to be in Harmonic Progression.In general, the t
...read more
Mathematical
series
harmonic progression
DSA
Basic Coding Problems
Program for nth Catalan Number
Last Updated: 28 November 2024
Catalan numbers are defined as a mathematical sequence that consists of positive integers, which can be used to find the number of possibili
...read more
Amazon
Dynamic Programming
Mathematical
series
catalan
DSA
Nth Fibonacci Number
Last Updated: 09 October 2024
Given a positive integer n, the task is to find the nth Fibonacci number.The Fibonacci sequence is a sequence where the next term is the sum
...read more
Amazon
Snapdeal
MAQ Software
MakeMyTrip
Bloomberg
Dynamic Programming
Mathematical
Fibonacci
series
Modular Arithmetic
matrix-exponentiation
DSA
Ugly Numbers
Last Updated: 29 December 2023
Ugly numbers are numbers whose only prime factors are 2, 3 or 5. The sequence 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, ... shows the first 11 ugl
...read more
Arrays
Goldman Sachs
Paytm
Mathematical
series
divisibility
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 !