Upload Button Icon Add office photos

Filter interviews by

Glassdoor Interview Questions and Answers

Updated 30 Dec 2024

Glassdoor Interview Experiences

Popular Designations

8 interviews found

Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Technology questions and coding

Intern Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is your weakness

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

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

Duation 1 hr and test difficulty medium

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was very tough, if u prepared well u can crack the apti

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

Glassdoor interview questions for popular designations

 Accountant

 (1)

 Analyst

 (1)

 Software Engineer Trainee

 (1)

 Manager

 (1)

 Electrical Engineer

 (1)

 Intern

 (1)

Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What are you going to do in your next role?

Manager Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2021

Interview Questionnaire 

2 Questions

  • Q1. Most common question - why do you want to leave?
  • Q2. Never say any negative things about your current company..Just say looking for personal growth & wider opportunities

Interview Preparation Tips

Interview preparation tips for other job seekers - Negative things said about the company you work in creates bad impression in back of interviewers mind

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

I applied via Company Website and was interviewed in Mar 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 - Assignment 

MCQ question

Interview Preparation Tips

Interview preparation tips for other job seekers - I getting a good position in reputation company

Electrical Engineer Interview Questions asked at other Companies

Q1. What is the difference between Switch gear & Circuit Breakers ?
View answer (13)

Accountant Interview Questions & Answers

user image Anonymous

posted on 30 Jul 2020

I applied via Company Website

Interview Questionnaire 

3 Questions

  • Q1. About myself
  • Q2. Why do you want to job here
  • Ans. 

    I am interested in this job because of the company's reputation, growth opportunities, and alignment with my skills and values.

    • I am impressed by the company's strong reputation in the industry.

    • I see great potential for growth and advancement within the company.

    • The company's values and mission align with my own.

    • I believe my skills and experience make me a strong fit for this role.

    • I am excited about the opportunity to co

  • Answered by AI
  • Q3. I have no working experience

Interview Preparation Tips

Interview preparation tips for other job seekers - I belogs to commerce stream

Accountant Interview Questions asked at other Companies

Q1. What journal is made when purchase requisition is created
View answer (25)

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. You are given a large array of n bits. Each bit is initially 0. You perform several operations of the type
  • Ans. 

    Solution to performing operations on a large array of bits.

    • Use bitwise operators to perform operations on individual bits

    • Use a loop to iterate through the array and perform the operations

    • Ensure that the array is large enough to accommodate all the bits

    • Consider using a data structure like a bitset for efficient bit manipulation

  • Answered by AI
  • Q2. Questions on Network programming
  • Q3. Questions on array,heap and binary trees
  • Q4. Round was both HR+Technical

Interview Preparation Tips

Round: Test
Experience: Questions can be found here:

-----/
Tips: Try to solve all 3.
Duration: 60 minutes
Total Questions: 3

Round: Technical Interview
Experience: First discuss the solution and then paper-code it.
Tips: Try to code without mistakes.

Round: Technical Interview
Experience: First, I was asked to discuss my project based on networking and then I was given a question on network programming
Tips: Pay attention on discussion

Round: Technical Interview
Experience: Provide the optimised solution and code it without any mistakes.

Round: HR Interview
Experience: Why linkedin?
What changes will you make in 6 months?
Internship project: Discussion and lot of common questions on that.
Basic Questions of C++ and Java

Skills: Data Structure, Core courses understanding, Algorithms
College Name: IIT GUWHATI

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

In first round they asked me 2 coding questions where he asked me to code as close as possible to the actual one.

  • Q1. 

    Ninja and Sorted Array Merging Problem

    Ninja is tasked with merging two given sorted integer arrays ARR1 and ARR2 of sizes 'M' and 'N', respectively, such that the merged result is a single sorted array w...

  • Ans. 

    Merge two sorted arrays into one sorted array in place.

    • Use two pointers to compare elements from both arrays and place them in the correct position in ARR1.

    • Start from the end of ARR1 and compare elements from both arrays, placing the larger element at the end of ARR1.

    • Continue this process until all elements from ARR2 are merged into ARR1.

  • Answered by AI
  • Q2. 

    Word Distance Calculation

    Given a document represented as an array/list ARR of words with length N, find the smallest distance between two given words for multiple queries. The distance is defined as the ...

  • Ans. 

    Find the smallest distance between two words in a document for multiple queries.

    • Iterate through the document array to find the indices of the two words in each query.

    • Calculate the absolute difference between the indices to get the distance.

    • If a word from the query is not present in the document, return the length of the document array.

    • Repeat the process for each query and output the smallest distance for each.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Then in the second round they asked a little about tree and told me to code 2 codes.

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    The problem requires implementing a function to return the level order traversal of a binary tree.

    • Implement a function that takes the root of the binary tree as input and returns the level order traversal of the tree.

    • Use a queue data structure to perform level order traversal.

    • Process each level of the tree one by one, starting from the root node.

    • Print the node values at each level in the order they appear from left to ...

  • Answered by AI
  • Q2. 

    Combination Sum Problem Statement

    Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...

  • Ans. 

    Find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations.

    • Sort the array to ensure elements are in non-decreasing order.

    • Track the current combination and sum while backtracking.

    • Terminate recursion when the sum equals the target sum.

    • Avoid duplicates by skipping elements that have been used in previou

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALinkedIn interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Glassdoor Interview FAQs

How many rounds are there in Glassdoor interview?
Glassdoor interview process usually has 1-2 rounds. The most common rounds in the Glassdoor interview process are One-on-one Round, Aptitude Test and Resume Shortlist.
What are the top questions asked in Glassdoor interview?

Some of the top questions asked at the Glassdoor interview -

  1. What is your weakn...read more
  2. Technology questions and cod...read more
  3. I have no working experie...read more

Tell us how to improve this page.

Glassdoor Interview Process

based on 9 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
Indeed Interview Questions
4.0
 • 28 Interviews
Foundit Interview Questions
3.5
 • 26 Interviews
iimjobs.com Interview Questions
3.8
 • 2 Interviews
View all

Glassdoor Reviews and Ratings

based on 49 reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.8

Salary

3.6

Job security

3.6

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 49 Reviews and Ratings
Compare Glassdoor with

Naukri

4.0
Compare

Indeed

4.0
Compare

Foundit

3.5
Compare

Timesjobs.com

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