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
    891
  • Jobs
    228
  • Benefits
    161
  • Photos
    17
  • Posts
    27

Filter interviews by

Google Intern Interview Questions and Answers

Updated 20 Jan 2025

11 Interview questions

An Intern was asked 5mo ago
Q. How do you handle low morale?
Ans. 

Addressing low morale in the workplace requires open communication, support, and recognition.

  • Encourage open communication to understand the root cause of low morale

  • Provide support and resources to help employees overcome challenges

  • Recognize and appreciate employees' hard work and contributions

  • Organize team-building activities to boost morale and foster a positive work environment

An Intern was asked 8mo ago
Q. Explain this project.
Ans. 

The project involved developing a mobile application for tracking daily water intake.

  • Developed a user-friendly interface for inputting water consumption

  • Implemented a feature to set daily water intake goals

  • Integrated notifications to remind users to drink water throughout the day

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. There is a housing society “The wasteful society”. You collect al ... read more
View answers (8)
asked in Tech Mahindra
Q2. Which programming language are you comfortable with?
View answers (269)
asked in Accenture
Q3. A marketing strategy case: A perfume seller in Jaipur has unique ... read more
View answers (5)
asked in Deloitte
Q4. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
View answers (3)
asked in Josh Technology Group
Q5. Huffman Coding Challenge Given an array ARR of integers containin ... read more
View answers (2)
View All
An Intern was asked 9mo ago
Q. Given a set of meeting time intervals, find the maximum number of meetings that can be scheduled in a single room such that no two meetings overlap.
Ans. 

Variation of N meetings in a room

  • Consider different combinations of meetings in the room

  • Calculate the total number of possible variations

  • Take into account the order of meetings if necessary

An Intern was asked 10mo ago
Q. Given weights and values of N items, put these items in a knapsack of capacity W to get the maximum total value. You can only either put the item completely into the knapsack or not put it at all (0-1 prope...
Ans. 

The knapsack problem is a classic optimization problem that involves selecting items to maximize value without exceeding weight capacity.

  • The problem can be solved using dynamic programming.

  • Given weights and values of items, the goal is to maximize total value within a weight limit.

  • Example: If you have items with weights [1, 2, 3] and values [10, 15, 40], and a capacity of 6, the optimal selection is items 2 and 3.

  • ...

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.
An Intern was asked
Q. Tell me about your introduction.
Ans. 

A motivated intern with a background in [Your Field], eager to learn and contribute to the team while developing professional skills.

  • Currently pursuing a degree in [Your Major] at [Your University].

  • Completed an internship at [Company Name], where I assisted in [specific task or project].

  • Skilled in [specific skills or tools relevant to the position].

  • Passionate about [specific interest related to the field], demonst...

An Intern was asked
Q. Write an algorithm for Depth-First Search (DFS).
Ans. 

DFS is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

  • Start at the initial node and explore as far as possible along each branch before backtracking

  • Use a stack to keep track of nodes to visit

  • Mark visited nodes to avoid revisiting them

  • Can be implemented recursively or iteratively

An Intern was asked
Q. Write code for Breadth-First Search (BFS).
Ans. 

BFS is a graph traversal algorithm that visits all the nodes of a graph level by level.

  • Start by adding the initial node to a queue

  • While the queue is not empty, dequeue a node and visit its neighbors, adding them to the queue

  • Repeat until all nodes are visited

Are these interview questions helpful?
An Intern was asked
Q. Explain the difference between coding and programming.
Ans. 

Coding is the process of writing instructions in a specific programming language, while programming involves the entire process of designing, writing, testing, and maintaining code.

  • Coding is the act of translating a problem into a language that a computer can understand.

  • Programming involves planning, designing, implementing, and testing a solution to a problem.

  • Coding is a subset of programming, focusing on the act...

An Intern was asked
Q. What is the difference between an ordered map and an unordered map?
Ans. 

Ordered map maintains the order of insertion while unordered map does not guarantee any specific order.

  • Ordered map: elements are stored in the order they were inserted

  • Unordered map: elements are stored in an unspecified order for faster access

  • Example: std::map vs std::unordered_map in C++

An Intern was asked
Q. Given a graph, find the shortest path between two nodes using Breadth-First Search (BFS).
Ans. 

BFS finds the shortest path in an unweighted graph by exploring neighbors level by level.

  • BFS uses a queue to explore nodes layer by layer.

  • Each node is marked as visited to avoid cycles.

  • The shortest path is found by tracking predecessors.

  • Example: In a grid, BFS can find the shortest path from the top-left to the bottom-right corner.

1 2

Google Intern Interview Experiences

22 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2024

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

Leetcode question , gfg also

Round 2 - Technical 

(2 Questions)

  • Q1. Tell us about your self
  • Add your answer
  • Q2. Explain this project
  • Ans. 

    The project involved developing a mobile application for tracking daily water intake.

    • Developed a user-friendly interface for inputting water consumption

    • Implemented a feature to set daily water intake goals

    • Integrated notifications to remind users to drink water throughout the day

  • Answered by AI
    Add your answer
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

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

I applied via AngelList and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Where do you see yourself in 5 years.
  • Add your answer
  • Q2. What are your achievements.
  • Ans. 

    I have achieved academic excellence, leadership roles, and community service recognition.

    • Received academic awards for top grades in class

    • Served as president of student organization

    • Volunteered at local charity events

    • Participated in research projects

    • Completed internships at reputable companies

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 21 Nov 2024

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

(2 Questions)

  • Q1. We have a array
  • Add your answer
  • Q2. We have an array
  • Add your answer
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2024

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

(2 Questions)

  • Q1. Dp question was asked
  • Add your answer
  • Q2. Question on heap
  • Add your answer
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

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

What is 10% of 10
what is ram age if he is now 2 years

Interview Preparation Tips

Interview preparation tips for other job seekers - do homework
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2024

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

DSA, coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dp question knapk sack problem
  • Ans. 

    The knapsack problem is a classic optimization problem that involves selecting items to maximize value without exceeding weight capacity.

    • The problem can be solved using dynamic programming.

    • Given weights and values of items, the goal is to maximize total value within a weight limit.

    • Example: If you have items with weights [1, 2, 3] and values [10, 15, 40], and a capacity of 6, the optimal selection is items 2 and 3.

    • The d...

  • Answered by AI
    Add your answer
  • Q2. Graph, dfs, bfs
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

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

(1 Question)

  • Q1. How to handle low moral
  • Ans. 

    Addressing low morale in the workplace requires open communication, support, and recognition.

    • Encourage open communication to understand the root cause of low morale

    • Provide support and resources to help employees overcome challenges

    • Recognize and appreciate employees' hard work and contributions

    • Organize team-building activities to boost morale and foster a positive work environment

  • Answered by AI
    Add your answer
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 26 Oct 2023

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

I applied via Walk-in and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain difference between coding and programming?
  • Ans. 

    Coding is the process of writing instructions in a specific programming language, while programming involves the entire process of designing, writing, testing, and maintaining code.

    • Coding is the act of translating a problem into a language that a computer can understand.

    • Programming involves planning, designing, implementing, and testing a solution to a problem.

    • Coding is a subset of programming, focusing on the actual w...

  • Answered by AI
    Add your answer
  • Q2. Which is your favorite google product?
  • Add your answer
  • Q3. Write code for BFS
  • Ans. 

    BFS is a graph traversal algorithm that visits all the nodes of a graph level by level.

    • Start by adding the initial node to a queue

    • While the queue is not empty, dequeue a node and visit its neighbors, adding them to the queue

    • Repeat until all nodes are visited

  • Answered by AI
    Add your answer
  • Q4. Write algo for DFS
  • Ans. 

    DFS is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • Start at the initial node and explore as far as possible along each branch before backtracking

    • Use a stack to keep track of nodes to visit

    • Mark visited nodes to avoid revisiting them

    • Can be implemented recursively or iteratively

  • Answered by AI
    Add your answer
  • Q5. Where you find yourself in next 5 years
  • Add your answer

Skills evaluated in this interview

Anonymous

Intern Interview Questions & Answers

user image Dhruv Pankaj Patel

posted on 9 Oct 2024

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

Topics - dsa
duration - 1hr

Round 2 - HR 

(2 Questions)

  • Q1. Introduction about yourself and interests
  • Ans. 

    I am a recent graduate with a passion for marketing and social media. I enjoy hiking, photography, and trying new foods.

    • Recent graduate with a degree in Marketing

    • Passionate about social media and digital marketing

    • Hobbies include hiking, photography, and trying new foods

  • Answered by AI
    Add your answer
  • Q2. Technical question on projects
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - its easy
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 26 Feb 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
6-8 weeks
Result
-

I applied via Job Portal and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1-hour test on google online challenge

Round 2 - One-on-one 

(2 Questions)

  • Q1. Leetcode ques on hard level
  • Add your answer
  • Q2. They asked my intro
  • Ans. 

    A motivated intern with a background in [Your Field], eager to learn and contribute to the team while developing professional skills.

    • Currently pursuing a degree in [Your Major] at [Your University].

    • Completed an internship at [Company Name], where I assisted in [specific task or project].

    • Skilled in [specific skills or tools relevant to the position].

    • Passionate about [specific interest related to the field], demonstrated...

  • Answered by AI
    Add your answer
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 Intern interview?
Google interview process usually has 1-2 rounds. The most common rounds in the Google interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Google Intern 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 Advertising, Recruitment, Account Management, Ad Sales and Analytical.
What are the top questions asked in Google Intern interview?

Some of the top questions asked at the Google Intern interview -

  1. tell me about different types of grap...read more
  2. difference between ordered and unordered ...read more
  3. Explain difference between coding and programmi...read more

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

  • Internship Trainee Interview Questions
  • Software Developer Intern Interview Questions
  • HR Intern Interview Questions
  • Summer Intern Interview Questions
  • Internal Auditor Interview Questions
  • Software Engineer Intern Interview Questions
  • Digital Marketing Intern Interview Questions
  • Data Science Intern Interview Questions
  • Show more
  • Data Analyst Intern Interview Questions
  • Marketing Intern Interview Questions

Overall Interview Experience Rating

4.4/5

based on 18 interview experiences

Difficulty level

Moderate 38%
Hard 63%

Duration

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

Intern Interview Questions from Similar Companies

Microsoft Corporation
Microsoft Corporation Intern Interview Questions
3.9
 • 21 Interviews
OpenText Technologies
OpenText Technologies Intern Interview Questions
3.6
 • 14 Interviews
Oracle
Oracle Intern Interview Questions
3.7
 • 7 Interviews
KPIT Technologies
KPIT Technologies Intern Interview Questions
3.3
 • 6 Interviews
Zoho
Zoho Intern Interview Questions
4.3
 • 4 Interviews
SAP
SAP Intern Interview Questions
4.2
 • 4 Interviews
Adobe
Adobe Intern Interview Questions
3.9
 • 3 Interviews
Dassault Systemes
Dassault Systemes Intern Interview Questions
3.9
 • 2 Interviews
AVASOFT
AVASOFT Intern Interview Questions
2.9
 • 2 Interviews
EbixCash Limited
EbixCash Limited Intern Interview Questions
4.0
 • 2 Interviews
View all
Google Intern Salary
based on 21 salaries
₹7.3 L/yr - ₹11.9 L/yr
175% more than the average Intern Salary in India
View more details

Google Intern Reviews and Ratings

based on 31 reviews

4.6/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.3

Job security

4.5

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 31 Reviews and Ratings
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 >
  • Google Intern 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