Upload Button Icon Add office photos

Google

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Google Software Engineer Intern Trainee Interview Questions and Answers

Updated 2 Dec 2024

Google Software Engineer Intern Trainee Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Coding Test 

Data Structures and Algorithm Questions

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Phone Interview 

(1 Question)

  • Q1. Basic projects information
Round 2 - Technical 

(1 Question)

  • Q1. Maximum subarray variation
  • Ans. 

    Find the maximum variation in a subarray of integers.

    • Iterate through the array and keep track of the maximum and minimum values seen so far.

    • Calculate the variation by subtracting the minimum value from the maximum value.

    • Return the maximum variation found in any subarray.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is the key

Skills evaluated in this interview

Software Engineer Intern Trainee Interview Questions Asked at Other Companies

asked in UST
Q1. find average salary of employees from given table for each design ... read more
Q2. If you prepare OOPS,Data Structures it would be better to crack b ... read more
asked in Nokia
Q3. What language you prefer? OOPS in your preferred langauage.
Q4. How often do you find yourself refactoring your code?
Q5. Given a binary tree, return false if there exists any node such t ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It was easy as compared to traditional questions

Round 2 - HR 

(1 Question)

  • Q1. Asked salary for my experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Find median in data stream
  • Ans. 

    Use two heaps to maintain the median in a data stream

    • Use a max heap to store the smaller half of the numbers and a min heap to store the larger half

    • Keep the size of the two heaps balanced or differ by at most 1 to find the median efficiently

    • If the total number of elements is odd, the median is the top element of the max heap. If even, average the tops of both heaps

  • Answered by AI

Skills evaluated in this interview

Google interview questions for designations

 Software Engineer Intern

 (3)

 Software Engineer Trainee

 (2)

 Software Development Engineer Intern

 (6)

 Software Developer Intern

 (15)

 Associate Software Engineering Intern

 (1)

 Intern

 (22)

 Software Engineer

 (96)

 Trainee

 (2)

Interview questions from similar companies

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

2 coding questions on codility platform, level of questions was easy to medium

Round 2 - Technical 

(2 Questions)

  • Q1. Fundamentals of computer science
  • Ans. 

    Fundamentals of computer science cover basic concepts and principles in computing.

    • Includes topics like algorithms, data structures, programming languages, and computer architecture.

    • Understanding of computational complexity, software engineering principles, and computer networking is essential.

    • Knowledge of operating systems, databases, and cybersecurity is also important.

    • Examples: Sorting algorithms like bubble sort, da...

  • Answered by AI
  • Q2. Coding questions medium level
Round 3 - HR 

(1 Question)

  • Q1. General questions about projects and all that stuff
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions asked on codility platform. One was about backtracking, and another about 1D DP.

Round 2 - Technical 

(2 Questions)

  • Q1. Given a binary tree, return false if there exists any node such that it has two children and left node has value greater than right, else return true.
  • Ans. 

    Check if any node in binary tree violates left node value less than right node value rule.

    • Traverse the binary tree using depth-first search (DFS) or breadth-first search (BFS) and check each node for the given condition.

    • If a node has two children and the left child's value is greater than the right child's value, return false.

    • If no such node is found, return true.

    • Example: For a binary tree with nodes 5, 3, 7, 2, 4, 6, ...

  • Answered by AI
  • Q2. Remove duplicate characters from a string efficiently.
  • Ans. 

    Use a hash set to efficiently remove duplicate characters from a string.

    • Create a hash set to store unique characters.

    • Iterate through the string and add each character to the hash set.

    • If a character is already in the hash set, skip it.

    • Convert the hash set back to a string to get the result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do leetcode medium for interviews, medium + hard for OA round.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Feb 2024.

Round 1 - Coding Test 

2 Questions of Leetcode medium difficulty

Round 2 - Technical 

(2 Questions)

  • Q1. DSA LIS Problem
  • Q2. DSA LCS Problem

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa well.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. How did you hear about this position?
  • Q2. Tell me about a time you have an issue with your teammate and how did you resolve it
  • Q3. Walk me through your projects
  • Q4. How do we measure code quality?
  • Ans. 

    Code quality can be measured through various metrics and tools to ensure readability, maintainability, efficiency, and reliability.

    • Use code review processes to assess adherence to coding standards and best practices

    • Utilize static code analysis tools to identify potential bugs, code smells, and security vulnerabilities

    • Measure code complexity using metrics like cyclomatic complexity and maintainability index

    • Track code co...

  • Answered by AI
Round 2 - Coding Test 

2.5 hours of hackerrank test

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise data structures and algorithms and also behavioral questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

A standardized assessment that measures a person's skills, cognitive abilities, and potential to perform in a specific role.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview questions at Automatic Data Processing (ADP) may cover topics such as programming, databases, and software development.
  • Q2. They may also ask about problem-solving and how you approach challenging tasks.
  • Q3. Emphasize a structured method that involves clearly defining the issue, gathering relevant information, brainstorming potential solutions, evaluating options carefully, implementing the chosen solution, an...
  • Q4. Data structures, algorithms, SQL querying, object-oriented programming principles, software development lifecycle, database concepts (relational vs. NoSQL), coding challenges in relevant languages (like Py...
Round 3 - HR 

(2 Questions)

  • Q1. May ask about your background, skills, and how you handle challenges
  • Q2. Background questions Tell me about yourself, What are your career goals, What are your strengths and weaknesses, What do you know about ADP, and Why do you want to work at ADP.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tailoring your resume and cover letter to each role, thoroughly researching companies and potential interview questions, actively networking, attending career fairs, practicing your interview skills, following up after interviews, and maintaining a strong online presence on platforms like LinkedIn.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Arrays and strings - 90 mins

Round 2 - Coding Test 

Create Modules, railway reservation system - 60 mins

Round 3 - Technical 

(5 Questions)

  • Q1. Difference between hashmap and hasptable
  • Q2. Why typescript over javascript
  • Q3. Find the percentage of increace in the quantity of item after making it price 20% extra
  • Q4. What is normalization
  • Q5. Date and time api available

Google Interview FAQs

How many rounds are there in Google Software Engineer Intern Trainee interview?
Google interview process usually has 1-2 rounds. The most common rounds in the Google interview process are Technical, Aptitude Test and HR.
What are the top questions asked in Google Software Engineer Intern Trainee interview?

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

  1. maximum subarray variat...read more
  2. Find median in data str...read more
  3. basic projects informat...read more

Tell us how to improve this page.

Google Software Engineer Intern Trainee Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 904 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
View all

Google Software Engineer Intern Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
1.7k salaries
unlock blur

₹19 L/yr - ₹77.5 L/yr

Software Developer
1.1k salaries
unlock blur

₹20.1 L/yr - ₹60 L/yr

Senior Software Engineer
666 salaries
unlock blur

₹24 L/yr - ₹85.4 L/yr

Data Scientist
274 salaries
unlock blur

₹12 L/yr - ₹50 L/yr

Sde1
257 salaries
unlock blur

₹14 L/yr - ₹55 L/yr

Explore more salaries
Compare Google with

Yahoo

4.6
Compare

Amazon

4.1
Compare

Facebook

4.3
Compare

Microsoft Corporation

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