Skip to content
geeksforgeeks
  • 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
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • C# Data Types
  • C# Decision Making
  • C# Methods
  • C# Delegates
  • C# Constructors
  • C# Arrays
  • C# ArrayList
  • C# String
  • C# Tuple
  • C# Indexers
  • C# Interface
  • C# Multithreading
  • C# Exception
Open In App
Next Article:
C# Tuple Class
Next article icon

C# Tuple

Last Updated : 15 Jan, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

A tuple is a data structure which consists of multiple parts. It is the easiest way to represent a data set which has multiple values of different types. It was introduced in .NET Framework 4.0. In a tuple, we can add elements from 1 to 8. If try to add elements greater than eight, then the compiler will throw an error. Tuples are generally used when we want to create a data structure which contains objects with their properties and don’t want to create a separate type for that.

Features of Tuples

  • It allows us to represent multiple data into a single data set.
  • It allows us to create, manipulate, and access data sets.
  • It returns multiple values from a method without using out parameter.
  • It can also store duplicate elements.
  • It allows us to pass multiple values to a method with the help of single parameters.

Example:

C#
// Example of Tuple using System;  public class Geeks {   	// Main Method      static public void Main()     {       	// Creating a Tuple         var tuple = (123, "Hello", true);                	// Accessing the Elements       	Console.WriteLine(tuple.Item1);          Console.WriteLine(tuple.Item2);          Console.WriteLine(tuple.Item3);      } } 

Output
123 Hello True 

Before tuples, we have three ways to return more than one value from the method in C# which are Using Class or Struct types, Out parameters and Anonymous types which are returned through a Dynamic Return Type. But after Tuples, it becomes easy to represent a single set of data. There is no need to create any separate data structure. Instead, for this.

Creating Tuple

In C#, there are mainly 2 ways to create the tuple

  • Using Constructor
  • Using Create Method

1. Using Constructor

We can create a tuple by using the constructor of the tuple using the tuple<T> class. Where we can store elements starting from one to eight. If we try to add more than 8 compiler will throw an error.

Syntax:

/ Constructor for single elements
Tuple <T1>(T1)

// Constructor for two elements
Tuple <T1, T2>(T1, T2)
.
.
// Constructor for eight elements
Tuple <T1, T2, T3, T4, T5, T6, T7, TRest>(T1, T2, T3, T4, T5, T6, T7, TRest)

Example:

C#
// Using tuple constructor using System;  public class Geeks { 	static public void Main() 	{ 		// Tuple with one element 		Tuple<string> t1 = new Tuple<string>("GeeksforGeeks");  		// Tuple with three elements 		Tuple<string, string, int> t2 = new Tuple<string, string, int>("C#", "Python", 29);  		// Tuple with eight elements 		Tuple<int, int, int, int, int, int, int, Tuple<int>> t3 = 		new Tuple<int, int, int, int, int, int, int, Tuple<int>>(1, 2, 3, 4, 5, 6, 7, new Tuple<int>(8));  		Console.WriteLine(t1.Item1); 		Console.WriteLine(t2.Item1); 		Console.WriteLine(t3.Item1); 	} } 

Output
GeeksforGeeks C# 1 

2. Using the Create Method

When we use the tuple constructor to create a tuple we need to provide the type of each element stored in the tuple which makes your code cumbersome. So, C# provides another class that is Tuple class which contains the static methods for creating tuple objects without providing the type of each element.

Syntax:

// Method for 1-tuple
Create(T1)

// Method for 2-tuple
Create(T1, T2)
.
.
// Method for 8-tuple
Create(T1, T2, T3, T4, T5, T6, T7, T8)

Example:

C#
// Create tuple using tuple constructor using System;  public class Geeks  {     // Main method     static public void Main()     {         // Creating 1-tuple         // Using Create Method         var t1 = Tuple.Create("GeeksforGeeks");          // Creating 4-tuple         // Using Create Method         var t2 = Tuple.Create("C#", "Python", 29);          // Creating 8-tuple         // Using Create Method         var t3 = Tuple.Create(1,2,3,4,5,6,7,8);              	Console.WriteLine(t1.Item1); 		Console.WriteLine(t2.Item1); 		Console.WriteLine(t3.Item1);     } } 

Output
GeeksforGeeks C# 1 

Accessing a Tuple

We can access the elements of a tuple by using the Item<elementNumber> property, here elementNumber is from 1 to 7 like Item1, Item 2, Item3, Item4, Item5, Item6, Item 7, etc. and the last element of 8-tuple is accessible by using Rest property as shown in the below example:

Example:

C#
// Accessing the tuple  // using Item and Rest property using System;  public class Geeks { 	static public void Main() 	{  		var t1 = Tuple.Create("GeeksforGeeks");  		Console.WriteLine("1st element of t1 : " + t1.Item1); 		Console.WriteLine();  		// Creating 4-tuple 		// Using Create Method 		var t2 = Tuple.Create(12, 30, 40, 50);  		// Accessing the element of Tuple 		// Using Item property 		Console.WriteLine("1st element of t2: " + t2.Item1); 		Console.WriteLine();  		// Creating 8-tuple 		// Using Create Method 		var t3 = Tuple.Create(13, "Geeks", 			  67, 89.90, 'g', 39939, "geek", 10);  		// Accessing the element of Tuple 		// Using Item property 		// And print the 8th element of tuple 		// using Rest property 		Console.WriteLine("1st element of t3: " + t3.Item1); 		Console.WriteLine("2nd lement of t3: " + t3.Item2); 		Console.WriteLine("8th element of t3: " + t3.Rest); 	} } 

Output
1st element of t1 : GeeksforGeeks  1st element of t2: 12  1st element of t3: 13 2nd lement of t3: Geeks 8th element of t3: (10) 

Nested Tuples

In C#, we can create a tuple into another tuple we use nested tuples when you want to add more than eight elements in the same tuple. The nested tuple is accessible by using the Rest property as shown below example. We can add a nested tuple anywhere in the sequence, but it is recommended that place a nested tuple at the end of the sequence so that they can easily access from the Rest property.

Example 1:

C#
// Illustration of nested tuple using System;  public class Geeks { 	static public void Main() 	{ 		// Nested Tuple 		var My_Tuple = Tuple.Create(13, "Geeks", 67, 89.90, 	   'g', 39939, "geek", Tuple.Create(12, 30, 40, 50)); 		 		Console.WriteLine("Element of My_Tuple: " + My_Tuple.Item1); 		Console.WriteLine("Element of My_Tuple: " + My_Tuple.Item2);                // Accessing nested touple using rest property 		Console.WriteLine("Element of Nested tuple: " + My_Tuple.Rest); 		Console.WriteLine("Element of Nested tuple: " + My_Tuple.Rest.Item1.Item1); 	} } 

Output
Element of My_Tuple: 13 Element of My_Tuple: Geeks Element of Nested tuple: ((12, 30, 40, 50)) Element of Nested tuple: 12 

Example 2: Accessing nested tuple other than the last place

C#
// C# program to illustrate nested tuple using System;  public class Geeks { 	static public void Main() 	{ 		// Nested Tuple 		// Here nested tuple is present  		// at the place of 2nd element 		var My_Tuple = Tuple.Create(13, Tuple.Create(12, 30, 40, 	    50), 67, 89.90, 'g', 39939, 123, "geeks");  		// Accessing nested Tuple 		// at 2nd position 		Console.WriteLine("1st element of tuple: " + My_Tuple.Item1); 		Console.WriteLine("1st Element of Nested Tuple: " + My_Tuple.Item2.Item1); 		Console.WriteLine("2nd Element of Nested Tuple: " + My_Tuple.Item2.Item2); 		Console.WriteLine("3rd Element of Nested Tuple: " + My_Tuple.Item2.Item3); 		Console.WriteLine("4th Element of Nested Tuple: " + My_Tuple.Item2.Item4); 	} } 

Output
1st element of tuple: 13 1st Element of Nested Tuple: 12 2nd Element of Nested Tuple: 30 3rd Element of Nested Tuple: 40 4th Element of Nested Tuple: 50 

Tuple as a Method Parameter

In C#, we are allowed to pass a tuple as a method parameter as shown in the below example. Here we pass a tuple named mytuple in the PrintTheTuple() method and the elements of the tuple are accessed by using the Item<elementNumber> property.

Example:

C#
// Tuple as a method parameter. using System;  public class Geeks { 	static public void Main() 	{ 		// Creating a tuple  		var mytuple = Tuple.Create("GeeksforGeeks", 123, 90.8);  		// Pass the tuple in the 		// PrintTheTuple method 		PrintTheTuple(mytuple); 	}  	static void PrintTheTuple(Tuple<string, int, double> mytuple) 	{ 		Console.WriteLine("Element: " + mytuple.Item1); 		Console.WriteLine("Element: " + mytuple.Item2); 		Console.WriteLine("Element: " + mytuple.Item3); 	} } 

Output
Element: GeeksforGeeks Element: 123 Element: 90.8 

Tuple as a Return Type

In C#, methods are allowed to use a tuple as a return type. In other words, a method can return a tuple as shown in the below example:

Example:

C#
// C# program to illustrate  // how a method return tuple using System;  public class Geeks { 	static public void Main() 	{ 		// Return tuple is stored in mytuple 		var mytuple = PrintTuple(); 		Console.WriteLine(mytuple.Item1); 		Console.WriteLine(mytuple.Item2); 		Console.WriteLine(mytuple.Item3); 	}  	// PrintTuple method return a tuple  	static Tuple<string, string, string> PrintTuple() 	{ 		return Tuple.Create("Geeks", "For", "Geeks"); 	} } 

Output
Geeks For Geeks 

Limitations of Tuple

  • It is of reference type not of value type.
  • It is limited to eight elements. This means you cannot store more than eight elements without a nested tuple.
  • These are only accessed by using the Item<elementNumber> property.


Next Article
C# Tuple Class
author
ankita_saini
Improve
Article Tags :
  • C#
  • CSharp-Tuple

Similar Reads

    Introduction

    • C# Tutorial
      C# (pronounced "C-sharp") is a modern, versatile, object-oriented programming language developed by Microsoft in 2000 that runs on the .NET Framework. Whether you're creating Windows applications, diving into Unity game development, or working on enterprise solutions, C# is one of the top choices fo
      4 min read

    • Introduction to .NET Framework
      The .NET Framework is a software development framework developed by Microsoft that provides a runtime environment and a set of libraries and tools for building and running applications on Windows operating systems. The .NET framework is primarily used on Windows, while .NET Core (which evolved into
      6 min read

    • C# .NET Framework (Basic Architecture and Component Stack)
      C# (C-Sharp) is a modern, object-oriented programming language developed by Microsoft in 2000. It is a part of the .NET ecosystem and is widely used for building desktop, web, mobile, cloud, and enterprise applications. This is originally tied to the .NET Framework, C# has evolved to be the primary
      6 min read

    • C# Hello World
      The Hello World Program is the most basic program when we dive into a new programming language. This simply prints "Hello World!" on the console. In C#, a basic program consists of the following: A Namespace DeclarationClass Declaration & DefinitionClass Members(like variables, methods, etc.)Mai
      4 min read

    • Common Language Runtime (CLR) in C#
      The Common Language Runtime (CLR) is a component of the Microsoft .NET Framework that manages the execution of .NET applications. It is responsible for loading and executing the code written in various .NET programming languages, including C#, VB.NET, F#, and others. When a C# program is compiled, t
      4 min read

    Fundamentals

    • C# Identifiers
      In programming languages, identifiers are used for identification purposes. Or in other words, identifiers are the user-defined name of the program components. In C#, an identifier can be a class name, method name, variable name, or label. Example: public class GFG { static public void Main () { int
      2 min read

    • C# Data Types
      Data types specify the type of data that a valid C# variable can hold. C# is a strongly typed programming language because in C# each type of data (such as integer, character, float, and so forth) is predefined as part of the programming language and all constants or variables defined for a given pr
      7 min read

    • C# Variables
      In C#, variables are containers used to store data values during program execution. So basically, a Variable is a placeholder of the information which can be changed at runtime. And variables allows to Retrieve and Manipulate the stored information. In Brief Defination: When a user enters a new valu
      4 min read

    • C# Literals
      In C#, a literal is a fixed value used in a program. These values are directly written into the code and can be used by variables. A literal can be an integer, floating-point number, string, character, boolean, or even null. Example: // Here 100 is a constant/literal.int x = 100; Types of Literals i
      5 min read

    • C# Operators
      In C#, Operators are special types of symbols which perform operations on variables or values. It is a fundamental part of language which plays an important role in performing different mathematical operations. It takes one or more operands and performs operations to produce a result. Types of Opera
      8 min read

    • C# Keywords
      Keywords or Reserved words are the words in a language that are used for some internal process or represent some predefined actions. These words are therefore not allowed to be used as variable names or objects. Doing this will result in a compile-time error. Example: [GFGTABS] C# // C# Program to i
      6 min read

    Control Statements

    • C# Decision Making (if, if-else, if-else-if ladder, nested if, switch, nested switch)
      Decision Making in programming is similar to decision making in real life. In programming too, a certain block of code needs to be executed when some condition is fulfilled. A programming language uses control statements to control the flow of execution of program based on certain conditions. These
      5 min read

    • C# Switch Statement
      In C#, Switch statement is a multiway branch statement. It provides an efficient way to transfer the execution to different parts of a code based on the value of the expression. The switch expression is of integer type such as int, char, byte, or short, or of an enumeration type, or of string type.
      4 min read

    • C# Loops
      Looping in a programming language is a way to execute a statement or a set of statements multiple times depending on the result of the condition to be evaluated to execute statements. The result condition should be true to execute statements within loops. Loops are mainly divided into two categories
      5 min read

    • C# Jump Statements (Break, Continue, Goto, Return and Throw)
      In C#, Jump statements are used to transfer control from one point to another point in the program due to some specified code while executing the program. In, this article, we will learn to different jump statements available to work in C#. Types of Jump StatementsThere are mainly five keywords in t
      4 min read

    OOP Concepts

    • C# Class and Objects
      Class and Object are the basic concepts of Object-Oriented Programming which revolve around real-life entities. A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the fields and methods(member functions which define actions) into a single uni
      5 min read

    • C# Constructors
      Constructor is a special method of the class which gets automatically invoked whenever an instance of the class is created. Constructors in C# are fundamental components of object-oriented programming. Like methods, It contains the collection of instructions that are executed at the time of Object c
      5 min read

    • C# Inheritance
      Inheritance is a fundamental concept in object-oriented programming that allows a child class to inherit the properties from the superclass. The new class inherits the properties and methods of the existing class and can also add new properties and methods of its own. Inheritance promotes code reuse
      6 min read

    • C# Encapsulation
      Encapsulation is defined as the wrapping up of data and information under a single unit. It is the mechanism that binds together the data and the functions that manipulate them. In contrast, encapsulation is a protective shield that prevents the data from being accessed by the code outside this shie
      4 min read

    • C# Abstraction
      Data Abstraction is the property by which only the essential details are shown to the user and non-essential details or implementations are hidden from the user. In other words, Data Abstraction may also be defined as the process of identifying only the required characteristics of an object ignoring
      4 min read

    Methods

    • C# Methods
      A method is a block of code that performs a specific task. It can be executed when called, and it may take inputs, process them, and return a result. Methods can be defined within classes and are used to break down complex programs into simpler, modular pieces. Methods improve code organization, rea
      4 min read

    • C# Method Overloading
      Method overloading is an important feature of Object-Oriented programming and refers to the ability to redefine a method in more than one form. A user can implement method overloading by defining two or more functions in a class sharing the same name. C# can distinguish the methods with different me
      5 min read

    • C# | Method Parameters
      Methods in C# are generally the block of codes or statements in a program which gives the user the ability to reuse the same code which ultimately saves the excessive use of memory, acts as a time saver and more importantly, it provides better readability of the code. So you can say a method is a co
      7 min read

    • C# Method Overriding
      In C#, method overriding occurs when a subclass provides a specific implementation for a method that is already defined in the superclass or base class. The method in the subclass must have the same signature as the method in the base class. By overriding a method, the subclass can modify the behavi
      9 min read

    • Anonymous Method in C#
      An anonymous method is a method which doesn’t contain any name which is introduced in C# 2.0. It is useful when the user wants to create an inline method and also wants to pass parameter in the anonymous method like other methods. An Anonymous method is defined using the delegate keyword and the use
      3 min read

    Arrays

    • C# Arrays
      An array is a group of like-typed variables that are referred to by a common name. And each data item is called an element of the array. The data types of the elements may be any valid data type like char, int, float, etc. and the elements are stored in a contiguous location. Length of the array spe
      8 min read

    • C# Jagged Arrays
      A jagged array is an array of arrays, where each element in the main array can have a different length. In simpler terms, a jagged array is an array whose elements are themselves arrays. These inner arrays can have different lengths. Can also be mixed with multidimensional arrays. The number of rows
      5 min read

    • C# Array Class
      Array class in C# is part of the System namespace and provides methods for creating, searching, and sorting arrays. The Array class is not part of the System.Collections namespace, but it is still considered as a collection because it is based on the IList interface. The Array class is the base clas
      7 min read

    • How to Sort an Array in C# | Array.Sort() Method Set - 1
      Array.Sort Method in C# is used to sort elements in a one-dimensional array. There are 17 methods in the overload list of this method as follows: Sort<T>(T[]) MethodSort<T>(T[], IComparer<T>) MethodSort<T>(T[], Int32, Int32) MethodSort<T>(T[], Comparison<T>) Metho
      8 min read

    • How to find the rank of an array in C#
      Array.Rank Property is used to get the rank of the Array. Rank is the number of dimensions of an array. For example, 1-D array returns 1, a 2-D array returns 2, and so on. Syntax: public int Rank { get; } Property Value: It returns the rank (number of dimensions) of the Array of type System.Int32. B
      2 min read

    ArrayList

    • ArrayList in C#
      ArrayList is a powerful feature of C# language. It is the non-generic type of collection which is defined in System.Collections namespace. It is used to create a dynamic array means the size of the array is increase or decrease automatically according to the requirement of your program, there is no
      6 min read

    • C# ArrayList Class
      ArrayList class in C# is a part of the System.Collections namespace that represents an ordered collection of an object that can be indexed individually. It is basically an alternative to an array. It also allows dynamic memory allocation, adding, searching, and sorting items in the list. Elements ca
      8 min read

    • C# | Array vs ArrayList
      Arrays: An array is a group of like-typed variables that are referred to by a common name. Example: C/C++ Code // C# program to demonstrate the Arrays using System; class GFG { // Main Method public static void Main(string[] args) { // creating array int[] arr = new int[4]; // initializing array arr
      2 min read

    String

    • C# Strings
      In C#, a string is a sequence of Unicode characters or an array of characters. The range of Unicode characters will be U+0000 to U+FFFF. The array of characters is also termed as the text. So the string is the representation of the text. A string is an important concept, and sometimes people get con
      8 min read

    • C# Verbatim String Literal - @
      In C#, a verbatim string is created using a special symbol @. The symbol(@) is known as a verbatim identifier. If a string contains @ as a prefix followed by double quotes, then compiler identifies that string as a verbatim string and compile that string. The main advantage of @ symbol is to tell th
      5 min read

    • C# String Class
      In C#, a string is a sequence of Unicode characters or an array of characters. The range of Unicode characters will be U+0000 to U+FFFF. The array of characters is also termed as the text. So the string is the representation of the text. A string is represented by a class System.String. The String c
      9 min read

    • C# StringBuilder
      StringBuilder is a Dynamic Object. It doesn’t create a new object in the memory but dynamically expands the needed memory to accommodate the modified or new string.A String object is immutable, i.e. a String cannot be changed once created. To avoid string replacing, appending, removing or inserting
      4 min read

    • C# String vs StringBuilder
      StringBuilder is used to represent a mutable string of characters. Mutable means the string which can be changed. So String objects are immutable but StringBuilder is the mutable string type. It will not create a new modified instance of the current string object but do the modifications in the exis
      4 min read

    Tuple

    • C# Tuple
      A tuple is a data structure which consists of multiple parts. It is the easiest way to represent a data set which has multiple values of different types. It was introduced in .NET Framework 4.0. In a tuple, we can add elements from 1 to 8. If try to add elements greater than eight, then the compiler
      7 min read

    • C# Tuple Class
      In C#, the Tuple class is used to provide static methods for creating tuples and this class is defined under the System namespace. This class itself does not represent a tuple, but it provides static methods that are used to create an instance of the tuple type. In other words, the Tuple class provi
      3 min read

    • C# ValueTuple
      ValueTuple is a structure introduced in C# 7.0 which represents the value type. Already included in .NET Framework 4.7 or higher version. It allows us to store a data set that contains multiple values that may or may not be related to each other. It can store elements starting from 0 to 8 and can st
      7 min read

    • C# ValueTuple Struct
      ValueTuple Struct in C# is a structure that provides static methods that are used in creating value tuples. It is defined under the System namespace and was introduced in .NET Framework 4.7. This struct enables runtime implementation tuples in C#. The ValueTuple structure represents a tuple that can
      4 min read

    Indexers

    • C# Indexers
      In C#, an indexer allows an instance of a class or struct to be indexed as an array. When an indexer is defined for a class, then that class will behave like a virtual array. Array access operator i.e. ([ ]) is used to access the instance of the class which uses an indexer. A user can retrieve or se
      4 min read

    • C# Multidimensional Indexers
      In C#, indexers are special members that allow objects to be indexed similarly to arrays. Multi-dimensional indexers in C# are the same as multidimensional arrays. We can efficiently retrieve data with a multi-dimensional indexer by providing at least two parameters in its declaration. The first ind
      5 min read

    • C# - Overloading of Indexers
      In C#, Indexer allows an instance of a class or struct to be indexed as an array. When an indexer is defined for a class, then that class will behave like a virtual array. It can be overloaded. C# has multiple indexers in a single class. To overload an indexer, declare it with multiple parameters an
      3 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