Upload Button Icon Add office photos

Google

Compare button icon Compare button icon Compare

Filter interviews by

Google Technical Program Manager Interview Questions and Answers

Updated 19 Jul 2022

Google Technical Program Manager Interview Experiences

2 interviews found

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Basic questions on profile and some of the projects which u have done in past. HR chekcs whether your profile is a fit for the requirement or not. This is an elimination round
Round 3 - Technical 

(1 Question)

  • Q1. Elimination round. Will be taken by someone with the someone from the related team. Questions will be focussed on technical + behavioral. It is mandatory to clear this round for proceeding ahead in the pro...
Round 4 - Onsite 

(1 Question)

  • Q1. There will be 4 or more interview rounds in this stage depending upon the target level. For me it started with the hiring manager round which was more focussed on my past projects and technical judgement ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be focussed. Dont think too much about the process. Normal TAT for interview is 2-3 months but it depends on the role. Think of this as a marathon and take one step at a time. Dont feel down even if one round dont go well. You have to show your actual self.

I applied via Approached by Company and was interviewed in Aug 2021. There were 7 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Share details of your previous job.
Round 3 - Technical 

(1 Question)

  • Q1. 1 Hour of STAR method
  • Ans. 

    Using the STAR method, describe a time when you had to manage a difficult stakeholder.

    • Situation: Explain the context and the stakeholder involved

    • Task: Describe the task or objective that needed to be achieved

    • Action: Explain the steps you took to manage the stakeholder and achieve the objective

    • Result: Describe the outcome and the impact it had on the project or organization

    • Example: When I was working on a software proje...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. API related and star
Round 5 - Technical 

(1 Question)

  • Q1. Api related star framework
Round 6 - One-on-one 

(1 Question)

  • Q1. API and star frame work
Round 7 - One-on-one 

(1 Question)

  • Q1. STAR related all question

Interview Preparation Tips

Interview preparation tips for other job seekers - 6 round of techical and non technical excluding HR screening

Technical Program Manager Interview Questions Asked at Other Companies

asked in Purplle.com
Q1. Consider a scenario where you are collaborating with multiple pro ... read more
asked in Purplle.com
Q2. what sort of release mechanism you worked on? will you be able to ... read more
asked in Purplle.com
Q3. Have you worked on improving existing processes or developing new ... read more
asked in Purplle.com
Q4. What are the challenges and ways for prioritizing customer-critic ... read more
asked in Purplle.com
Q5. How can we best utilize the shared QA bandwidth to deliver the pl ... read more

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Project management Practices
  • Ans. 

    Project management practices involve planning, organizing, and executing projects to achieve specific goals within constraints.

    • Define project scope, objectives, and deliverables

    • Create a project plan with timelines and milestones

    • Assign tasks and responsibilities to team members

    • Monitor progress and adjust plans as needed

    • Communicate effectively with stakeholders

    • Use project management tools like Gantt charts or Kanban boar...

  • Answered by AI

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

What people are saying about Google

View All
brightwatson
Verified Icon
5d
works at
Versatile IT Solutions
Google Ads Update: Brand Restrictions on Broad Match!
Google Ads just dropped a brand restriction setting for broad match keywords. Now you can stop your ads from popping up for unrelated brand names while still using broad match to hit a bigger audience. More control + better targeting = less wasted ad spend!
Got a question about Google?
Ask anonymously on communities.

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

Google HR Interview Questions

130 questions and answers

Q. What motivates you?
Q. What are your weaknesses?
Q. What are your career goals?

I applied via Referral and was interviewed before Aug 2020. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and should communicate well in English. Be Truth.
Are these interview questions helpful?

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Google Interview FAQs

How many rounds are there in Google Technical Program Manager interview?
Google interview process usually has 5-6 rounds. The most common rounds in the Google interview process are Technical, Resume Shortlist and HR.
How to prepare for Google Technical Program Manager 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 Android, Recruitment, Project Management, Technical Program Management and Computer science.
What are the top questions asked in Google Technical Program Manager interview?

Some of the top questions asked at the Google Technical Program Manager interview -

  1. API and star frame w...read more
  2. Api related star framew...read more
  3. STAR related all quest...read more
What are the most common questions asked in Google Technical Program Manager HR round?

The most common HR questions asked in Google Technical Program Manager interview are -

  1. Tell me about yourse...read more
  2. Share details of your previous j...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 897 Interviews
Zoho Interview Questions
4.2
 • 542 Interviews
Amdocs Interview Questions
3.7
 • 534 Interviews
KPIT Technologies Interview Questions
3.2
 • 310 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.8
 • 248 Interviews
Salesforce Interview Questions
4.0
 • 235 Interviews
Chetu Interview Questions
3.3
 • 203 Interviews
View all
Google Technical Program Manager Salary
based on 70 salaries
₹35.2 L/yr - ₹57.3 L/yr
49% more than the average Technical Program Manager Salary in India
View more details

Google Technical Program Manager Reviews and Ratings

based on 5 reviews

2.3/5

Rating in categories

2.0

Skill development

4.6

Work-life balance

4.2

Salary

1.4

Job security

4.3

Company culture

3.0

Promotions

1.9

Work satisfaction

Explore 5 Reviews and Ratings
Technical Program Manager, Business Intelligence

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Technical Program Manager, Android, Application Quality

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
2.9k salaries
unlock blur

₹33.1 L/yr - ₹60 L/yr

Software Developer
2.3k salaries
unlock blur

₹33.4 L/yr - ₹62.1 L/yr

Senior Software Engineer
1.2k salaries
unlock blur

₹35.1 L/yr - ₹70 L/yr

Sde1
421 salaries
unlock blur

₹32.5 L/yr - ₹60 L/yr

Data Analyst
403 salaries
unlock blur

₹15.3 L/yr - ₹28 L/yr

Explore more salaries
Compare Google with

Yahoo

4.6
Compare

Amazon

4.0
Compare

Facebook

4.4
Compare

Microsoft Corporation

3.9
Compare
write
Share an Interview