Upload Button Icon Add office photos

Filter interviews by

GeeksForGeeks Software Developer Interview Questions and Answers

Updated 3 Jul 2024

GeeksForGeeks Software Developer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. DB Schema Design
Round 2 - Technical 

(1 Question)

  • Q1. REST API, SQL and SOLID Principles
Round 3 - Technical 

(1 Question)

  • Q1. Resume Based Round with Manager
Round 4 - HR 

(1 Question)

  • Q1. It was basically a salary negotiation round.
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

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic react questions
Round 2 - Coding Test 

Basic DSA Questions of array

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

In the first inerview round, I was asked two problems, that were based on Data Structures. 

I realized a key point in this round : that sometimes, the interviewer is wrong, and you are right. Still, you should not argue with the interviewer, rather, just accept, and move on. 

This happened in the first coding problem itself, when, I actually used a "map" in c++. The interviewer asked me, to use an "unordered map" Instead of map, saying, that using an unordered map would make the insertion cost O(1) instead of O(log(n)). I refused to this by saying, that using unordered map is risky, as in case of a lot of collisions, it could go O(n). 

Still, the interviewer said, that I were wrong, and said that he had done some competitive programming himself, and he never faced a TLE verdict because of using unordered map. 

And I knew very well, that an Anti-Hash-Test could be created, to enforce a TLE verdict. The interviewer went on to saying that "every competitive programmer in the world would never use a map, rather, always use unordered map".

I slightly smiled to this, but agreed, and later cleared that interview, because of the smooth second problem.

  • Q1. Anagram Pairs

    Pre-requisites: Anagrams are defined as words or names that can be formed by rearranging letters of another word. Such as "spar" can be formed by rearranging letters of "rasp&q...

  • Ans. Count Characters

    Anagrams have a unique property: the counts of each distinct character present in both strings are the same. One way to check this is: 

    1. Sort both strings, so that all the same characters come together
    2. Then loop through both strings together and check each element in both strings one by one
    3. If at any position, the characters are found to be different or if the lengths of the two strings are different, ...
  • Answered by CodingNinjas
  • Q2. Distribute N candies among K people

    Sanyam has ‘N’ candies, he wants to distribute that into ‘K’ of his friends. He made his ‘K’ friends stand in line, in increasing order of his likeness. Not being so sma...

  • Ans. Brute Force

    Here we can simply use the concept of brute force. 

     

    • We initialize an array with 0 elements.
    • Then we make a variable and initialize it with 1(let’s call it “increment”). This variable is used to keep track of the number of candies to be given to the current friend.
    • We start with the first element and increase it by ‘increment’.
    • Now we reduce the total number of candies by the variable ‘increment’. (N ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

I were asked several questions involving DBMS. I was given data of patients of entire country, and was asked to make a dataBase for the same.

  • Q1. DBMS

    Create a Database, when you are given the data of all the patients of a country

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Maharaja Surajmal Institute Of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaGeeksforGeeks interview preparation:Topics to prepare for the interview - Data Structures, Competitive Coding, Algorithms, Dynamic Programming, GraphsTime required to prepare for the interview - 2 yearsInterview preparation tips for other job seekers

Tip 1 : I did a lot of problems on Codeforces, Codechef and other online platforms
Tip 2 : Apart from normal CP, it is better to do some interview prep separately
Tip 3 : Must note - you need to have development skills as well to clear the projects and DBMS interview.

Application resume tips for other job seekers

Tip 1 : Make a 1 page resume only
Tip 2 : It is good to have some projects and decent ranks on your resume

Final outcome of the interviewRejected

Skills evaluated in this interview

GeeksForGeeks interview questions for designations

 Software Engineer

 (1)

 IOS Developer

 (1)

 Software Development Engineer

 (1)

 Software Development Engineer 1

 (1)

 Member Technical Staff

 (1)

 Automation Test Engineer

 (1)

 Technical Content Writer

 (7)

 SEO Analyst

 (1)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding question: Given a sorted array of numbers. All numbers have freq of 2 in array except one number. Find that number with T.C of logn
  • Ans. 

    Find the single number in a sorted array with frequency of 2 for all other numbers.

    • Use binary search to find the number with different frequency.

    • Check if the mid element is at even or odd index to determine which side to search next.

    • Example: Input array [1, 1, 2, 2, 3, 3, 4, 4, 5] should return 5.

  • Answered by AI
  • Q2. Print left view of tree
  • Ans. 

    Print the left view of a tree by traversing the tree from left to right at each level

    • Traverse the tree using level order traversal

    • Print the first node at each level encountered during traversal

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Detailed discussion on projects
  • Q2. Questions on O.S like about deadlocks,etc..

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Fair and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java oops concepts
Round 2 - HR 

(1 Question)

  • Q1. Self intro for yourself

Software Developer Interview Questions & Answers

QSpiders user image Aishwarya Wankhede

posted on 19 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a average test

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell us about yoursefl
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development

    • Strong problem-solving skills

    • Familiar with Agile methodologies

    • Excellent communication skills

    • Team player

  • Answered by AI
  • Q2. What you think what makes a team fail?
  • Ans. 

    Lack of communication, poor leadership, conflicting goals, and lack of trust can make a team fail.

    • Lack of communication: When team members do not communicate effectively, tasks can be misunderstood or not completed on time.

    • Poor leadership: A team without a strong leader to guide and motivate them can easily lose direction and focus.

    • Conflicting goals: If team members have different priorities or objectives, it can lead ...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: They check my skills also my mind skills with cross questioning
Tips: Consentration on questions

Round: Problem Statement
Experience: They check my skills also my mind skills with cross questioning
Tips: Consentration on questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic questions for ADF
Round 2 - HR 

(1 Question)

  • Q1. Basic HR round for CTC and notice period
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. C++ this pointer
  • Q2. Python gil library questions asked

GeeksForGeeks Interview FAQs

How many rounds are there in GeeksForGeeks Software Developer interview?
GeeksForGeeks interview process usually has 3 rounds. The most common rounds in the GeeksForGeeks interview process are Technical, Coding Test and HR.
How to prepare for GeeksForGeeks Software Developer 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 Backend, Coding, Data Structures, Django and MySQL.
What are the top questions asked in GeeksForGeeks Software Developer interview?

Some of the top questions asked at the GeeksForGeeks Software Developer interview -

  1. REST API, SQL and SOLID Princip...read more
  2. Discussion over React fundamenta...read more
  3. Basic react questi...read more

Tell us how to improve this page.

GeeksForGeeks Software Developer Interview Process

based on 3 interviews in last 1 year

Interview experience

4.7
  
Excellent

People are getting interviews through

based on 2 GeeksForGeeks interviews
Company Website
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
GeeksForGeeks Software Developer Salary
based on 27 salaries
₹5.2 L/yr - ₹14 L/yr
23% more than the average Software Developer Salary in India
View more details

GeeksForGeeks Software Developer Reviews and Ratings

based on 4 reviews

2.5/5

Rating in categories

4.1

Skill development

1.9

Work-Life balance

1.8

Salary & Benefits

1.6

Job Security

1.6

Company culture

1.7

Promotions/Appraisal

1.8

Work Satisfaction

Explore 4 Reviews and Ratings
Software Engineer
36 salaries
unlock blur

₹6 L/yr - ₹11.9 L/yr

Member Technical Staff
32 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Software Development Engineer
29 salaries
unlock blur

₹7 L/yr - ₹14.8 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview