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 Trainee Interview Questions and Answers for Experienced

Updated 31 May 2024

Google Trainee Interview Experiences for Experienced

1 interview found

Trainee Interview Questions & Answers

user image Vivek Rathod

posted on 31 May 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Personal Interview 

(1 Question)

  • Q1. About the family members what they do?? Why are they not in this field etc

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is singelton Class?
  • Ans. 

    Singleton class is a class that can only have one instance at a time.

    • Used to restrict the instantiation of a class to one object

    • Provides a global point of access to that instance

    • Commonly used in logging, caching, and database applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Java theoretical questions along with practical

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Database queries on joins. Oops concepts, String Examples. SCENARIO based questions on spring controller dao layer
  • Q2. Patterns code and Fibonacci and remove duplicates from string program.
  • Ans. 

    Answering a question on patterns code, Fibonacci, and removing duplicates from a string program.

    • For patterns code, discuss common design patterns like Singleton, Factory, and Observer.

    • For Fibonacci, explain the algorithm and provide code examples in Java.

    • For removing duplicates from a string, discuss different approaches like using a Set or a Map.

    • Emphasize the importance of efficiency and scalability in all three progr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always try to explain your answer in simple way and with full of confidence.
Explain with various real world example while explaining OOPs concept. And also ask questions to interviewer to explain program statement. It will help you create solution fast. Don't assume anything for a question. Always get clear idea of problem statement.

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Assignment 

Five rounds of coding assignments.

Round 2 - Coding Test 

Create a simple project in Eclipse using a database and either Maven or Gradle.

Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Core java questions
  • Q2. Sql basics question
  • Q3. Two java coding question
Round 2 - Technical 

(2 Questions)

  • Q1. Agile/scrum questions
  • Q2. Experience related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How can a Spring Boot project be created to develop an API that returns specified data?
  • Ans. 

    A Spring Boot project can be created to develop an API by setting up a new Spring Boot project, defining API endpoints, and implementing the necessary logic.

    • Create a new Spring Boot project using Spring Initializr

    • Define API endpoints using @RestController annotation

    • Implement the logic to return specified data in the API endpoints

    • Use @GetMapping, @PostMapping, @PutMapping, @DeleteMapping annotations to map HTTP methods

  • Answered by AI
  • Q2. What is the code to print a right-angled triangle of numbers based on a given input number?
  • Ans. 

    Use nested loops to print a right-angled triangle of numbers based on input.

    • Use two nested loops to control the rows and columns of the triangle.

    • Increment the number to be printed in each row.

    • Example: If input is 5, the output would be: 1, 12, 123, 1234, 12345

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

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

Round 1 - Coding Test 

Asked about introduction and then few coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Given a code, what will be the output of this?
  • Ans. 

    The output of the code will be the sum of the elements in the given array.

    • The code likely involves iterating through the array and adding up the elements.

    • Make sure to handle edge cases like empty arrays or arrays with negative numbers.

    • Example: If the array is [1, 2, 3], the output will be 6.

  • Answered by AI
  • Q2. What is a hashMap and difference between HashMap and concurrentHashMap
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs. ConcurrentHashMap is a thread-safe version of HashMap.

    • HashMap is not thread-safe, while ConcurrentHashMap is thread-safe.

    • ConcurrentHashMap allows concurrent read and write operations without the need for external synchronization.

    • HashMap allows null keys and values, while ConcurrentHashMap does not allow null keys or values.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Min stack write code with full operation
  • Ans. 

    A min stack is a stack data structure that supports the usual push and pop operations, along with an additional operation to retrieve the minimum element in constant time.

    • Create a stack to store the elements and another stack to store the minimum values encountered so far.

    • When pushing an element, check if it is smaller than the current minimum. If so, push it onto the minimum stack.

    • When popping an element, check if it ...

  • Answered by AI
  • Q2. Graph and sql ,concept problem
Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort based tricky ques
  • Q2. Island problem leetcode

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

BST formation code in java

Round 2 - One-on-one 

(2 Questions)

  • Q1. Multi Threading consumer producer
  • Q2. User Defined Exceptions
Round 3 - HR 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Work Life Balance

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Collections framework, Explain why you chose a particular collection instead of other with example scenario based
  • Q2. Explain your project
  • Ans. 

    Developed a web application for online shopping with features like user authentication, product search, and order management.

    • Implemented user authentication using Spring Security

    • Utilized Hibernate for database operations

    • Designed front-end using AngularJS for dynamic user interface

  • Answered by AI

Google Interview FAQs

How many rounds are there in Google Trainee interview for experienced candidates?
Google interview process for experienced candidates usually has 1 rounds. The most common rounds in the Google interview process for experienced candidates are Personal Interview.

Tell us how to improve this page.

Google Trainee Interview Process for Experienced

based on 1 interview

Interview experience

2
  
Poor
View more
Google Trainee Salary
based on 5 salaries
₹2.9 L/yr - ₹4.5 L/yr
82% more than the average Trainee Salary in India
View more details

Google Trainee Reviews and Ratings

based on 4 reviews

4.8/5

Rating in categories

4.8

Skill development

4.5

Work-life balance

4.8

Salary

4.8

Job security

4.5

Company culture

4.8

Promotions

4.5

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
1.8k salaries
unlock blur

₹19 L/yr - ₹80 L/yr

Software Developer
1.5k salaries
unlock blur

₹27.2 L/yr - ₹60 L/yr

Senior Software Engineer
860 salaries
unlock blur

₹20 L/yr - ₹80 L/yr

Data Scientist
300 salaries
unlock blur

₹26 L/yr - ₹55 L/yr

Data Analyst
261 salaries
unlock blur

₹7.2 L/yr - ₹22.8 L/yr

Explore more salaries
Compare Google with

Yahoo

4.6
Compare

Amazon

4.0
Compare

Facebook

4.3
Compare

Microsoft Corporation

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