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
  • AngularJS Tutorial
  • AngularJS Directives
  • AngularJS Functions
  • AngularJS Filters
  • AngularJS Examples
  • AngularJS Interview Questions
  • Angular ngx Bootstrap
  • AngularJS Cheat Sheet
  • AngularJS PrimeNG
  • JavaScript
  • Web Technology
Open In App
Next Article:
Angular PrimeNG ContextMenu Events
Next article icon

Angular PrimeNG ContextMenu Properties

Last Updated : 24 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease.  In this article, we are going to learn Angular PrimeNG ContextMenu Properties.

The ContextMenu component displays a menu when right-clicking over any component. Many components provide a special integration with the ContextMenu component. The ContextMenu component appears similar to the menu that appears when we right-click over any application or desktop screen on a PC. 

Angular PrimeNG ContextMenu Properties: The properties of the component allow us to customize the component and display it accordingly and suit the website design. ContextMenu properties are described below:

  • model: This is used to provide an array of menu items.
  • global: This is used to attach the menu to a document instead of a particular item.
  • target: This is used as a Local template variable name of the element to attach the context menu.
  • style:  Inline style of the component.
  • styleClass: Style class of the component.
  • appendTo:  Target element to attach the overlay
  • baseZIndex: This is used for the zIndex value to use in layering.
  • autoZIndex: This is used to decide Whether to automatically manage to layer.
  • triggerEvent:  Event for which the menu must be displayed.
 

Syntax:

<p-contextMenu       [target]="..."       [model]="...">  </p-contextMenu>    <img #gfglogo src="..." alt="...">

Creating Angular application & module installation:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Install PrimeNG in your given directory.

npm install primeng --save  npm install primeicons --save

Project Structure: It will look like the following:

Steps to run the application: Run the below command to see the output:

ng serve --save

Example 1: In this example, we will learn about the model and target.

  • app.component.html:
HTML
<div style="width:80%">     <h1 style="color: green;">         GeeksforGeeks     </h1>     <h2>         Angular PrimeNG ContextMenu Properties     </h2>     <img #img src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20210419113249/gfg-new-logo-min.png"         alt="Logo"      />     <p-contextMenu [target]="img" [model]="items"></p-contextMenu> </div> 
  • app.component.ts:
JavaScript
import { Component } from "@angular/core"; import { MenuItem } from "primeng/api";  @Component({     selector: "app-root",     templateUrl: "./app.component.html" })  export class AppComponent {     items: MenuItem[]=[];      ngOnInit() {         this.items = [             {                 label: "Visit Website",                 icon: "pi pi-fw pi-globe"             },             {                 label: "Like",                 icon: "pi pi-fw pi-thumbs-up-fill"             },             {                 label: "More",                 icon: "pi pi-fw pi-folder",                 items: [                     {                         label: "New",                         icon: "pi pi-fw pi-plus"                     },                     {                         label: "Share",                         icon: "pi pi-fw pi-share-alt"                     },                     {                         label: "Search",                         icon: "pi pi-fw pi-search"                     }                 ]             },              {                 separator: true             },             {                 label: "Quit",                 icon: "pi pi-fw pi-power-off"             }         ];     } } 
  • app.module.ts:
JavaScript
import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { RouterModule } from "@angular/router"; import { BrowserAnimationsModule }     from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { ContextMenuModule } from "primeng/contextmenu";  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         ContextMenuModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent] })  export class AppModule {} 

Output:

Example 2: In this article, we will learn about the global property. We will be able to see context menu options when we click anywhere on the screen irrespective of the target.

  • app.component.html:
HTML
<div style="width:80%">     <h1 style="color: green;">         GeeksforGeeks     </h1>     <h2>         Angular PrimeNG ContextMenu Properties     </h2>     <p #p>       Right Click anywhere on this screen.        You will see the Context Menu Options       </p>     <p-contextMenu [target]="p"          [model]="items" [global]="true">       </p-contextMenu> </div> 
  • app.component.ts:
JavaScript
import { Component } from "@angular/core"; import { MenuItem } from "primeng/api";  @Component({     selector: "app-root",     templateUrl: "./app.component.html" })  export class AppComponent {     items: MenuItem[]=[];      ngOnInit() {         this.items = [             {                 label: "Visit Website",                 icon: "pi pi-fw pi-globe"             },             {                 label: "Like",                 icon: "pi pi-fw pi-thumbs-up-fill"             },             {                 label: "More",                 icon: "pi pi-fw pi-folder",                 items: [                     {                         label: "New",                         icon: "pi pi-fw pi-plus"                     },                     {                         label: "Share",                         icon: "pi pi-fw pi-share-alt"                     },                     {                         label: "Search",                         icon: "pi pi-fw pi-search"                     }                 ]             },              {                 separator: true             },             {                 label: "Quit",                 icon: "pi pi-fw pi-power-off"             }         ];     } } 
  • app.module.ts:
JavaScript
import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { RouterModule } from "@angular/router"; import { BrowserAnimationsModule }     from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { ContextMenuModule } from "primeng/contextmenu";  @NgModule({     imports: [         BrowserModule,         BrowserAnimationsModule,         ContextMenuModule     ],     declarations: [AppComponent],     bootstrap: [AppComponent] })  export class AppModule {} 

Output:

Reference: http://primefaces.org/primeng/contextmenu


Next Article
Angular PrimeNG ContextMenu Events
author
17bcs5e9h
Improve
Article Tags :
  • Technical Scripter
  • Web Technologies
  • AngularJS
  • Technical Scripter 2022
  • Angular-PrimeNG
  • PrimeNG-Data

Similar Reads

    MenuModel API Component

    • Angular PrimeNG MenuModel API MenuItem
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use Angular PrimeNG MenuModel API MenuItem. MenuModel API: Prime
      3 min read

    • Angular PrimeNG MenuModel API MenuItem
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use Angular PrimeNG MenuModel API MenuItem. MenuModel API: Prime
      3 min read

    • Angular PrimeNG MenuModel API Custom Content
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use Angular PrimeNG MenuModel API Custom Content. In MenuModel A
      3 min read

    Breadcrumb Component

    • Angular PrimeNG Breadcrumb Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Breadcrumb component in Angular PrimeNG. We will also l
      3 min read

    • Angular PrimeNG Breadcrumb Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the Breadcrumb Properties in Angular PrimeNG. The Breadcru
      3 min read

    • Angular PrimeNG Breadcrumb Events
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn about Breadcrumb Events in Angular PrimeNG. The Breadcrumb component
      3 min read

    • Angular PrimeNG Breadcrumb Styling
      A responsive website may be created with great ease using the open-source Angular PrimeNG framework, which has a wide range of native Angular UI components for superb style. In this article, we will learn how to style the Angular PrimeNG Breadcrumb Styling.  The Breadcrumb Component offers the navig
      4 min read

    ContextMenu Component

    • Angular PrimeNG ContextMenu Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG ContextMenu Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease.  In this article, we are going to learn Angular PrimeNG ContextMenu Properties. The ContextMenu comp
      4 min read

    • Angular PrimeNG ContextMenu Events
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG ContextMenu Styling
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    Dock Component

    • Angular PrimeNG Dock Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG Dock Basic
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use Dock Basic in Angular PrimeNG. The Dock Component in Angula
      3 min read

    • Angular PrimeNG Dock Advanced
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Dock Advanced in Angular PrimeNG. The Dock Component in
      4 min read

    • Angular PrimeNG Dock Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG Dock Styling
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    MegaMenu Component

    • Angular PrimeNG MegaMenu Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the MegaMenu component in Angular PrimeNG. We will also lea
      4 min read

    • Angular PrimeNG MegaMenu Horizontal
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the MegaMenu Horizontal in Angular PrimeNG. We will also learn
      4 min read

    • Angular PrimeNG MegaMenu Vertical
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the MegaMenu Vertical in Angular PrimeNG. We will also learn ab
      4 min read

    • Angular PrimeNG MegaMenu Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use MegaMenu Properties in Angular PrimeNG.  The MegaMenu comp
      4 min read

    • Angular PrimeNG MegaMenu Templates
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use Angular PrimeNG MegaMenu Templates. The MegaMenu component i
      3 min read

    • Angular PrimeNG MegaMenu Styling
      A responsive website may be created with great ease using the open-source Angular PrimeNG framework, which has a wide range of native Angular UI components for superb style. In this tutorial, we will learn how to style the MegaMenu component in Angular PrimeNG. Additionally, we will learn about the
      5 min read

    Menu Component

    • Angular PrimeNG Menu Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Menu component in Angular PrimeNG. We will also learn a
      4 min read

    • Angular PrimeNG Menu Basic
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Menu Basic in Angular PrimeNG. Angular PrimeNG Menu Basic i
      3 min read

    • Angular PrimeNG Menu Overlay
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Menu Overlay in Angular PrimeNG. Angular PrimeNG Menu Overl
      3 min read

    • Angular PrimeNG Menu SubMenus
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG Menu Popup Mode
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Menu Popup Mode in Angular PrimeNG. The Menu Popup Mode can
      3 min read

    • Angular PrimeNG Menu Animation Configuration
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG Menu Properties
      Angular PrimeNG is an open-source library that consists of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see Angular PrimeNG Menu Properties. The Menu component is used to navigate the
      4 min read

    • Angular PrimeNG Menu Events
      Angular PrimeNG is an open-source library that consists of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will be seeing Angular PrimeNG Menu Events. The Menu component is used for navigatin
      4 min read

    • Angular PrimeNG Menu Styling
      A responsive website may be easily created using the open-source Angular PrimeNG framework, which has a wide range of native Angular UI components for superb style. In this article, we will learn how to style the Menu Component in Angular PrimeNG. A component that holds information and allows both s
      4 min read

    Menubar Component

    • Angular PrimeNG Menubar Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Menubar component in Angular PrimeNG. We will also lear
      3 min read

    • Angular PrimeNG Menubar Custom Content
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use Menubar Custom Content in Angular PrimeNG. We will also lea
      4 min read

    • Angular PrimeNG Menubar Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use Menubar Properties in Angular PrimeNG. We will also learn
      4 min read

    • Angular PrimeNG Menubar Templates
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know about Angular PrimeNG Menubar Templates The Menubar component is used
      3 min read

    • Angular PrimeNG Menubar Styling
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    PanelMenu Component

    • Angular PrimeNG PanelMenu Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the PanelMenu component in Angular PrimeNG. We will also le
      4 min read

    • Angular PrimeNG PanelMenu Animation Configuration
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG PanelMenu Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the PanelMenu Properties in Angular PrimeNG. We will also
      4 min read

    • Angular PrimeNG PanelMenu Styling
      The open-source Angular PrimeNG framework is used to create responsive websites with great simplicity and has a large set of native Angular UI components that are utilized for superb style. In this article, we will learn how to style the PanelMenu Component in Angular PrimeNG using its styling class
      4 min read

    SlideMenu Component

    • Angular PrimeNG SlideMenu Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the SlideMenu component in Angular PrimeNG. We will also lea
      5 min read

    • Angular PrimeNG Slide Menu Basic
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use SlideMenu Basic in Angular PrimeNG. SlideMenu component is u
      3 min read

    • Angular PrimeNG Slide Menu Popup
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the SlideMenu Popup in Angular PrimeNG. SlideMenu component
      4 min read

    • Angular PrimeNG Slide Menu Effects
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Slide Menu Effects in Angular PrimeNG. We will also lea
      3 min read

    • Angular PrimeNG Slide Menu Animation Configuration
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    • Angular PrimeNG Slide Menu Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use SlideMenu Properties in Angular PrimeNG. We will also learn
      5 min read

    • Angular PrimeNG Slide Menu Styling
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more.
      4 min read

    Steps Component

    • Angular PrimeNG Steps Component
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Steps component in Angular PrimeNG. We will also learn
      4 min read

    • Angular PrimeNG Steps Readonly
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the Steps Readonly in Angular PrimeNG. We will also learn
      3 min read

    • Angular PrimeNG Steps Properties
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will learn how to use the Steps Properties in Angular PrimeNG. We will also lear
      3 min read

    • Angular PrimeNG Steps Events
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Steps Events in Angular PrimeNG. The Steps Component guides users t
      3 min read

    • Angular PrimeNG Steps Styling
      Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Angular PrimeNG Steps Styling.  The Steps Component guides users th
      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