Upload Button Icon Add office photos

Filter interviews by

GeeksForGeeks Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top GeeksForGeeks Interview Questions and Answers

View all 38 questions

GeeksForGeeks Interview Experiences

Popular Designations

39 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Assignment 

You have to write and publish your article if it will get published by them , then you can apply for the role.

Round 2 - Case Study 

Based on your written articles, you'll get paid so write and try to make it unique and easy to understand for others .

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your article format proper and article should be unique and no plagiarism should be there.

Technical Content Writer Interview Questions asked at other Companies

Q1. How many keywords can be placed in an article? Suppose I gave you all the keywords. How much will you put an article?
View answer (2)

SME Interview Questions & Answers

user image Anonymous

posted on 2 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic question related to mathematics

SME Interview Questions asked at other Companies

Q1. 1. What is one to one function?
View answer (9)

I applied via Approached by Company and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Coding Test 

3 Coding Question were there
Easy - 2 Pointer Problem Variation
Medium - Prefix Sum Problem Variation
Hard - DP (Maximum of Minimum) Variation Problem

Round 2 - Technical 

(4 Questions)

  • Q1. Difference between SQL and NoSQL
  • Ans. 

    SQL is a relational database management system while NoSQL is a non-relational database management system.

    • SQL databases use structured query language while NoSQL databases use unstructured query language.

    • SQL databases are vertically scalable while NoSQL databases are horizontally scalable.

    • SQL databases are good for complex queries while NoSQL databases are good for large amounts of unstructured data.

    • Examples of SQL dat...

  • Answered by AI
  • Q2. Different types of Indexing in SQL
  • Ans. 

    Different types of indexing in SQL

    • Clustered Index

    • Non-Clustered Index

    • Unique Index

    • Full-Text Index

    • Filtered Index

  • Answered by AI
  • Q3. Joins question and query on that
  • Q4. Schema Design of Restaurant Management System(RMS)
  • Ans. 

    Schema design for a Restaurant Management System

    • Identify entities such as customers, orders, menu items, tables, etc.

    • Create tables for each entity with appropriate attributes and relationships

    • Use foreign keys to establish relationships between tables

    • Consider normalization to avoid data redundancy and improve performance

    • Include constraints to ensure data integrity

    • Use appropriate data types for each attribute

    • Consider sca

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. What is complexity and their types
  • Ans. 

    Complexity refers to the level of difficulty in solving a problem. There are two types: time complexity and space complexity.

    • Time complexity refers to the amount of time required to solve a problem, and is usually measured in terms of the number of operations performed by an algorithm.

    • Space complexity refers to the amount of memory required to solve a problem, and is usually measured in terms of the amount of memory us...

  • Answered by AI
  • Q2. Detect a loop in a linked list and return the node where the loop starts.
  • Ans. 

    Detect loop in linked list and return node where loop starts.

    • Use two pointers, one moving one node at a time and the other moving two nodes at a time

    • If there is a loop, the two pointers will eventually meet at a node inside the loop

    • Reset one of the pointers to the head of the linked list and move both pointers one node at a time

    • The node where the two pointers meet is the start of the loop

  • Answered by AI
  • Q3. Different types of traversal
  • Ans. 

    Traversal refers to visiting all the nodes of a data structure in a specific order.

    • Inorder traversal: Left subtree, root, right subtree

    • Preorder traversal: Root, left subtree, right subtree

    • Postorder traversal: Left subtree, right subtree, root

    • Level order traversal: Visit nodes level by level

  • Answered by AI
  • Q4. Find the sum of pairs in the binary search tree which is equal to k
  • Ans. 

    Find the sum of pairs in a binary search tree equal to k.

    • Traverse the tree in-order and store the values in an array.

    • Use two pointers approach to find the pairs that sum up to k.

    • Time complexity: O(n), Space complexity: O(n).

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. Discussion on the project.
  • Q2. Design a payment gateway.
  • Ans. 

    A payment gateway is a software application that facilitates online transactions between a merchant and a customer.

    • The payment gateway should support multiple payment methods such as credit/debit cards, net banking, and digital wallets.

    • It should have a secure and reliable infrastructure to ensure the safety of customer data.

    • The gateway should have a user-friendly interface for easy navigation and payment processing.

    • It ...

  • Answered by AI
  • Q3. Populate next right pointer
  • Ans. 

    Populate the next right pointer of a binary tree node

    • Traverse the tree using level order traversal

    • For each node, set its next right pointer to the next node in the same level

    • If there is no next node in the same level, set the next right pointer to NULL

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good command of DSA and projects you have worked on.

Skills evaluated in this interview

Top GeeksForGeeks Software Development Engineer Interview Questions and Answers

Q1. Detect a loop in a linked list and return the node where the loop starts.
View answer (1)

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

I applied via Company Website and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Question related to Dijkstra Algorithm was asked.
  • Ans. Dijktra algorithm is a graph algorithm to find shortest distance between two graph nodes if exist a path between them.
  • Answered Anonymously
  • Q2. Case where Dijkstra will not work
  • Ans. 

    Dijkstra's algorithm will not work when there are negative edge weights in the graph.

    • Dijkstra's algorithm assumes that all edge weights are non-negative.

    • If there are negative edge weights, the algorithm may produce incorrect shortest paths.

    • In such cases, other algorithms like Bellman-Ford or Floyd-Warshall should be used.

    • For example, consider a graph with a negative weight cycle.

  • Answered by AI
  • Q3. What is sparse table and why it is used
  • Ans. 

    Sparse table is a data structure used to efficiently answer range queries on an array.

    • Sparse table is used to optimize range query operations on an array.

    • It precomputes and stores the answers to all possible range queries in a table.

    • The table is constructed using a divide-and-conquer approach.

    • Sparse table reduces the time complexity of range queries from O(n) to O(1).

    • It is commonly used in scenarios where range queries

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts properly and think before finalising any answer. Keep discussion on with the interviewer so that you can know the expectations

Skills evaluated in this interview

Technical Member Staff Intern Interview Questions asked at other Companies

Q1. What is sparse table and why it is used
View answer (2)

GeeksForGeeks interview questions for popular designations

 Technical Content Writer

 (7)

 Software Developer

 (5)

 Automation Test Engineer

 (1)

 Branding

 (1)

 Content Writer

 (1)

 Digital Marketing Manager

 (1)

 Internship Trainee

 (1)

 IOS Developer

 (1)

I applied via Approached by Company and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Normal selenium, Java related questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. Selenium, Java questions
Round 3 - HR 

(1 Question)

  • Q1. Introduction and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Question asked were not that tough , with well preparation one can easily crack the interview along with all the parameters mentioned in resume

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Get interview-ready with Top GeeksForGeeks Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Basic DSA questions were asked.

Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion over React fundamentals.
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions and negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Quite good and smooth

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Jobs at GeeksForGeeks

View all

Technical content analyst Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Geeksforgeeks Jobs and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Ask about technical knowledge a candidate mention in their resume.
Round 3 - HR 

(1 Question)

  • Q1. In this HR will tell you about role, office culture and CTC.

Interview Preparation Tips

Topics to prepare for GeeksForGeeks Technical content analyst interview:
  • Basic DSA
  • Any programming language
Interview preparation tips for other job seekers - In this role you will mostly work on Excel sheets and you will have to write articles when there is no work of content analyst.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. Qualifications and background

Interview Preparation Tips

Topics to prepare for GeeksForGeeks Digital Marketing Manager interview:
  • Social Media Marketing
  • facebook ad
  • Pitch Books
Interview preparation tips for other job seekers - Not much to be worried about just create a fancy resume

Digital Marketing Manager Interview Questions asked at other Companies

Q1. Because, bidding is not only the factor to block the first position in Ad Ranking. Mainly three factors need to be optimized in order to get the chance to show up of Ad rank 1st, Landing Page Relevancy, Ad Quality Score and Bidding.
View answer (1)

Branding Interview Questions & Answers

user image Anonymous

posted on 24 Jul 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Basic interests & brief understanding about the company
  • Q2. What makes you a good fit for GFG
  • Q3. Why should we hire you

I applied via Approached by Company and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. The interviewer asks 1 DSA Question and questions related to OOPs and Javascript.
  • Q2. Minimum Swaps to make it palindrome
  • Ans. 

    Minimum number of swaps required to make a given array of strings a palindrome.

    • Create a hash table to store the frequency of each character in the array.

    • Iterate through the array and count the number of characters with odd frequency.

    • If the count is greater than 1, the array cannot be rearranged into a palindrome.

    • Otherwise, use two pointers to swap characters and count the number of swaps required to make the array a pa

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Discuss about the role and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Have the good problem-solving skill and go through your resume.

Skills evaluated in this interview

Member Technical Staff Interview Questions asked at other Companies

Q1. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions. Find the maximum profit that you ca... read more
View answer (4)

GeeksForGeeks Interview FAQs

How many rounds are there in GeeksForGeeks interview?
GeeksForGeeks interview process usually has 2-3 rounds. The most common rounds in the GeeksForGeeks interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for GeeksForGeeks interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at GeeksForGeeks. The most common topics and skills that interviewers at GeeksForGeeks expect are CRM, SAN, SMS, SOC and PDF.
What are the top questions asked in GeeksForGeeks interview?

Some of the top questions asked at the GeeksForGeeks interview -

  1. why react is better, when to use what css, reverse a str...read more
  2. Detect a loop in a linked list and return the node where the loop star...read more
  3. What is SEO and How does it help articles get rank bett...read more
How long is the GeeksForGeeks interview process?

The duration of GeeksForGeeks interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

GeeksForGeeks Interview Process

based on 34 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
TCS iON Interview Questions
3.9
 • 364 Interviews
upGrad Interview Questions
3.7
 • 205 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
NIIT Interview Questions
3.6
 • 83 Interviews
HackerRank Interview Questions
4.4
 • 23 Interviews
CodeChef Interview Questions
3.2
 • 1 Interview
View all

GeeksForGeeks Reviews and Ratings

based on 176 reviews

3.2/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.2

Salary

2.7

Job security

3.1

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 176 Reviews and Ratings
Course Consultant

Noida

1-2 Yrs

Not Disclosed

Sales Support Associate

Noida

0-1 Yrs

₹ 3-3.5 LPA

Explore more jobs
Software Engineer
36 salaries
unlock blur

₹6 L/yr - ₹11.9 L/yr

Software Development Engineer
32 salaries
unlock blur

₹7 L/yr - ₹14.8 L/yr

Member Technical Staff
30 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Technical Content Writer
28 salaries
unlock blur

₹1 L/yr - ₹6.2 L/yr

Software Developer
27 salaries
unlock blur

₹5.2 L/yr - ₹14 L/yr

Explore more salaries
Compare GeeksForGeeks with

CodeChef

3.2
Compare

HackerRank

4.4
Compare

upGrad

3.7
Compare

Simplilearn

3.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview