Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Zeta Team. If you also belong to the team, you can get access from here

Zeta Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zeta Technical Program Manager Interview Questions and Answers

Updated 6 Jul 2024

Zeta Technical Program Manager Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. K8s Architecture
  • Q2. Banking Domain, Card Transaction Life Cycle
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 5 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 - Technical 

(1 Question)

  • Q1. MOre about K8s Arch, Devops, Solution Arch
Round 3 - Case Study 

Program management Case study

Round 4 - Assignment 

Program management Case study

Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation

Technical Program Manager Interview Questions Asked at Other Companies

asked in Purplle.com
Q1. consider a scenario where you are collaborating with multiple PoD ... 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. What are the Challenges and ways for Prioritising customer critic ... read more
asked in Purplle.com
Q4. How can we best utilise the shared QA bandwidth to deliver the pl ... read more
asked in MasterCard
Q5. 1. Brief your existing/last Project architecture ? 2. Design patt ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. What kind of data modelling you worked with GenAI project?
  • Ans. 

    I have experience working with data modelling in the GenAI project to optimize algorithms and improve performance.

    • Utilized various data modelling techniques to analyze and interpret data

    • Developed predictive models to enhance decision-making processes

    • Collaborated with data scientists to refine and validate models

    • Implemented machine learning algorithms to improve accuracy and efficiency

  • Answered by AI
  • Q2. What was the challenge in end-to-end product delivery and implementation of solution roadmap?
  • Ans. 

    The challenge in end-to-end product delivery and implementation of solution roadmap involved coordinating multiple teams, managing dependencies, and ensuring alignment with business goals.

    • Coordinating cross-functional teams to ensure timely delivery of each component of the product

    • Managing dependencies between different teams and components to avoid delays

    • Ensuring alignment of the solution roadmap with the overall busi...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why Informatica cloud is better than Azure Cloud solution?
  • Ans. 

    Informatica Cloud offers more comprehensive data integration capabilities compared to Azure Cloud.

    • Informatica Cloud provides a wide range of data integration tools and services for various data sources and formats.

    • Informatica Cloud offers advanced data quality and data governance features that are not available in Azure Cloud.

    • Informatica Cloud has a strong focus on data security and compliance, with built-in encryption...

  • Answered by AI
  • Q2. Why do you prefer Azure cloud solution as recommendations for Data Engineering pipelines? Explain data pipelines scenario you managed in the project?
  • Ans. 

    I prefer Azure cloud solution for Data Engineering pipelines due to its scalability, reliability, and integration with other Microsoft services.

    • Azure provides a wide range of tools and services specifically designed for data engineering tasks, such as Azure Data Factory, Azure Databricks, and Azure HDInsight.

    • Azure offers seamless integration with other Microsoft services like Power BI, SQL Server, and Azure Machine Lea...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. How do you manage client obligations?
  • Ans. 

    I manage client obligations by setting clear expectations, communicating regularly, and prioritizing tasks based on deadlines and importance.

    • Set clear expectations with clients regarding deliverables and timelines

    • Communicate regularly to provide updates on progress and address any concerns

    • Prioritize tasks based on deadlines and importance to ensure all client obligations are met

    • Proactively identify potential issues and...

  • Answered by AI
  • Q2. How do you manange conflicts in the project?
  • Ans. 

    I manage conflicts in the project by promoting open communication, addressing issues promptly, seeking compromise, and involving stakeholders in resolution.

    • Promote open communication among team members to address conflicts early on

    • Address issues promptly and directly to prevent escalation

    • Seek compromise and find win-win solutions to resolve conflicts

    • Involve stakeholders in conflict resolution to ensure all perspectives

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared thoroughly on each job description requirement for interview. Candidate should have deep knowledge on each subject mention in JD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe an end to end project cycle
  • Ans. 

    An end to end project cycle involves planning, execution, monitoring, and closing of a project.

    • Initiation: Define project scope, objectives, and deliverables.

    • Planning: Create a detailed project plan, schedule, and budget.

    • Execution: Implement the project plan and manage resources.

    • Monitoring: Track progress, identify risks, and make necessary adjustments.

    • Closing: Finalize project deliverables, obtain client approval, and

  • Answered by AI
  • Q2. Tools and tech stack used
  • Ans. 

    Various tools and technologies used in the tech stack for project management.

    • Jira for project tracking

    • Confluence for documentation

    • Slack for communication

    • GitHub for version control

    • AWS for cloud services

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.

  • Q1. 

    Minimum Cost Path Problem Statement

    Given an N x M matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y) and ends at the top left corner of t...

  • Ans. 

    The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.

    • Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.

    • Consider the three possible moves: down, right, and down-right diagonal.

    • Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.

    • Finally, the mini...

  • Answered by AI
  • Q2. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Character Counting Challenge

    Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...

  • Ans. 

    Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.

    • Read characters from input stream until '$' is encountered

    • Count lowercase alphabets, digits, and white spaces separately

    • Print the counts of each character type as three integers separated by spaces

  • Answered by AI
  • Q2. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Find K largest elements in an unsorted array and return them in non-decreasing order.

    • Sort the array in non-decreasing order.

    • Return the last K elements of the sorted array.

  • Answered by AI
  • Q3. How can you check whether you have an internet connection on your system?
  • Ans. 

    To check internet connection on a system, you can use various methods like pinging a website or checking network status.

    • Use ping command to check connectivity to a website (e.g. ping www.google.com)

    • Check network status using network settings or command line tools

    • Try accessing a website or online service to verify internet connection

  • Answered by AI
  • Q4. What happens when you type a URL in a web browser?
  • Ans. 

    When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.

    • Browser checks cache for DNS resolution

    • If not found, browser sends a DNS query to resolve the domain name to an IP address

    • Browser establishes a TCP connection with the server

    • Browser sends an HTTP request to the server for the webpage

    • Server processes the...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.

    • Place each element in its correct position based on the prefix sum.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.

    • Example: ...

  • Answered by AI
  • Q2. What are the applications of the Fibonacci series in real life?
  • Ans. 

    The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.

    • Used in algorithms for optimization problems and dynamic programming.

    • Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.

    • Applied in financial markets for predicting stock prices and analyzing market trends.

    • Utilized in art and design for creating

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries

    • Combine the above steps in a single query to find the nth highest salary

  • Answered by AI
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site­ like the one satyam has.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are overridden in derived classes using the 'override' keyword.

    • They allow a function to be called based on the runtime type of an object.

    • Virtual functions enable dynamic binding and late binding in C++.

    • Example: virtual void ...

  • Answered by AI
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Design a Cinema Ticket Reservation System

    • Use a database to store movie information, showtimes, and seat availability

    • Allow users to search for movies, select showtimes, and choose seats

    • Implement a payment system for ticket purchases

    • Send confirmation emails with QR codes for ticket validation

  • Answered by AI
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
  • Ans. 

    You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.

    • Divide the 10 balls into two groups of 5 each.

    • Weigh the two groups on the balance scale.

    • If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.

    • Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.

    • Weigh the two groups on the bala...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.

  • Q1. Can you tell me about your projects and your extracurricular activities?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Oct 2016.

Interview Questionnaire 

3 Questions

  • Q1. How will you launch a product if business development and legal areas are sorted
  • Ans. 

    I would create a comprehensive marketing plan, including market research, target audience identification, pricing strategy, and promotional tactics.

    • Conduct market research to identify target audience and competitors

    • Develop a pricing strategy based on cost analysis and market demand

    • Create a promotional plan including advertising, PR, and social media campaigns

    • Coordinate with sales team to ensure product availability and...

  • Answered by AI
  • Q2. It was more of a discussion, wherein HR manager expressed their expectations from the employee.
  • Q3. Resume based round

Interview Preparation Tips

Round: Case Study Interview
Tips: Take your time and answer in a structured approach.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Normal java and sql question
Round 3 - Technical 

(1 Question)

  • Q1. Sping boot and microservice

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

You should be familiar with core java features. Collections, converting one collection Array / Vector to other. Removing duplicates. Lambda chaining / Functional programming. Basic SQL - Joins, Aggregates etc.

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain Architecture of applications you worked on. Justify use of components. System Design questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to grind leet code here. But you should know how to solve day to day problems. Do projects end to end. You should know the backend well.

Zeta Interview FAQs

How many rounds are there in Zeta Technical Program Manager interview?
Zeta interview process usually has 3 rounds. The most common rounds in the Zeta interview process are Technical, Assignment and HR.
How to prepare for Zeta 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 Zeta. The most common topics and skills that interviewers at Zeta expect are Agile, JIRA, PMP, Postgresql and ISO 27001.
What are the top questions asked in Zeta Technical Program Manager interview?

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

  1. MOre about K8s Arch, Devops, Solution A...read more
  2. Banking Domain, Card Transaction Life Cy...read more
  3. K8s Architect...read more

Tell us how to improve this page.

Zeta Technical Program Manager Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PhonePe Interview Questions
4.0
 • 299 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
MathCo Interview Questions
2.9
 • 110 Interviews
Kiya.ai Interview Questions
3.2
 • 48 Interviews
embedUR Systems Interview Questions
3.3
 • 48 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
Mitsogo Inc Interview Questions
3.1
 • 38 Interviews
View all
Zeta Technical Program Manager Salary
based on 32 salaries
₹21.1 L/yr - ₹60 L/yr
30% more than the average Technical Program Manager Salary in India
View more details

Zeta Technical Program Manager Reviews and Ratings

based on 2 reviews

2.5/5

Rating in categories

1.5

Skill development

2.1

Work-life balance

3.0

Salary

1.5

Job security

2.0

Company culture

1.5

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Development Engineer II
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Zeta with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

3.7
Compare

Payed

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