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 Software Developer Intern Interview Questions and Answers

Updated 2 Oct 2024

Zeta Software Developer Intern Interview Experiences

3 interviews found

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

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

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
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)

Interview questions from similar companies

I applied via Job Portal and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic js concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

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

Round 1 - HR 

(1 Question)

  • Q1. Questions on job Profile
Round 2 - Technical 

(1 Question)

  • Q1. Technical questions on banking domain
Round 3 - Technical 

(1 Question)

  • Q1. Work flow and responsibility of existing company
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion and notice period negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Scale wise best, Good work environment few teams exceptional

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

Interview Questionnaire 

2 Questions

  • Q1. What is difference between flip-flop and Latches?
  • Ans. 

    Flip-flops and latches are sequential logic circuits used to store and manipulate binary data.

    • Flip-flops are edge-triggered devices, while latches are level-sensitive devices.

    • Flip-flops have separate clock and data inputs, while latches have a single input for both clock and data.

    • Flip-flops are used in synchronous circuits, while latches are used in asynchronous circuits.

    • Flip-flops are more complex and require more cir...

  • Answered by AI
  • Q2. Where is the money needed to recruited you for embedur system?.The Hr will ask.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply or just putting resume to this company.As the hr will make money with this job. They don't deseve Talented candidates.They want referrals and salary cuts for hr to hire you.Instead of hiring candidates for software position, They should hire best Hr first (definitely in chennai)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Core Java , DS and Algo

Round 2 - Technical 

(2 Questions)

  • Q1. LLD Spotify only structure
  • Q2. Shortest path algorithm
  • Ans. 

    Shortest path algorithm finds the shortest path between two nodes in a graph.

    • Dijkstra's algorithm is a popular shortest path algorithm that uses a priority queue to find the shortest path in a weighted graph.

    • A* algorithm is another popular shortest path algorithm that uses heuristics to guide the search towards the goal node.

    • Bellman-Ford algorithm is used for finding the shortest path in a graph with negative edge weig

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Reason for the change
  • Q2. What you bring to the table

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Famous Java Questions like why string is immuatable and basics of OOPs.
  • Q2. Easy to medium level DSA based on array and string.
Round 2 - Technical 

(2 Questions)

  • Q1. Project Related Questions
  • Q2. Questions related to java 8 stream API
Round 3 - Technical 

(2 Questions)

  • Q1. Question related to basic recursion
  • Q2. Top kafka interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Your basics should be strong.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Start of The Loop in LinkedList.
Length of Loop in LinkedList

Round 2 - Case Study 

API Contract for Notification sending via SMS and Email

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

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(2 Questions)

  • Q1. Minimum element in an array
  • Ans. 

    Find the minimum element in an array of strings

    • Iterate through the array and compare each element to find the minimum

    • Use built-in functions like Math.min() or sort() to find the minimum

    • Handle edge cases like empty array or array with only one element

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Iterate through the linked list and change the next pointers to reverse the list

    • Use three pointers - prev, current, and next to keep track of nodes

    • Example: 1 -> 2 -> 3 -> 4 -> null, after reversing: 4 -> 3 -> 2 -> 1 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics good then you can crack the interview

Skills evaluated in this interview

Zeta Interview FAQs

How many rounds are there in Zeta Software Developer Intern interview?
Zeta interview process usually has 1-2 rounds. The most common rounds in the Zeta interview process are Coding Test and Technical.
What are the top questions asked in Zeta Software Developer Intern interview?

Some of the top questions asked at the Zeta Software Developer Intern interview -

  1. Find the maximum number in the subarrays of length...read more
  2. Longest Valid Parenthe...read more
  3. Spiral Matrix Quest...read more

Tell us how to improve this page.

Zeta Software Developer Intern Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 205 Interviews
MathCo Interview Questions
2.9
 • 112 Interviews
Kiya.ai Interview Questions
3.2
 • 49 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Mitsogo Inc Interview Questions
3.1
 • 38 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
View all
Software Development Engineer II
86 salaries
unlock blur

₹18 L/yr - ₹50 L/yr

Senior Software Engineer
50 salaries
unlock blur

₹30 L/yr - ₹64 L/yr

Program Manager
46 salaries
unlock blur

₹19.2 L/yr - ₹53.8 L/yr

Product Manager
42 salaries
unlock blur

₹21.5 L/yr - ₹45 L/yr

Project Manager
40 salaries
unlock blur

₹9 L/yr - ₹26.1 L/yr

Explore more salaries
Compare Zeta with

Paytm

3.3
Compare

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

Kiya.ai

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