AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Google

Compare button icon Compare button icon Compare
4.4

based on 1.7k Reviews

Play video Play video Video summary
  • About
  • Reviews
    1.7k
  • Salaries
    21.6k
  • Interviews
    888
  • Jobs
    64
  • Benefits
    160
  • Photos
    17
  • Posts
    27

Filter interviews by

Google Senior Software Engineer Interview Questions and Answers

Updated 8 Apr 2025

19 Interview questions

A Senior Software Engineer was asked 2mo ago
Q. Highlight your relevant skills and experiences.
Ans. 

Experienced Senior Software Engineer with a strong background in full-stack development and team leadership.

  • Proficient in multiple programming languages including Java, Python, and JavaScript, demonstrated through developing scalable web applications.

  • Led a team of 5 engineers in a project that improved system performance by 30%, showcasing my leadership and project management skills.

  • Implemented CI/CD pipelines usi...

A Senior Software Engineer was asked 7mo ago
Q. Design an IP blocking system.
Ans. 

Design an IP blocking system to prevent unauthorized access to a network.

  • 1. Maintain a list of blacklisted IP addresses.

  • 2. Implement a firewall to block incoming traffic from blacklisted IPs.

  • 3. Regularly update the blacklist based on security threats.

  • 4. Consider implementing rate limiting to prevent brute force attacks.

  • 5. Monitor and log blocked IP addresses for analysis.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
View answers (3)
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
View answers (2)
asked in Persistent Systems
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
View answers (2)
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
View answer (1)
asked in Q3 Technologies
Q5. If you have to prioritize between coding standards and project de ... read more
View answers (2)
View All
A Senior Software Engineer was asked 8mo ago
Q. How would you design a system to efficiently retrieve the minimum value from a continuous stream of data, focusing on query performance?
Ans. 

Efficiently retrieve the minimum value from a stream of numbers using a query-based approach.

  • Use a priority queue (min-heap) to keep track of the minimum values as they come in.

  • For each new number, compare it with the current minimum and update if necessary.

  • Example: Stream = [5, 3, 8, 1]; Min = 1 after processing all.

  • Consider edge cases like empty streams or negative numbers.

A Senior Software Engineer was asked 8mo ago
Q. Given arrival and departure times of trains, find the minimum number of platforms required for the railway station.
Ans. 

Calculate the minimum number of train platforms required based on given arrival and departure times.

  • Sort the arrival and departure times.

  • Use two pointers to traverse the sorted lists.

  • Count the number of trains at the station at any time.

  • Update the maximum count of platforms needed.

  • Example: For arrivals [10:00, 10:15, 10:30] and departures [10:10, 10:20, 10:40], 2 platforms are needed.

What people are saying about Google

View All
manishshaw
Verified Icon
6d (edited)
works at
Vyaasa
7 Ways AI Can Help You at Work
AI is changing how we work now, not in some far-off future. Here's how it's showing up in everyday office stuff: 1. Gmail Email Drafting with Gemini: If you're on Google Workspace, Gemini can draft, edit, and summarize emails & docs right in Gmail and Docs. 2. Smarter Slack: Slack's AI (Slack AI) lets you: * Summarize unread messages * Search for answers across your workspace * Get daily digests of what you missed 3. Excel/Sheets Made Easy: Excel Copilot or Google Sheets’ AI can analyze data using simple questions. Ask "what's the sales trend from last quarter?" and get visual answers. 4. Quickly Find Internal Docs: Notion AI or Google Drive’s improved search helps you find stuff like "that pitch deck from February" without needing the exact file name. 5. Automate Tasks: Use Zapier or Make.com for AI workflows: e.g., new form entry → auto-send Slack update → update CRM. How are you using AI at work?
Got a question about Google?
Ask anonymously on communities.
A Senior Software Engineer was asked 10mo ago
Q. Given a binary tree, create a new binary tree that is a mirror image of the original tree.
Ans. 

Clone a tree by creating a mirror image of it

  • Traverse the original tree in a post-order manner

  • Create a new node for each visited node and assign its value

  • Recursively set the left child of the new node as the mirrored right child of the original node

  • Recursively set the right child of the new node as the mirrored left child of the original node

A Senior Software Engineer was asked 10mo ago
Q. DP Problem with 2d
Ans. 

Dynamic programming problem involving a 2D array

  • Break down the problem into subproblems and store the results in a 2D array

  • Consider using top-down or bottom-up approach depending on the problem

  • Examples: Longest Common Subsequence, Minimum Path Sum

A Senior Software Engineer was asked 11mo ago
Q. Describe how you would design an ID generator service.
Ans. 

Design a scalable ID generator service for unique identification of entities.

  • Use a combination of timestamp, unique machine identifier, and sequence number to generate IDs.

  • Implement a distributed system to ensure uniqueness of generated IDs.

  • Consider using a centralized service for ID generation to avoid conflicts.

  • Use a high-performance database for storing generated IDs.

  • Implement error handling and retry mechanism...

Are these interview questions helpful?
A Senior Software Engineer was asked 12mo ago
Q. Design an object store like Amazon S3.
Ans. 

Design an object storage system similar to Amazon S3, focusing on scalability, durability, and accessibility.

  • Use a distributed architecture to ensure high availability and fault tolerance.

  • Implement a RESTful API for easy integration and access, e.g., using HTTP methods like GET, PUT, DELETE.

  • Utilize object versioning to manage changes and maintain data integrity.

  • Incorporate security features like encryption at rest...

A Senior Software Engineer was asked
Q. What do you do when your WiFi is not connecting to another device and you do not have the password?
Ans. 

Try to troubleshoot the wifi connection issue by checking settings, restarting devices, and seeking help from IT support.

  • Check if the wifi is turned on and the correct network is selected

  • Restart the wifi router and the device

  • Contact IT support for assistance in retrieving the password

A Senior Software Engineer was asked
Q. Given an array of numbers, find the maximum value you can obtain by jumping to any number. The value is calculated as the jump length multiplied by the value of the destination location.
Ans. 

Iterate through array, calculate value at each index, keep track of maximum value

  • Iterate through the array and calculate the value at each index by multiplying jump length with value of location

  • Keep track of the maximum value encountered during the iteration

  • Return the maximum value found

1 2

Google Senior Software Engineer Interview Experiences

19 interviews found

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Tell. me. about your self
  • Add your answer
  • Q2. Whh. Should we choose you
  • Ans. 

    I bring a unique blend of technical expertise, problem-solving skills, and a collaborative mindset to drive impactful software solutions.

    • Proven track record of delivering high-quality software on time, such as leading a team to develop a scalable e-commerce platform.

    • Strong proficiency in multiple programming languages, including Python and Java, demonstrated by building a microservices architecture.

    • Experience in mentor...

  • Answered by AI
    Add your answer
  • Q3. Application. high. light. your. relevant. skills. and. experiences
  • Ans. 

    Experienced Senior Software Engineer with a strong background in full-stack development and team leadership.

    • Proficient in multiple programming languages including Java, Python, and JavaScript, demonstrated through developing scalable web applications.

    • Led a team of 5 engineers in a project that improved system performance by 30%, showcasing my leadership and project management skills.

    • Implemented CI/CD pipelines using Je...

  • Answered by AI
    Add your answer
  • Q4. What. are. Your. strengths. Can. you. work. under. Pressure
  • Ans. 

    I excel in problem-solving, collaboration, and adaptability, thriving under pressure to deliver high-quality software solutions.

    • Strong problem-solving skills: For instance, I resolved a critical bug in a production system under tight deadlines, ensuring minimal downtime.

    • Effective collaboration: I led a team project where we had to deliver a feature in two weeks, and we successfully met the deadline through teamwork.

    • Ada...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Speaking slowly and clearly can help you appreciate related and confident
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Get minimum from stream. Query based.
  • Ans. 

    Efficiently retrieve the minimum value from a stream of numbers using a query-based approach.

    • Use a priority queue (min-heap) to keep track of the minimum values as they come in.

    • For each new number, compare it with the current minimum and update if necessary.

    • Example: Stream = [5, 3, 8, 1]; Min = 1 after processing all.

    • Consider edge cases like empty streams or negative numbers.

  • Answered by AI
    Add your answer
  • Q2. Minimum number of platforms for trains. Arrival n departure time is given.
  • Ans. 

    Calculate the minimum number of train platforms required based on given arrival and departure times.

    • Sort the arrival and departure times.

    • Use two pointers to traverse the sorted lists.

    • Count the number of trains at the station at any time.

    • Update the maximum count of platforms needed.

    • Example: For arrivals [10:00, 10:15, 10:30] and departures [10:10, 10:20, 10:40], 2 platforms are needed.

  • Answered by AI
    Add your answer
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

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

I appeared for an interview in Nov 2024.

Round 1 - Coding Test 

DSA question.
You are given a N*N matrix with 0s and 1s. Find the longest contiguous line of 1s in any direction (vertical, horizontal, diagonal or anti-diagonal)

Round 2 - Aptitude Test 

Frontend question. Was shown a screenshot of google meet and asked to code html css for it.
Follow up questions were around improving accessibility and responsiveness.

Interview Preparation Tips

Interview preparation tips for other job seekers - For DSA, I messed up by coding the brute force solution initially. Instead you should verbally discuss brute force, explain time/space complexity and then suggest an optimised approach, and code that out first.

Try to tackle atleast one follow up. You won't get a hire call without that.
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Aug 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Coding test on leetcode. easy/medium problem.

Round 2 - Coding Test 

Coding test on google docs. Question : Find the number of Lakes given a graph representation

Round 3 - Coding Test 

Design optimal query data structure that can query on key's and timestamp. Follow up : how can we implement more time series relavant feature, like searching in ranges of timestamps

Round 4 - Behavioral interview 

(2 Questions)

  • Q1. Work experience in previous companies
  • Ans. 

    I have 5 years of work experience in previous companies, primarily in developing web applications using Java and JavaScript.

    • Developed web applications using Java and JavaScript

    • Worked on database management and optimization

    • Collaborated with cross-functional teams for project delivery

  • Answered by AI
    Add your answer
  • Q2. Time when there was a conflict with leadership
  • Ans. 

    I disagreed with leadership on project priorities, but we reached a compromise through open communication.

    • Clearly communicate concerns and reasons for disagreement

    • Listen to leadership's perspective and try to understand their reasoning

    • Work together to find a compromise that aligns with both parties' goals

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Google Senior Software Engineer interview:
  • Data Structures
  • Algorithms
  • Machine coding
Interview preparation tips for other job seekers - Practice leet code, Blind 75 question list.

Be prapered for the behaviourial / googliness round.
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Data structures, Algorithms

Round 2 - Coding Test 

Data Structures, Algorithms

Round 3 - Technical 

(1 Question)

  • Q1. Design a IP blocking system
  • Ans. 

    Design an IP blocking system to prevent unauthorized access to a network.

    • 1. Maintain a list of blacklisted IP addresses.

    • 2. Implement a firewall to block incoming traffic from blacklisted IPs.

    • 3. Regularly update the blacklist based on security threats.

    • 4. Consider implementing rate limiting to prevent brute force attacks.

    • 5. Monitor and log blocked IP addresses for analysis.

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jun 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design object store like amazon s3
  • Ans. 

    Design an object storage system similar to Amazon S3, focusing on scalability, durability, and accessibility.

    • Use a distributed architecture to ensure high availability and fault tolerance.

    • Implement a RESTful API for easy integration and access, e.g., using HTTP methods like GET, PUT, DELETE.

    • Utilize object versioning to manage changes and maintain data integrity.

    • Incorporate security features like encryption at rest and ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Look at Grokking System Design Advance
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Rajesh Kumbhar

posted on 28 Jul 2024

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

(2 Questions)

  • Q1. Clone the tree as mirror image
  • Ans. 

    Clone a tree by creating a mirror image of it

    • Traverse the original tree in a post-order manner

    • Create a new node for each visited node and assign its value

    • Recursively set the left child of the new node as the mirrored right child of the original node

    • Recursively set the right child of the new node as the mirrored left child of the original node

  • Answered by AI
    Add your answer
  • Q2. DP Problem with 2d
  • Ans. 

    Dynamic programming problem involving a 2D array

    • Break down the problem into subproblems and store the results in a 2D array

    • Consider using top-down or bottom-up approach depending on the problem

    • Examples: Longest Common Subsequence, Minimum Path Sum

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2024

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

Live coding test similar to leet code

Round 2 - Technical 

(2 Questions)

  • Q1. My previous experiece
  • Add your answer
  • Q2. My currrent experience
  • Add your answer
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Jan 2025

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

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding on the sudoko probelm

Round 2 - Technical 

(1 Question)

  • Q1. Technical interview was on the connected graphs
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetCode programs
Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test with 2 questions

Round 2 - Technical 

(1 Question)

  • Q1. System Design with LLD implementation
  • Ans. 

    System design involves creating a high-level design of a software system, followed by implementing the detailed low-level design.

    • Start by understanding the requirements and constraints of the system

    • Create a high-level design that outlines the components and interactions of the system

    • Implement the detailed low-level design, considering factors like scalability, performance, and maintainability

    • Use tools like UML diagrams...

  • Answered by AI
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. System Design with HLD
  • Ans. 

    System Design with HLD involves designing the high-level architecture of a software system.

    • Understand the requirements and constraints of the system

    • Identify the components and their interactions

    • Consider scalability, reliability, and performance

    • Use design patterns and best practices

    • Create diagrams like UML or flowcharts to visualize the design

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous
More about working at Google
golden leaf award AmbitionBox awards

#2 Top Rated Large Company - 2024

golden leaf award
golden leaf award AmbitionBox awards

#1 Top Rated Internet/Product Company - 2024

golden leaf award
  • HQ - Mountain View,California, United States
  • Software Product
  • 10k-50k Employees (India)
  • Analytics & KPO

Google Interview FAQs

How many rounds are there in Google Senior Software Engineer interview?
Google interview process usually has 2-3 rounds. The most common rounds in the Google interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for Google Senior Software Engineer 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 Google. The most common topics and skills that interviewers at Google expect are Software Design, Clinical SAS Programming, Software Testing, Architecture and Data Structures and Algorithms.
What are the top questions asked in Google Senior Software Engineer interview?

Some of the top questions asked at the Google Senior Software Engineer interview -

  1. Find the maximum value given an array with numbers and you can jump to any numb...read more
  2. What you do when your wifi is not connected with other device and you didn't ge...read more
  3. Use robot to move boxes in sorted order according to box id. Box id is in range...read more
How long is the Google Senior Software Engineer interview process?

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

Tell us how to improve this page.

Google Interviews By Designations

  • Google Software Engineer Interview Questions
  • Google Software Developer Interview Questions
  • Google Intern Interview Questions
  • Google Senior Software Engineer Interview Questions
  • Google SDE Interview Questions
  • Google Software Developer Intern Interview Questions
  • Google Data Analyst Interview Questions
  • Google Softwaretest Engineer Interview Questions
  • Show more
  • Google Software Development Engineer Interview Questions
  • Google Summer Intern Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Softwaretest Engineer Interview Questions
  • Software Engineer Trainee Interview Questions
  • Software Developer Intern Interview Questions
  • Software Development Engineer Interview Questions
  • Software Developer Interview Questions
  • Junior Software Developer Interview Questions
  • Show more
  • Junior Software Engineer Interview Questions
  • Full Stack Software Developer Interview Questions

Overall Interview Experience Rating

4.5/5

based on 23 interview experiences

Difficulty level

Easy 6%
Moderate 69%
Hard 25%

Duration

Less than 2 weeks 50%
2-4 weeks 25%
4-6 weeks 13%
6-8 weeks 6%
More than 8 weeks 6%
View more

Senior Software Engineer Interview Questions from Similar Companies

Oracle
Oracle Senior Software Engineer Interview Questions
3.7
 • 33 Interviews
Microsoft Corporation
Microsoft Corporation Senior Software Engineer Interview Questions
4.0
 • 28 Interviews
KPIT Technologies
KPIT Technologies Senior Software Engineer Interview Questions
3.3
 • 26 Interviews
UKG
UKG Senior Software Engineer Interview Questions
3.1
 • 21 Interviews
R Systems International
R Systems International Senior Software Engineer Interview Questions
3.3
 • 18 Interviews
OpenText Technologies
OpenText Technologies Senior Software Engineer Interview Questions
3.6
 • 17 Interviews
Amadeus
Amadeus Senior Software Engineer Interview Questions
3.8
 • 15 Interviews
Amdocs
Amdocs Senior Software Engineer Interview Questions
3.7
 • 9 Interviews
ServiceNow
ServiceNow Senior Software Engineer Interview Questions
4.1
 • 9 Interviews
Atlassian
Atlassian Senior Software Engineer Interview Questions
3.4
 • 9 Interviews
View all
Google Senior Software Engineer Salary
based on 1.1k salaries
₹20.9 L/yr - ₹80 L/yr
211% more than the average Senior Software Engineer Salary in India
View more details

Google Senior Software Engineer Reviews and Ratings

based on 18 reviews

4.3/5

Rating in categories

4.2

Skill development

4.4

Work-life balance

4.2

Salary

4.3

Job security

4.7

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 18 Reviews and Ratings
Senior Software Engineer Jobs at Google
Google
Senior Software Engineer, Android

Bangalore / Bengaluru

2-5 Yrs

₹ 11-110 LPA

Google
Senior Software Engineer, Core

Bangalore / Bengaluru

2-5 Yrs

₹ 11-110 LPA

Google
Senior Software Engineer, Full Stack, Google Cloud

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Explore more jobs
Google Salaries in India
Software Engineer
2.3k salaries
unlock blur

₹34.2 L/yr - ₹83 L/yr

Software Developer
2k salaries
unlock blur

₹35 L/yr - ₹70.1 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹20.9 L/yr - ₹80 L/yr

Data Scientist
355 salaries
unlock blur

₹31.3 L/yr - ₹60 L/yr

Sde1
354 salaries
unlock blur

₹16 L/yr - ₹64 L/yr

Explore more salaries
Compare Google with
Yahoo

Yahoo

4.6
Compare
Amazon

Amazon

4.0
Compare
Facebook

Facebook

4.3
Compare
Microsoft Corporation

Microsoft Corporation

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Google Interview Questions >
  • Google Senior Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter