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

Updated 9 Jun 2025
Popular Designations

6 Interview questions

A SDE Intern was asked 8mo ago
Q. Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get(key) - Get the value (will always be positive) of the key if the key exists in the ...
Ans. 

Implementing an LRU Cache using a combination of a hashmap and a doubly linked list.

  • Use a hashmap for O(1) access to cache items.

  • Use a doubly linked list to maintain the order of usage.

  • When accessing an item, move it to the front of the list.

  • If the cache exceeds its capacity, remove the least recently used item from both the hashmap and the list.

  • Example: For a cache of capacity 2, accessing keys 1, 2, then 1 again...

View all SDE Intern interview questions
A SDE Intern was asked 8mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linked list by changing the direction of pointers

  • Start with three pointers: prev, current, next

  • Iterate through the list, updating pointers to reverse the direction

  • Update the head of the list to be the last node

View all SDE Intern interview questions
A Software Developer Intern was asked 9mo ago
Q. Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
Ans. 

Find the length of the longest valid parentheses substring in a given string.

  • Use a stack to keep track of the indices of opening parentheses.

  • Iterate through the string and update the maximum length of valid parentheses.

  • Handle cases where closing parentheses are encountered without a matching opening parentheses.

View all Software Developer Intern interview questions
A Software Developer Intern was asked 9mo ago
Q. Given an array of integers and an integer k, find the maximum value in each subarray of length k.
Ans. 

Find the maximum number in the subarrays of length k.

  • Iterate through the array and keep track of the maximum number in each subarray of length k.

  • Use a sliding window approach to efficiently find the maximum number in each subarray.

  • Time complexity can be optimized to O(n) using a deque data structure.

View all Software Developer Intern interview questions
A DevOps Intern was asked
Q. Given an array of integers, what is the minimum number of deletions required to make it a sorted sequence?
Ans. 

Find minimum deletions to make a sequence sorted.

  • Count the number of elements that are not in increasing order.

  • Subtract the count from the length of the sequence to get the minimum deletions.

  • Use dynamic programming to optimize the solution.

  • Time complexity: O(nlogn) using binary search.

View all DevOps Intern interview questions
A DevOps Intern was asked
Q. Given an array representing the locations of houses and towers along a street, what is the minimum number of towers required to ensure that every house is within the range of at least one tower?
Ans. 

The minimum number of towers required to cover all houses.

  • Iterate through the houses and find the maximum distance between any two adjacent houses.

  • Divide this maximum distance by the range of each tower to get the minimum number of towers required.

  • If there is a remainder, add one to the result.

  • Return the minimum number of towers.

View all DevOps Intern interview questions

Zeta Interview Experiences for Freshers

10 interviews found

Business Analyst Interview Questions & Answers

user image Divyanshee Singh

posted on 28 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql questions were answered by the interviewer
  • Q2. Sql questions were questioned

SDE Intern Interview Questions & Answers

user image Kaushik Borah

posted on 12 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a Linked List
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: prev, current, next

    • Iterate through the list, updating pointers to reverse the direction

    • Update the head of the list to be the last node

  • Answered by AI
  • Q2. LRU Cache implementation
  • Ans. 

    Implementing an LRU Cache using a combination of a hashmap and a doubly linked list.

    • Use a hashmap for O(1) access to cache items.

    • Use a doubly linked list to maintain the order of usage.

    • When accessing an item, move it to the front of the list.

    • If the cache exceeds its capacity, remove the least recently used item from both the hashmap and the list.

    • Example: For a cache of capacity 2, accessing keys 1, 2, then 1 again shou...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Vedant Jha

posted on 22 Jul 2023

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

I applied via Company Website and was interviewed in Jun 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 - Assignment 

An assignment to make an image listing app from API using Volley/Retrofit and second screen to display the image. Used recyclerview, glide , volley etc. It was done to be in 2 hour.

Round 3 - Technical 

(3 Questions)

  • Q1. The second was Android technical discussion round. The assignment was discussed. Why i used recyclerview, questions related to recyclerview, some questions on networking, what happens when we hit google.co...
  • Q2. Why recyclerview is performant dns etc.
  • Q3. What happens when we hit google.com in browser , behind the scenes
Round 4 - Coding Test 

In 1 hour i was asked to solve two easy DS question
1. Merge the two sorted arrays
2. rotated binary search

Round 5 - One-on-one 

(2 Questions)

  • Q1. Hiring manager round with manager, system design questions,
  • Q2. 1. Design whatsapp 2. Design chess game (intellij java) 3. React native vs native android , 4. Basic hr question

Interview Preparation Tips

Topics to prepare for Zeta interview:
  • datastructure
  • Algorithms
  • Java
  • Android
Interview preparation tips for other job seekers - WOrk on your bascis
be calm and explain your thought process

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 before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Valid Parentheses
  • Ans. 

    Find the length of the longest valid parentheses substring in a given string.

    • Use a stack to keep track of the indices of opening parentheses.

    • Iterate through the string and update the maximum length of valid parentheses.

    • Handle cases where closing parentheses are encountered without a matching opening parentheses.

  • Answered by AI
  • Q2. Find the maximum number in the subarrays of length k.
  • Ans. 

    Find the maximum number in the subarrays of length k.

    • Iterate through the array and keep track of the maximum number in each subarray of length k.

    • Use a sliding window approach to efficiently find the maximum number in each subarray.

    • Time complexity can be optimized to O(n) using a deque data structure.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Spiral Matrix Question

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 16 Apr 2024

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

I applied via Company Website and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 DSa questions + cs fundamentals mcq

Round 2 - One-on-one 

(2 Questions)

  • Q1. System design e-commerce
  • Q2. SRE fundamentals
Round 3 - HR 

(1 Question)

  • Q1. Managerial round, resume, work experience and stuff
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Zeta interview at codeblock. 3 dsa questions The level of difficulty was medium

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

Product case study on CRM

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

I appeared for an interview in Oct 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Releted to Education and Job description
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 - Coding Test 

There were 2 Question in Online Assessment. The level of the DSA Question was medium to hard

Interview Preparation Tips

Interview preparation tips for other job seekers - For DSA, Leetcode Medium Question and Some Popular Interview Question are enough
Focus on CS fundamental topics like Computer Network, OOPS, OS,DBMS, SQL Query (Most Imp)

DevOps Intern Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2021

I applied via Company Website and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Minimum number of towers required such that every house is in the range of at least one tower
  • Ans. 

    The minimum number of towers required to cover all houses.

    • Iterate through the houses and find the maximum distance between any two adjacent houses.

    • Divide this maximum distance by the range of each tower to get the minimum number of towers required.

    • If there is a remainder, add one to the result.

    • Return the minimum number of towers.

  • Answered by AI
  • Q2. Minimum number of deletions to make a sorted sequence
  • Ans. 

    Find minimum deletions to make a sequence sorted.

    • Count the number of elements that are not in increasing order.

    • Subtract the count from the length of the sequence to get the minimum deletions.

    • Use dynamic programming to optimize the solution.

    • Time complexity: O(nlogn) using binary search.

  • Answered by AI
  • Q3. -----/

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA should be very strong.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Zeta?
Ask anonymously on communities.

Zeta Interview FAQs

How many rounds are there in Zeta interview for freshers?
Zeta interview process for freshers usually has 1-2 rounds. The most common rounds in the Zeta interview process for freshers are Technical, Coding Test and One-on-one Round.
How to prepare for Zeta interview for freshers?
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 Banking, Core Banking Solution, Recruitment, Talent Acquisition and Core banking.
What are the top questions asked in Zeta interview for freshers?

Some of the top questions asked at the Zeta interview for freshers -

  1. 1. Design whatsapp 2. Design chess game (intellij java) 3. React native vs nati...read more
  2. What happens when we hit google.com in browser , behind the sce...read more
  3. Minimum number of towers required such that every house is in the range of at l...read more
What are the most common questions asked in Zeta HR round for freshers?

The most common HR questions asked in Zeta interview are for freshers -

  1. What are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Tell me about yourse...read more
How long is the Zeta interview process?

The duration of Zeta interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 8 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 80%
2-4 weeks 20%
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 214 Interviews
MathCo Interview Questions
3.0
 • 116 Interviews
Kiya.ai Interview Questions
3.4
 • 50 Interviews
embedUR Systems Interview Questions
3.2
 • 50 Interviews
Mitsogo Inc Interview Questions
2.9
 • 39 Interviews
CoinDCX Interview Questions
3.8
 • 31 Interviews
MoEngage Interview Questions
3.9
 • 27 Interviews
View all

Zeta Reviews and Ratings

based on 276 reviews

3.4/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.6

Salary

3.3

Job security

3.2

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 276 Reviews and Ratings
Associate Director - Program Management

Hyderabad / Secunderabad

12-17 Yrs

Not Disclosed

Project Manager (Talent Acquisition)

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Assistant Company Secretary

Mumbai

1-3 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer II
86 salaries
unlock blur

₹26 L/yr - ₹45.3 L/yr

Senior Software Engineer
58 salaries
unlock blur

₹33 L/yr - ₹59.6 L/yr

Program Manager
50 salaries
unlock blur

₹19.2 L/yr - ₹48 L/yr

Product Manager
48 salaries
unlock blur

₹21.5 L/yr - ₹45 L/yr

Project Manager
47 salaries
unlock blur

₹13 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Zeta with

Paytm

3.2
Compare

Fractal Analytics

4.0
Compare

Kiya.ai

3.4
Compare

MathCo

3.0
Compare
write
Share an Interview