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
    22.1k
  • Interviews
    892
  • Jobs
    228
  • Benefits
    161
  • Photos
    17
  • Posts
    27

Filter interviews by

Google Interview Questions and Answers

Updated 18 Jun 2025
Popular Designations

439 Interview questions

A Softwaretest Engineer was asked 6d ago
Q. Design a data structure that efficiently calculates the median of a continuously incoming stream of data.
Ans. 

Calculate the median from a continuous stream of numbers efficiently.

  • Use two heaps: a max-heap for the lower half and a min-heap for the upper half.

  • Insert numbers into the appropriate heap based on their value.

  • Balance the heaps to ensure their sizes differ by at most one.

  • The median is the root of the max-heap if it has more elements, or the average of both roots if they are equal in size.

  • Example: Stream = [1, 5, 2...

View all Softwaretest Engineer interview questions
A SWE intern was asked 2w ago
Q. Can segment trees be used to find the height of a tree? If yes, explain how.
Ans. 

Calculate the height of a tree using a segment tree data structure.

  • A segment tree is a binary tree used for storing intervals or segments.

  • Each node represents an interval and stores information about that interval.

  • To find the height, recursively calculate the height of left and right subtrees.

  • Example: For a tree with nodes 1, 2, 3, the height is 2 (root + 1 level).

  • Height can be defined as the number of edges in th...

A Data Engineer was asked 3w ago
Q. What are the different ways to sort an array?
Ans. 

Sorting an array involves arranging its elements in a specific order, typically ascending or descending.

  • Use built-in functions: Most programming languages have built-in sort functions. Example: `array.sort()` in Python.

  • Custom sorting: You can define your own sorting logic using comparison functions. Example: `sorted(array, key=len)` sorts by string length.

  • Sorting algorithms: Implement algorithms like Quick Sort or...

View all Data Engineer interview questions
A Data Engineer was asked 3w ago
Q. When is it appropriate to use joins?
Ans. 

Joins are required to combine data from multiple tables based on related columns.

  • To retrieve related data from different tables, e.g., joining 'patients' and 'appointments' tables to get patient appointment details.

  • When performing complex queries that require data from multiple sources, e.g., joining 'orders' and 'customers' to analyze sales.

  • To enforce referential integrity by linking primary keys in one table to ...

View all Data Engineer interview questions

What people are saying about Google

View All
manishshaw
Verified Icon
2w (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 Project Manager was asked 1mo ago
Q. Tell me about yourself.
Ans. 

Experienced Project Manager with a strong background in leading cross-functional teams and delivering projects on time and within budget.

  • Over 8 years of experience in project management across various industries, including IT and construction.

  • Successfully led a team of 15 in a software development project that increased client satisfaction by 30%.

  • Skilled in Agile and Waterfall methodologies, having implemented Agi...

View all Project Manager interview questions
A Software Developer was asked 1mo ago
Q. What is Dijkstra's algorithm and how does it work?
Ans. 

Dijkstra's algorithm finds the shortest path between nodes in a graph, using a priority queue for efficient pathfinding.

  • Graph Representation: Dijkstra's algorithm works on weighted graphs, where edges have non-negative weights, representing distances or costs.

  • Initialization: Start with a source node, setting its distance to zero and all other nodes to infinity, indicating they are unreachable initially.

  • Priority Qu...

View all Software Developer interview questions
A Software Developer was asked 1mo ago
Q. What is the explanation of the Least Recently Used (LRU) cache algorithm?
Ans. 

LRU cache algorithm evicts the least recently used items first to optimize memory usage and improve access speed.

  • Eviction Policy: LRU removes the least recently accessed items when the cache reaches its limit, ensuring frequently used items remain available.

  • Implementation: Typically implemented using a combination of a hash map for fast access and a doubly linked list to maintain the order of usage.

  • Example: If a c...

View all Software Developer interview questions
Are these interview questions helpful?
A Graphic Designer was asked 2mo ago
Q. What is Google and how does it function?
Ans. 

Google is a search engine that organizes information from the web to provide relevant search results to users.

  • Google uses algorithms to index and rank web pages based on relevance and quality.

  • It employs a crawler (Googlebot) to discover and update content on the internet.

  • Search results are personalized based on user behavior and location.

  • Google offers various services like Google Maps, Google Drive, and Google Pho...

View all Graphic Designer interview questions
A Data Scientist was asked 2mo ago
Q. What is a p-value?
Ans. 

A p-value measures the strength of evidence against the null hypothesis in statistical hypothesis testing.

  • A p-value ranges from 0 to 1, with lower values indicating stronger evidence against the null hypothesis.

  • Common thresholds for significance are 0.05, 0.01, and 0.001.

  • For example, a p-value of 0.03 suggests there is a 3% probability of observing the data if the null hypothesis is true.

  • A p-value does not indicat...

View all Data Scientist interview questions
A Software Enginner 2 was asked 2mo ago
Q. Given an integer array nums and an integer k, return the kth largest element in the array.
Ans. 

Find the kth largest number in an array using sorting or a min-heap approach.

  • Sort the array in descending order and return the element at index k-1. Example: [3, 1, 4, 1, 5], k=2 -> 4.

  • Use a min-heap of size k to keep track of the largest k elements. Example: [3, 1, 4, 1, 5], k=2 -> 4.

  • Consider edge cases: if k is greater than the array length, return an error or a specific value.

1 2 3 4 5 6 7

Google Interview Experiences

892 interviews found

Graphic Designer Interview Questions & Answers

user image Zahed Khan

posted on 5 Apr 2025

Interview experience
5
Excellent
Difficulty level
Easy
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. How do you gather and interpret client requirements?
  • Ans. 

    I gather client requirements through effective communication, research, and iterative feedback to ensure alignment with their vision.

    • Conduct initial meetings to discuss project goals and expectations.

    • Use questionnaires to gather detailed information about client preferences.

    • Create mood boards or visual references to align on design aesthetics.

    • Iterate on designs based on client feedback to refine the final product.

    • Utili...

  • Answered by AI
    Add your answer
  • Q2. What tools do you typically use during each phase?
  • Ans. 

    I use various tools throughout the design process, from brainstorming to final delivery, ensuring efficiency and creativity.

    • Brainstorming: I use tools like MindMeister for mind mapping ideas.

    • Wireframing: I prefer Balsamiq or Adobe XD to create low-fidelity wireframes.

    • Design: For high-fidelity designs, I typically use Adobe Illustrator and Photoshop.

    • Prototyping: Tools like InVision or Figma help me create interactive pr...

  • Answered by AI
    Add your answer
  • Q3. How do you handle client feedback and revisions?
  • Ans. 

    I embrace client feedback as a vital part of the design process, ensuring their vision is realized through collaboration and open communication.

    • Listen actively to client feedback to understand their perspective and needs.

    • Clarify any ambiguous feedback by asking follow-up questions to ensure alignment.

    • Prioritize revisions based on the client's goals and the project's objectives.

    • Provide mockups or prototypes to visualize...

  • Answered by AI
    Add your answer
  • Q4. Can you show an example where your design made a real impact?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Sure! Here's some solid advice tailored for graphic designer job seekers: 1. Build a Strong Portfolio: Your portfolio is your strongest asset. Include a variety of work (logos, posters, web/UI designs, etc.) that shows your range and creativity. Make sure it’s well-organized and easy to navigate. 2. Customize Your Resume & Cover Letter: Tailor your application to each job. Highlight relevant tools (like Adobe Suite, Figma, Canva), and focus on results (e.g., “Increased engagement by 30% with new design”). 3. Keep Learning: Stay updated with design trends, tools, and technologies. Learning motion graphics, UI/UX, or web design basics can set you apart. 4. Network: Connect with other designers and creative professionals on LinkedIn, Behance, or Dribbble. Sometimes opportunities come from people, not just job boards. 5. Practice Time Management: Clients value designers who can deliver quality work on time. Practice meeting deadlines—even in your personal projects. 6. Prepare for Interviews: Be ready to explain your design process, handle critiques, and discuss how you’ve dealt with feedback or revisions. 7. Present Professionally Online: Have a personal website or Behance/Dribbble profile that reflects your style and personality. Make it easy for people to contact you.
Anonymous

Digital Marketing Strategist Interview Questions & Answers

user image Sahana Sahana

posted on 18 Jun 2025

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

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

  • Q1. Tell. Me. about your self
  • Add your answer
  • Q2. Why. are. You. leaving. Your. Current Job
  • Add your answer
  • Q3. What. Interests. you. about. this. Job
  • Add your answer
  • Q4. How. did. You. learn about. the opening
  • Add your answer
  • Q5. Why. should we. Choose. You
  • Add your answer
  • Q6. What. are. Your. Career goals?
  • Add your answer
Anonymous

Data Entry Operator Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. I am interested for jobs Data Entry operator
  • Add your answer
  • Q2. How is possible google for my jobs I am very happy Thanksgiving
  • Add your answer
  • Q3. I needed for this job
  • Add your answer
Round 2 - Nothing 

(2 Questions)

  • Q1. 8 years Experience working from Data Entry operator
  • Add your answer
  • Q2. BNMU Madhepura District
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I am handle for this job very good improvement
Anonymous

Software Engineer Interview Questions & Answers

user image Sahana Sahana

posted on 13 Mar 2025

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

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

  • Q1. Tell. Me. about your. Self
  • Add your answer
  • Q2. Why. should. We. choose. You
  • Add your answer
  • Q3. Hello. I'm..sahana.and.idone.an.mba.With.a.speialization.in.HR.and.makeing.as.well.as.aB.Com.inE.commeres.i'm.done.through.my.inthern.ship.atBestEngineerspump.in.Coimbatore I'm. Passionate about. blending....
  • Add your answer
  • Q4. You. Should. hire. me because. I bring. a. unique. blend. Of. Skills. in. H.R.and.marketing.supported.by.me.academic.background.and.practial.. experience. managing. projects and. understanding. team. dynam...
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Speaking slowly and clearly can help appecer relaked and confident
Anonymous

Human Resource and Administration Executive Interview Questions & Answers

user image Sahana Sahana

posted on 18 Jan 2025

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

I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - HR 

(6 Questions)

  • Q1. What. about . this. Company
  • Add your answer
  • Q2. Sir. It. a. fast. grouting. Company. and. will.. learn. More.. new. technology. . In.. future
  • Add your answer
  • Q3. So. In. my. Point. Of. View. definitely. Your.. Company.will.. be. One. Of. the.. leading. Companies. In. Your country
  • Add your answer
  • Q4. It. is. fast. growing. company. and.. I Will. learn. more. new.. Works. In. future. I. know. It. good. facility
  • Add your answer
  • Q5. It. Is. a. best platform. to. Start. my. Career. as. a. fresher. and. it's. helpful. In. any. Professional. growth
  • Add your answer
  • Q6. This. Is. my career. sterling. time. I. think. your company. Is. a good. platform. fur. me. to. Improve. myself
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. What. about. this. Company
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. What. about. this. Company
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Candidates can. learn. More. about. the. Company. Culture values
Anonymous

Quality Analyst Interview Questions & Answers

user image Anonymous

posted on 25 Jan 2025

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

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

Data Analysis and Automation Testing.

Round 2 - Group Discussion 

Team work and communication

Round 3 - One-on-one 

(3 Questions)

  • Q1. Work culture and promotion!!?
  • Add your answer
  • Q2. Better Income and study!?
  • Ans. 

    Balancing income and study is possible with proper time management and prioritization.

    • Prioritize tasks based on importance and deadlines

    • Create a study schedule that fits around work hours

    • Utilize breaks at work to study or review material

    • Consider part-time study options or online courses

    • Seek financial aid or scholarships to alleviate financial burden

  • Answered by AI
    Add your answer
  • Q3. Work freedom!??
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Face to face communication?
  • Add your answer
  • Q2. Discussion?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Always you keep attention to the job seekers
Anonymous

growth manager Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is the social networking
  • Ans. 

    Social networking refers to the use of internet-based platforms to connect with others, share information, and build relationships.

    • Social networking sites allow users to create profiles, connect with friends, and share updates and photos.

    • Popular social networking platforms include Facebook, Twitter, Instagram, and LinkedIn.

    • Social networking can be used for personal connections, professional networking, and marketing pu...

  • Answered by AI
    Add your answer
  • Q2. How many people added in google
  • Ans. 

    The number of people added in Google is constantly changing due to hiring, acquisitions, and other factors.

    • Google adds thousands of employees each year through hiring and acquisitions.

    • As of 2021, Google has over 140,000 employees worldwide.

    • The exact number of people added in Google can vary depending on the time frame and specific context of the question.

  • Answered by AI
    Add your answer
  • Q3. What is the charts accountant
  • Ans. 

    A charts accountant is a professional who specializes in creating and analyzing financial charts and graphs to help businesses make informed decisions.

    • Charts accountants use data visualization techniques to present financial information in a clear and concise manner.

    • They often work with software programs like Microsoft Excel or Tableau to create charts and graphs.

    • Charts accountants help businesses track key performance...

  • Answered by AI
    Add your answer
  • Q4. What is a gaming review
  • Ans. 

    A gaming review is an evaluation of a video game, assessing its gameplay, graphics, sound, and overall quality.

    • Gaming reviews provide insights into the strengths and weaknesses of a game.

    • They often include ratings or scores to summarize the reviewer's opinion.

    • Reviews may also discuss the game's story, mechanics, replay value, and technical performance.

    • Examples of popular gaming review websites include IGN, GameSpot, an...

  • Answered by AI
    Add your answer
  • Q5. How many salary in google
  • Add your answer
Round 2 - Coding Test 

Very hardworking studying in coding

Interview Preparation Tips

Topics to prepare for Google growth manager interview:
  • Accounting
  • Game Testing
Interview preparation tips for other job seekers - Jobs is nothing but life is something
Anonymous

Web Development Intern Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - One-on-one 

(4 Questions)

  • Q1. Can you describe a challenging project you worked on and how you handled it?
  • Ans. 

    I worked on developing a website for a local non-profit organization.

    • Collaborated with the organization to understand their needs and goals

    • Designed a user-friendly interface with donation functionality

    • Implemented responsive design for mobile compatibility

    • Tested the website for bugs and usability issues

    • Provided training to the organization's staff on how to update content

  • Answered by AI
    Add your answer
  • Q2. How do you prioritize tasks when you have multiple deadlines to meet?
  • Ans. 

    I prioritize tasks by assessing deadlines, importance, and dependencies.

    • Assess all deadlines and prioritize based on urgency

    • Consider the importance and impact of each task

    • Identify any dependencies between tasks and plan accordingly

    • Break down larger tasks into smaller, manageable sub-tasks

    • Use tools like to-do lists or project management software to stay organized

  • Answered by AI
    Add your answer
  • Q3. Tell me about a time when you had to learn a new skill quickly to complete a project. How did you approach it?
  • Add your answer
  • Q4. Describe a situation where you received constructive criticism. How did you respond and what changes did you make?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - "Thank you for the opportunity! I'm happy to share interview questions to help job seekers. I believe this is a great way to support them."
Anonymous

Software Development Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Can you describe a challenging project you worked on and how you handled it?
  • Add your answer
  • Q2. How do you prioritize tasks when you have multiple deadlines to meet?
  • Ans. 

    Prioritize tasks based on deadlines, importance, and impact on overall project goals.

    • Evaluate deadlines and prioritize tasks based on urgency

    • Consider the importance of each task in relation to project goals

    • Assess the impact of completing each task on overall project progress

    • Communicate with stakeholders to understand priorities and expectations

    • Break down tasks into smaller sub-tasks to manage workload effectively

  • Answered by AI
    Add your answer
  • Q3. Describe a situation where you had to collaborate with a difficult team member. How did you approach the situation?
  • Add your answer
  • Q4. What strategies do you use to ensure the quality of your work?
  • Add your answer
  • Q5. How do you handle feedback or criticism from peers or supervisors?
  • Ans. 

    I handle feedback by actively listening, reflecting on the criticism, and using it to improve my work.

    • I actively listen to the feedback without getting defensive

    • I reflect on the criticism to understand the underlying issues

    • I use the feedback to improve my work and skills

    • I seek clarification if needed to fully understand the feedback

    • I appreciate constructive criticism as an opportunity for growth

  • Answered by AI
    Add your answer
  • Q6. Can you describe a time when you had to adapt to a significant change at work? How did you handle it?
  • Ans. 

    Adapting to significant changes at work requires flexibility, communication, and a proactive approach to problem-solving.

    • Embraced Change: When our team shifted to remote work due to the pandemic, I quickly adapted by setting up a home office and establishing a routine.

    • Enhanced Communication: I initiated daily stand-up meetings via video calls to maintain team cohesion and ensure everyone was aligned on tasks.

    • Learned Ne...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - "Thank you for the opportunity! I'm happy to share interview questions to help job seekers. I believe this is a great way to support them."
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

I applied via AmbitionBox and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test for selection.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your understanding of data analytics?
  • Ans. 

    Data analytics involves analyzing raw data to draw conclusions and make informed decisions.

    • Data analytics involves collecting, processing, and analyzing data to identify trends and patterns.

    • It helps businesses make data-driven decisions and improve performance.

    • Techniques used in data analytics include data mining, machine learning, and statistical analysis.

    • Examples of data analytics in action include predicting custome...

  • Answered by AI
    Add your answer
  • Q2. What is the significance of data analytics in analyzing and visualizing data?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Always guide to the right place and make informed decisions based on good data analysis.
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 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 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 Recruitment, Python, Project Management, Computer science and C++.
What are the top questions asked in Google interview?

Some of the top questions asked at the Google interview -

  1. There are three rooms, and there are Princess, Flowers and Snake in those rooms...read more
  2. Image data structure: An image(square image) can be stored as a tree: A node is...read more
  3. If your Wi-Fi router is not working then what you will do to fix ...read more
What are the most common questions asked in Google HR round?

The most common HR questions asked in Google interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your salary expectatio...read more
  3. Why should we hire y...read more
How long is the Google interview process?

The duration of Google 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 Softwaretest Engineer Interview Questions
  • Google Data Analyst Interview Questions
  • Show more
  • Google Software Development Engineer Interview Questions
  • Google Summer Intern Interview Questions

Interview Questions for Popular Designations

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

Overall Interview Experience Rating

4.3/5

based on 936 interview experiences

Difficulty level

Easy 21%
Moderate 52%
Hard 28%

Duration

Less than 2 weeks 58%
2-4 weeks 24%
4-6 weeks 8%
6-8 weeks 4%
More than 8 weeks 6%
View more

Explore Interview Questions and Answers for Top Skills at Google

Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions
C++ Interview Questions & Answers
150 Questions

Interview Questions from Similar Companies

Oracle
Oracle Interview Questions
3.7
 • 892 Interviews
Microsoft Corporation
Microsoft Corporation Interview Questions
3.9
 • 574 Interviews
Zoho
Zoho Interview Questions
4.3
 • 533 Interviews
Amdocs
Amdocs Interview Questions
3.7
 • 529 Interviews
KPIT Technologies
KPIT Technologies Interview Questions
3.3
 • 304 Interviews
SAP
SAP Interview Questions
4.2
 • 291 Interviews
Automatic Data Processing (ADP)
Automatic Data Processing (ADP) Interview Questions
4.0
 • 257 Interviews
Adobe
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce
Salesforce Interview Questions
4.0
 • 233 Interviews
Chetu
Chetu Interview Questions
3.3
 • 194 Interviews
View all

Google Reviews and Ratings

based on 1.7k reviews

4.4/5

Rating in categories

4.3

Skill development

4.4

Work-life balance

4.4

Salary

4.1

Job security

4.4

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 1.7k Reviews and Ratings
Jobs at Google
Google
Strategy and Operations Lead, gTech Strategy and Operations

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

Google
Financial Analyst, Financial Planning and Analysis, Google Cloud

Bangalore / Bengaluru

1-4 Yrs

Not Disclosed

Google
Conversational AI Manager, Google Cloud

Gurgaon / Gurugram

2-5 Yrs

Not Disclosed

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

₹34.2 L/yr - ₹83 L/yr

Software Developer
2k salaries
unlock blur

₹35.7 L/yr - ₹71.1 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹20.7 L/yr - ₹82.2 L/yr

Data Analyst
361 salaries
unlock blur

₹15.7 L/yr - ₹35 L/yr

Sde1
357 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
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