Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • DSA
  • Practice Bitwise Algorithms
  • MCQs on Bitwise Algorithms
  • Tutorial on Biwise Algorithms
  • Binary Representation
  • Bitwise Operators
  • Bit Swapping
  • Bit Manipulation
  • Count Set bits
  • Setting a Bit
  • Clear a Bit
  • Toggling a Bit
  • Left & Right Shift
  • Gray Code
  • Checking Power of 2
  • Important Tactics
  • Bit Manipulation for CP
  • Fast Exponentiation
Open In App
Next Article:
Calculate square of a number without using *, / and pow()
Next article icon

Calculate square of a number without using *, / and pow()

Last Updated : 29 Mar, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Given an integer n, calculate the square of a number without using *, / and pow(). 

Examples : 

Input: n = 5 Output: 25  Input: 7 Output: 49  Input: n = 12 Output: 144

A Simple Solution is to repeatedly add n to result. 

Below is the implementation of this idea. 

C++
// Simple solution to calculate square without // using * and pow() #include <iostream> using namespace std;  int square(int n) {     // handle negative input     if (n < 0)         n = -n;      // Initialize result     int res = n;      // Add n to res n-1 times     for (int i = 1; i < n; i++)         res += n;      return res; }  // Driver code int main() {     for (int n = 1; n <= 5; n++)         cout << "n = " << n << ", n^2 = " << square(n)              << endl;     return 0; } 
Java
// Java Simple solution to calculate // square without using * and pow() import java.io.*;  class GFG {      public static int square(int n)     {          // handle negative input         if (n < 0)             n = -n;          // Initialize result         int res = n;          // Add n to res n-1 times         for (int i = 1; i < n; i++)             res += n;          return res;     }      // Driver code     public static void main(String[] args)     {          for (int n = 1; n <= 5; n++)             System.out.println("n = " + n                                + ", n^2 = " + square(n));     } }  // This code is contributed by sunnysingh 
Python3
# Simple solution to # calculate square without # using * and pow()  def square(n):      # handle negative input     if (n < 0):         n = -n      # Initialize result     res = n      # Add n to res n-1 times     for i in range(1, n):         res += n      return res   # Driver Code for n in range(1, 6):     print("n =", n, end=", ")     print("n^2 =", square(n))  # This code is contributed by # Smitha Dinesh Semwal 
C#
// C# Simple solution to calculate // square without using * and pow() using System;  class GFG {     public static int square(int n)     {          // handle negative input         if (n < 0)             n = -n;          // Initialize result         int res = n;          // Add n to res n-1 times         for (int i = 1; i < n; i++)             res += n;          return res;     }      // Driver code     public static void Main()     {          for (int n = 1; n <= 5; n++)             Console.WriteLine("n = " + n                               + ", n^2 = " + square(n));     } }  // This code is contributed by Sam007 
PHP
<?php // PHP implementation to  // calculate square  // without using * and pow()  function square($n) {  // handle negative input     if ($n < 0) $n = -$n;  // Initialize result         $res = $n;  // Add n to res n-1 times for ($i = 1; $i < $n; $i++)     $res += $n;  return $res; }  // Driver Code for ($n = 1; $n<=5; $n++)     echo "n = ", $n, ", ", "n^2 = ",                    square($n), "\n ";      // This code is contributed by Ajit  ?> 
JavaScript
<script>  // Simple solution to calculate square without // using * and pow()  function square(n) {     // handle negative input     if (n < 0)         n = -n;      // Initialize result     let res = n;      // Add n to res n-1 times     for (let i = 1; i < n; i++)         res += n;      return res; }  // Driver code      for (let n = 1; n <= 5; n++)         document.write("n= " + n +", n^2 = " + square(n)             + "<br>");       //This code is contributed by Mayank Tyagi  </script> 

Output
n = 1, n^2 = 1 n = 2, n^2 = 4 n = 3, n^2 = 9 n = 4, n^2 = 16 n = 5, n^2 = 25

Time Complexity: O(n)

Auxiliary Space: O(1)

Approach 2:

We can do it in O(Logn) time using bitwise operators. The idea is based on the following fact.

  square(n) = 0 if n == 0   if n is even       square(n) = 4*square(n/2)    if n is odd      square(n) = 4*square(floor(n/2)) + 4*floor(n/2) + 1   Examples   square(6) = 4*square(3)   square(3) = 4*(square(1)) + 4*1 + 1 = 9   square(7) = 4*square(3) + 4*3 + 1 = 4*9 + 4*3 + 1 = 49

How does this work? 

If n is even, it can be written as   n = 2*x    n2 = (2*x)2 = 4*x2 If n is odd, it can be written as    n = 2*x + 1   n2 = (2*x + 1)2 = 4*x2 + 4*x + 1

floor(n/2) can be calculated using a bitwise right shift operator. 2*x and 4*x can be calculated 

Below is the implementation based on the above idea. 

C++
// Square of a number using bitwise operators #include <bits/stdc++.h> using namespace std;  int square(int n) {     // Base case     if (n == 0)         return 0;      // Handle negative number     if (n < 0)         n = -n;      // Get floor(n/2) using right shift     int x = n >> 1;      // If n is odd     if (n & 1)         return ((square(x) << 2) + (x << 2) + 1);     else // If n is even         return (square(x) << 2); }  // Driver Code int main() {     // Function calls     for (int n = 1; n <= 5; n++)         cout << "n = " << n << ", n^2 = " << square(n)              << endl;     return 0; } 
Java
// Square of a number using // bitwise operators class GFG {     static int square(int n)     {          // Base case         if (n == 0)             return 0;          // Handle negative number         if (n < 0)             n = -n;          // Get floor(n/2) using         // right shift         int x = n >> 1;          // If n is odd         ;         if (n % 2 != 0)             return ((square(x) << 2) + (x << 2) + 1);         else // If n is even             return (square(x) << 2);     }      // Driver code     public static void main(String args[])     {         // Function calls         for (int n = 1; n <= 5; n++)             System.out.println("n = " + n                                + " n^2 = " + square(n));     } }  // This code is contributed by Sam007 
Python3
# Square of a number using bitwise # operators   def square(n):      # Base case     if (n == 0):         return 0      # Handle negative number     if (n < 0):         n = -n      # Get floor(n/2) using     # right shift     x = n >> 1      # If n is odd     if (n & 1):         return ((square(x) << 2)                 + (x << 2) + 1)      # If n is even     else:         return (square(x) << 2)   # Driver Code for n in range(1, 6):     print("n = ", n, " n^2 = ",           square(n)) # This code is contributed by Sam007 
C#
// Square of a number using bitwise // operators using System;  class GFG {      static int square(int n)     {          // Base case         if (n == 0)             return 0;          // Handle negative number         if (n < 0)             n = -n;          // Get floor(n/2) using         // right shift         int x = n >> 1;          // If n is odd         ;         if (n % 2 != 0)             return ((square(x) << 2) + (x << 2) + 1);         else // If n is even             return (square(x) << 2);     }      // Driver code     static void Main()     {         for (int n = 1; n <= 5; n++)             Console.WriteLine("n = " + n                               + " n^2 = " + square(n));     } }  // This code is contributed by Sam0007. 
PHP
<?php // Square of a number using // bitwise operators  function square($n) {          // Base case     if ($n==0) return 0;      // Handle negative number     if ($n < 0) $n = -$n;      // Get floor(n/2)     // using right shift     $x = $n >> 1;      // If n is odd     if ($n & 1)         return ((square($x) << 2) +                      ($x << 2) + 1);     else // If n is even         return (square($x) << 2); }      // Driver Code     for ($n = 1; $n <= 5; $n++)         echo "n = ", $n, ", n^2 = ", square($n),"\n";      // This code is contributed by ajit ?> 
JavaScript
<script>  // Square of a number using bitwise operators  function square(n) {     // Base case     if (n == 0)         return 0;      // Handle negative number     if (n < 0)         n = -n;      // Get floor(n/2) using right shift     let x = n >> 1;      // If n is odd     if (n & 1)         return ((square(x) << 2) + (x << 2) + 1);     else // If n is even         return (square(x) << 2); }  // Driver Code   // Function calls     for (let n = 1; n <= 5; n++)         document.write("n = " + n + ", n^2 = " + square(n)              +"<br>");      //This code is contributed by Mayank Tyagi  </script> 

Output
n = 1, n^2 = 1 n = 2, n^2 = 4 n = 3, n^2 = 9 n = 4, n^2 = 16 n = 5, n^2 = 25

Time Complexity: O(log n)
Auxiliary Space: O(log n) as well, as the number of function calls stored in the call stack will be logarithmic to the size of the input

Approach 3:

For a given number `num` we get square of it by multiplying number as `num * num`.  Now write one of `num` in square `num * num` in terms of power of `2`. Check below examples.  Eg: num = 10, square(num) = 10 * 10                            = 10 * (8 + 2) = (10 * 8) + (10 * 2)     num = 15, square(num) = 15 * 15                            = 15 * (8 + 4 + 2 + 1) = (15 * 8) + (15 * 4) + (15 * 2) + (15 * 1)  Multiplication with power of 2's can be done by left shift bitwise operator.

Below is the implementation based on the above idea. 

C++
// Simple solution to calculate square without // using * and pow() #include <iostream> using namespace std;  int square(int num) {     // handle negative input     if (num < 0) num = -num;      // Initialize result     int result = 0, times = num;      while (times > 0)      {         int possibleShifts = 0, currTimes = 1;          while ((currTimes << 1) <= times)          {             currTimes = currTimes << 1;             ++possibleShifts;         }          result = result + (num << possibleShifts);         times = times - currTimes;     }      return result; }  // Driver code int main() {     // Function calls     for (int n = 10; n <= 15; ++n)         cout << "n = " << n << ", n^2 = " << square(n) << endl;     return 0; }  // This code is contributed by sanjay235 
Java
// Simple solution to calculate square // without using * and pow() import java.io.*;  class GFG{      public static int square(int num) {          // Handle negative input     if (num < 0)         num = -num;      // Initialize result     int result = 0, times = num;      while (times > 0)     {         int possibleShifts = 0,                   currTimes = 1;          while ((currTimes << 1) <= times)         {             currTimes = currTimes << 1;             ++possibleShifts;         }          result = result + (num << possibleShifts);         times = times - currTimes;     }     return result; }  // Driver code public static void main(String[] args) {     for(int n = 10; n <= 15; ++n)      {         System.out.println("n = " + n +                             ", n^2 = " +                             square(n));     } } }  // This code is contributed by RohitOberoi 
Python3
# Simple solution to calculate square without # using * and pow() def square(num):      # Handle negative input     if (num < 0):         num = -num      # Initialize result     result, times = 0, num      while (times > 0):         possibleShifts, currTimes = 0, 1          while ((currTimes << 1) <= times):             currTimes = currTimes << 1             possibleShifts += 1          result = result + (num << possibleShifts)         times = times - currTimes      return result  # Driver Code  # Function calls for n in range(10, 16):     print("n =", n, ", n^2 =", square(n))  # This code is contributed by divyesh072019 
C#
// Simple solution to calculate square // without using * and pow() using System; class GFG {          static int square(int num)     {                   // Handle negative input         if (num < 0)             num = -num;               // Initialize result         int result = 0, times = num;               while (times > 0)         {             int possibleShifts = 0,                       currTimes = 1;                   while ((currTimes << 1) <= times)             {                 currTimes = currTimes << 1;                 ++possibleShifts;             }                   result = result + (num << possibleShifts);             times = times - currTimes;         }         return result;     }        static void Main() {         for(int n = 10; n <= 15; ++n)          {             Console.WriteLine("n = " + n +                                 ", n^2 = " +                                 square(n));         }   } }  // This code is contributed by divyeshrabadiy07 
JavaScript
<script>  // Simple solution to calculate square without // using * and pow()  function square(num) {     // handle negative input     if (num < 0) num = -num;      // Initialize result     let result = 0, times = num;      while (times > 0)      {         let possibleShifts = 0, currTimes = 1;          while ((currTimes << 1) <= times)          {             currTimes = currTimes << 1;             ++possibleShifts;         }          result = result + (num << possibleShifts);         times = times - currTimes;     }      return result; }  // Driver code      // Function calls     for (let n = 10; n <= 15; ++n)         document.write("n = " + n + ", n^2 = " + square(n) + "<br>");  //This code is contributed by Mayank Tyagi  </script> 

Output
n = 10, n^2 = 100 n = 11, n^2 = 121 n = 12, n^2 = 144 n = 13, n^2 = 169 n = 14, n^2 = 196 n = 15, n^2 = 225

Time Complexity: O(logn)

Auxiliary Space: O(1)

Thanks to Sanjay for approach 3 solution.


 

C++
// Simple solution to calculate square without // using * and pow() #include <iostream> using namespace std;  int square(int num) {     // handle negative input     if (num < 0)         num = -num;      // Initialize power of 2 and result     int power = 0, result = 0;     int temp = num;      while (temp) {         if (temp & 1) {             // result=result+(num*(2^power))             result += (num << power);         }         power++;          // temp=temp/2         temp = temp >> 1;     }      return result; }  // Driver code int main() {     // Function calls     for (int n = 10; n <= 15; ++n)         cout << "n = " << n << ", n^2 = " << square(n)              << endl;     return 0; }  // This code is contributed by Aditya Verma 
Java
/*package whatever //do not write package name here */  import java.io.*; import java.util.*; // java program for Simple solution to calculate square without // using * and pow()   // This code is contributed by Aditya Verma public class Main {          public static int square(int num)     {         // handle negative input         if (num < 0)             num = -num;          // Initialize power of 2 and result         int power = 0, result = 0;         int temp = num;          while (temp > 0) {             if ((temp & 1) > 0) {                 // result=result+(num*(2^power))                 result += (num << power);             }             power++;              // temp=temp/2             temp = temp >> 1;         }          return result;     }      public static void main(String[] args) {         // Function calls         for (int n = 10; n <= 15; ++n)             System.out.println("n = " + n + ", n^2 = " + square(n));     } }  // The code is contributed by Nidhi goel.  
Python3
def square(num):     # handle negative input     if num < 0:         num = -num      # Initialize power of 2 and result     power, result = 0, 0     temp = num      while temp:         if temp & 1:             # result=result+(num*(2^power))             result += (num << power)         power += 1          # temp=temp/2         temp = temp >> 1      return result  # Driver code for n in range(10, 16):     print(f"n = {n}, n^2 = {square(n)}") 
JavaScript
// Simple solution to calculate square without // using * and pow()  function square(num) {          // handle negative input     if (num < 0)     num = -num;          // Initialize power of 2 and result     let power = 0, result = 0;     let temp = num;          while (temp) {         if (temp & 1) {             // result=result+(num*(2^power))             result += (num << power);         }         power++;              // temp=temp/2         temp = temp >> 1;     }          return result;  }  // Driver code  // Function calls for (let n = 10; n <= 15; ++n)     console.log(`n = ${n}, n^2 = ${square(n)}`);   // This code is contributed by phasing17 
C#
// Simple solution to calculate square without // using * and pow() using System;  public class Program {     public static int Square(int num)     {         // handle negative input         if (num < 0)             num = -num;          // Initialize power of 2 and result         int power = 0, result = 0;         int temp = num;          while (temp > 0)         {             if ((temp & 1) > 0)             {                 // result=result+(num*(2^power))                 result += (num << power);             }             power++;              // temp=temp/2             temp = temp >> 1;         }          return result;     }      public static void Main()     {         // Function calls         for (int n = 10; n <= 15; ++n)             Console.WriteLine("n = " + n + ", n^2 = " + Square(n));     } }  // Contributed by adityasha4x71 

Output
n = 10, n^2 = 100 n = 11, n^2 = 121 n = 12, n^2 = 144 n = 13, n^2 = 169 n = 14, n^2 = 196 n = 15, n^2 = 225

Time Complexity: O(logn)

Auxiliary Space: O(1)


Next Article
Calculate square of a number without using *, / and pow()

U

Ujjwal Jain
Improve
Article Tags :
  • Bit Magic
  • DSA
Practice Tags :
  • Bit Magic

Similar Reads

    Bitwise Algorithms
    Bitwise algorithms in Data Structures and Algorithms (DSA) involve manipulating individual bits of binary representations of numbers to perform operations efficiently. These algorithms utilize bitwise operators like AND, OR, XOR, NOT, Left Shift, and Right Shift.BasicsIntroduction to Bitwise Algorit
    4 min read
    Introduction to Bitwise Algorithms - Data Structures and Algorithms Tutorial
    Bit stands for binary digit. A bit is the basic unit of information and can only have one of two possible values that is 0 or 1. In our world, we usually with numbers using the decimal base. In other words. we use the digit 0 to 9 However, there are other number representations that can be quite use
    15+ min read
    Bitwise Operators in C
    In C, bitwise operators are used to perform operations directly on the binary representations of numbers. These operators work by manipulating individual bits (0s and 1s) in a number.The following 6 operators are bitwise operators (also known as bit operators as they work at the bit-level). They are
    6 min read
    Bitwise Operators in Java
    In Java, Operators are special symbols that perform specific operations on one or more than one operands. They build the foundation for any type of calculation or logic in programming.There are so many operators in Java, among all, bitwise operators are used to perform operations at the bit level. T
    6 min read
    Python Bitwise Operators
    Python bitwise operators are used to perform bitwise calculations on integers. The integers are first converted into binary and then operations are performed on each bit or corresponding pair of bits, hence the name bitwise operators. The result is then returned in decimal format.Note: Python bitwis
    5 min read
    JavaScript Bitwise Operators
    In JavaScript, a number is stored as a 64-bit floating-point number but bitwise operations are performed on a 32-bit binary number. To perform a bit-operation, JavaScript converts the number into a 32-bit binary number (signed) and performs the operation and converts back the result to a 64-bit numb
    5 min read
    All about Bit Manipulation
    Bit Manipulation is a technique used in a variety of problems to get the solution in an optimized way. This technique is very effective from a Competitive Programming point of view. It is all about Bitwise Operators which directly works upon binary numbers or bits of numbers that help the implementa
    14 min read
    What is Endianness? Big-Endian & Little-Endian
    Computers operate using binary code, a language made up of 0s and 1s. This binary code forms the foundation of all computer operations, enabling everything from rendering videos to processing complex algorithms. A single bit is a 0 or a 1, and eight bits make up a byte. While some data, such as cert
    5 min read
    Bits manipulation (Important tactics)
    Prerequisites: Bitwise operators in C, Bitwise Hacks for Competitive Programming, Bit Tricks for Competitive Programming Table of Contents Compute XOR from 1 to n (direct method)Count of numbers (x) smaller than or equal to n such that n+x = n^xHow to know if a number is a power of 2?Find XOR of all
    15+ min read

    Easy Problems on Bit Manipulations and Bitwise Algorithms

    Binary representation of a given number
    Given an integer n, the task is to print the binary representation of the number. Note: The given number will be maximum of 32 bits, so append 0's to the left if the result string is smaller than 30 length.Examples: Input: n = 2Output: 00000000000000000000000000000010Input: n = 0Output: 000000000000
    6 min read
    Count set bits in an integer
    Write an efficient program to count the number of 1s in the binary representation of an integer.Examples : Input : n = 6Output : 2Binary representation of 6 is 110 and has 2 set bitsInput : n = 13Output : 3Binary representation of 13 is 1101 and has 3 set bits[Naive Approach] - One by One CountingTh
    15+ min read
    Add two bit strings
    Given two binary strings s1 and s2 consisting of only 0s and 1s. Find the resultant string after adding the two Binary Strings.Note: The input strings may contain leading zeros but the output string should not have any leading zeros.Examples:Input: s1 = "1101", s2 = "111"Output: 10100Explanation: "1
    1 min read
    Turn off the rightmost set bit
    Given an integer n, turn remove turn off the rightmost set bit in it. Input: 12Output: 8Explanation : Binary representation of 12 is 00...01100. If we turn of the rightmost set bit, we get 00...01000 which is binary representation of 8Input: 7 Output: 6 Explanation : Binary representation for 7 is 0
    7 min read
    Rotate bits of a number
    Given a 32-bit integer n and an integer d, rotate the binary representation of n by d positions in both left and right directions. After each rotation, convert the result back to its decimal representation and return both values in an array as [left rotation, right rotation].Note: A rotation (or cir
    7 min read
    Compute modulus division by a power-of-2-number
    Given two numbers n and d where d is a power of 2 number, the task is to perform n modulo d without the division and modulo operators.Input: 6 4Output: 2 Explanation: As 6%4 = 2Input: 12 8Output: 4Explanation: As 12%8 = 4Input: 10 2Output: 0Explanation: As 10%2 = 0Approach:The idea is to leverage bi
    3 min read
    Find the Number Occurring Odd Number of Times
    Given an array of positive integers. All numbers occur an even number of times except one number which occurs an odd number of times. Find the number in O(n) time & constant space. Examples : Input : arr = {1, 2, 3, 2, 3, 1, 3}Output : 3 Input : arr = {5, 7, 2, 7, 5, 2, 5}Output : 5 Recommended
    12 min read
    Program to find whether a given number is power of 2
    Given a positive integer n, the task is to find if it is a power of 2 or not.Examples: Input : n = 16Output : YesExplanation: 24 = 16Input : n = 42Output : NoExplanation: 42 is not a power of 2Input : n = 1Output : YesExplanation: 20 = 1Approach 1: Using Log - O(1) time and O(1) spaceThe idea is to
    12 min read
    Find position of the only set bit
    Given a number n containing only 1 set bit in its binary representation, the task is to find the position of the only set bit. If there are 0 or more than 1 set bits, then return -1. Note: Position of set bit '1' should be counted starting with 1 from the LSB side in the binary representation of the
    8 min read
    Check for Integer Overflow
    Given two integers a and b. The task is to design a function that adds two integers and detects overflow during the addition. If the sum does not cause an overflow, return their sum. Otherwise, return -1 to indicate an overflow.Note: You cannot use type casting to a larger data type to check for ove
    7 min read
    Find XOR of two number without using XOR operator
    Given two integers, the task is to find XOR of them without using the XOR operator.Examples : Input: x = 1, y = 2Output: 3Input: x = 3, y = 5Output: 6Approach - Checking each bit - O(log n) time and O(1) spaceA Simple Solution is to traverse all bits one by one. For every pair of bits, check if both
    8 min read
    Check if two numbers are equal without using arithmetic and comparison operators
    Given two numbers, the task is to check if two numbers are equal without using Arithmetic and Comparison Operators or String functions. Method 1 : The idea is to use XOR operator. XOR of two numbers is 0 if the numbers are the same, otherwise non-zero. C++ // C++ program to check if two numbers // a
    8 min read
    Detect if two integers have opposite signs
    Given two integers a and b, the task is to determine whether they have opposite signs. Return true if the signs of the two numbers are different and false otherwise.Examples:Input: a = -5, b = 10Output: trueExplanation: One number is negative and the other is positive, so their signs are different.I
    9 min read
    Swap Two Numbers Without Using Third Variable
    Given two variables a and y, swap two variables without using a third variable. Examples: Input: a = 2, b = 3Output: a = 3, b = 2Input: a = 20, b = 0Output: a = 0, b = 20Input: a = 10, b = 10Output: a = 10, b = 10Table of ContentUsing Arithmetic OperatorsUsing Bitwise XORBuilt-in SwapUsing Arithmeti
    6 min read
    Russian Peasant (Multiply two numbers using bitwise operators)
    Given two integers a and b, the task is to multiply them without using the multiplication operator. Instead of that, use the Russian Peasant Algorithm.Examples:Input: a = 2, b = 5Output: 10Explanation: Product of 2 and 5 is 10.Input: a = 6, b = 9Output: 54Explanation: Product of 6 and 9 is 54.Input:
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
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
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences