AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
messages 0
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Zeus Learning

Compare button icon Compare button icon Compare
3.1

based on 104 Reviews

Play video Play video Video summary
  • About
  • Reviews
    104
  • Salaries
    708
  • Interviews
    36
  • Jobs
    3
  • Benefits
    8
  • Photos
    -
  • Posts
    1

Filter interviews by

Zeus Learning Interview Questions and Answers

Updated 6 Jun 2025
Popular Designations

18 Interview questions

A Software Developer was asked 9mo ago
Q. Given two strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise.
Ans. 

Generate all permutations of a string using a backtracking approach.

  • Backtracking involves exploring all possible configurations and abandoning those that don't meet criteria.

  • Start with an empty string and build permutations by adding one character at a time.

  • Use a boolean array to track which characters are already included in the current permutation.

  • Example: For the string 'abc', the permutations are 'abc', 'acb',...

View all Software Developer interview questions
A Software Engineer was asked
Q. How do you find the second largest element in an array?
Ans. 

To find the second largest element in an array, iterate through the array while tracking the largest and second largest values.

  • Initialize two variables: 'largest' and 'secondLargest' to negative infinity.

  • Iterate through each element in the array.

  • For each element, update 'largest' if the current element is greater than 'largest'.

  • If the current element is less than 'largest' but greater than 'secondLargest', update ...

View all Software Engineer interview questions
An Intern was asked
Q. What is JavaScript in relation to Java?
Ans. 

JS in Java refers to JavaScript, a scripting language commonly used for web development.

  • JavaScript is a high-level, interpreted programming language.

  • It is commonly used for client-side web development.

  • JS can be embedded in HTML pages to add interactivity.

  • It is not the same as Java, which is a separate programming language.

View all Intern interview questions
A Software Engineer was asked
Q. Given an array of integers, find the second largest element.
Ans. 

Find the second largest element in an array of integers efficiently.

  • Iterate through the array while keeping track of the largest and second largest elements.

  • Initialize two variables: largest and secondLargest to negative infinity.

  • For each element, update largest if the current element is greater than largest.

  • If the current element is less than largest but greater than secondLargest, update secondLargest.

  • Example: F...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is indexing in DBMS?
Ans. 

Indexing in DBMS is a technique to improve the performance of queries by allowing faster retrieval of data.

  • Indexing creates a data structure that allows for quick lookups of data based on specific columns.

  • It helps in reducing the time taken to retrieve data from a database table.

  • Examples of indexing methods include B-tree, Hash indexes, and Bitmap indexes.

View all Software Engineer interview questions
A QA Engineer was asked
Q. There are 80 pairs of socks in a dark room, 40 black and 40 white. What is the minimum number of socks that need to be taken out to guarantee 15 matching pairs?
Ans. 

Minimum 31 socks need to be taken out to get 15 pairs of socks

  • To get 15 pairs of socks, you need to have 30 socks of different colors

  • After taking out 30 socks, the next sock you take out will complete the 15 pairs

  • So, minimum 31 socks need to be taken out to get 15 pairs of socks

View all QA Engineer interview questions

Zeus Learning HR Interview Questions

5 questions and answers

Q. Can you explain your project in detail?
Q. Tell me about yourself.
Q. Explain your final year project.
View all HR interview questions
A QA Engineer was asked
Q. If a pen's weight equals 2 kg plus half of its own weight, what is the pen's weight?
Ans. 

The weight of the pen is 4 kg.

  • To find the weight of the pen, we can set up the equation: pen weight = 2 kg + 1/2 of its own weight

  • Let x be the weight of the pen. The equation becomes: x = 2 + 1/2 * x

  • Solving for x, we get x = 4 kg

View all QA Engineer interview questions
Are these interview questions helpful?
A QA Engineer was asked
Q. There are three boxes labeled "apples", "oranges", and "apples + oranges", but each box is labeled incorrectly. What is the minimum number of steps required to correctly label all the boxes, assuming each f...
Ans. 

To correct the labels on 3 boxes with jumbled fruit labels, the least number of steps required is 2.

  • Pick a fruit from the box labeled 'apples + oranges', since it must contain both fruits.

  • Then pick a fruit from the box labeled 'oranges', as it cannot contain apples.

View all QA Engineer interview questions
A QA Engineer was asked
Q. When designing an online carrom game, if the game is paused and then resumed, what needs to be saved?
Ans. 

When designing an online carrom game, the saved data when the game is paused and resumed should include player scores, positions of coins, game state, and timer status.

  • Player scores should be saved to ensure continuity.

  • Positions of coins on the board should be saved to resume the game accurately.

  • Game state (such as whose turn it is) should be saved to maintain the flow.

  • Timer status should be saved to resume the ga...

View all QA Engineer interview questions
A QA Engineer was asked
Q. Why Quality Assurance?
Ans. 

Quality Assurance ensures that products meet high standards and customer expectations.

  • Ensures product quality and reliability

  • Identifies and fixes defects early in the development process

  • Increases customer satisfaction and trust in the product

  • Reduces risks and costs associated with product failures

View all QA Engineer interview questions
1 2

Zeus Learning Interview Experiences

36 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 14 Nov 2024

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Add your answer
  • Q2. Question based on project
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Walk-in and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

So prepare good amout of aptitude , and try to solve at least 15 Questions

Round 2 - Coding Test 

It was an Online coding test 2 questions were there. difficulty (Easy and Medium).

Round 3 - Coding Test 

The third round was again an coding round but it was a pen and paper test , it was in offline mode they will tell you the center after you will complete 2nd round.
In pen and paper test there are 10 coding questions and from topics array , string , recursion , Bit manipulation , BST , Linked List. so you have to solve at least 6-7 questions.

Round 4 - Technical 

(3 Questions)

  • Q1. Questions on HTML, CSS
  • Add your answer
  • Q2. Permutations in string (Can you Backtracking approach). Always try to explain your approach
  • Ans. 

    Generate all permutations of a string using a backtracking approach.

    • Backtracking involves exploring all possible configurations and abandoning those that don't meet criteria.

    • Start with an empty string and build permutations by adding one character at a time.

    • Use a boolean array to track which characters are already included in the current permutation.

    • Example: For the string 'abc', the permutations are 'abc', 'acb', 'bac...

  • Answered by AI
    Add your answer
  • Q3. Explain your Project?
  • Add your answer
Anonymous

SDE Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2024

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

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was good hard question were asked

Round 2 - Coding Test 

Opps concept and their code

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Data structure and algorithm, easy and medium questions

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

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

I have given the online aptitude test of zeus learning (on campus) , which was the very first round and the test was divided into two parts, first part was mostly coding-decoding questions (aptitude) which was easy according to me but it was tricky too and second part included 2 dsa question and both the questions were of easy level.

Anonymous

Instrumentation Technician Interview Questions & Answers

user image Anonymous

posted on 15 Dec 2024

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logical questions.

Round 2 - Technical 

(1 Question)

  • Q1. Interpretation knowledge
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Personal learning
  • Add your answer
Anonymous

QA Engineer Interview Questions & Answers

user image Prachi Jain

posted on 21 Aug 2023

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical + Quantitative questions +subjective round for QA -> questions to figure the mistake in designs

Round 2 - Technical 

(5 Questions)

  • Q1. 100 apples in 5 consecutive days, each day 6 more than the previous day, how many apples were eaten on the first day
  • Ans. 8 + 14 + 20 + 26 + 32 = 100 -> Ans: 8
  • Answered by Prachi Jain
    Add your answer
  • Q2. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
  • Ans. 

    Minimum 31 socks need to be taken out to get 15 pairs of socks

    • To get 15 pairs of socks, you need to have 30 socks of different colors

    • After taking out 30 socks, the next sock you take out will complete the 15 pairs

    • So, minimum 31 socks need to be taken out to get 15 pairs of socks

  • Answered by AI
    View 8 more answers
  • Q3. 11 mins hourglass and 7 mins hourglass, use them both to calculate 15 mins
  • Ans. 1. use both 11 and 7 at same time and stop as 7 empties on one side -> total = 7 and 11 mins divided in 4 + 7 2. flip 7 mins glass and let 4 mins emptied, stop as 4 mins passes -> total = 7 + 4 = 11 and 7 mins divided in 3 + 4 3. let 4 mins pass -> total = 7 + 4 + 4 = 15 mins
  • Answered by Prachi Jain
    Add your answer
  • Q4. Tell me about yourself
  • Add your answer
  • Q5. Why Quality Assurance
  • Add your answer
Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • View 1 more answer
  • Q2. Pen weight = 2 kg + 1/2 of its own weight -> what is the weight of pen?
  • Ans. 

    The weight of the pen is 4 kg.

    • To find the weight of the pen, we can set up the equation: pen weight = 2 kg + 1/2 of its own weight

    • Let x be the weight of the pen. The equation becomes: x = 2 + 1/2 * x

    • Solving for x, we get x = 4 kg

  • Answered by AI
    View 2 more answers
  • Q3. 3 boxes with apples, oranges, apples + oranges --> labels are jumbled that is each box is labeled incorrectly, least number of steps required to correct the labels, considering each fruit we pick out is on...
  • Ans. 

    To correct the labels on 3 boxes with jumbled fruit labels, the least number of steps required is 2.

    • Pick a fruit from the box labeled 'apples + oranges', since it must contain both fruits.

    • Then pick a fruit from the box labeled 'oranges', as it cannot contain apples.

  • Answered by AI
    View 1 more answer
  • Q4. When designing an online carrom game, if the game is paused in between and then resumed again, what all things need to be saved?
  • Ans. 

    When designing an online carrom game, the saved data when the game is paused and resumed should include player scores, positions of coins, game state, and timer status.

    • Player scores should be saved to ensure continuity.

    • Positions of coins on the board should be saved to resume the game accurately.

    • Game state (such as whose turn it is) should be saved to maintain the flow.

    • Timer status should be saved to resume the game wi...

  • Answered by AI
    View 1 more answer
  • Q5. Two jugs -> 5L and 3L -> fill 4L using only them, while wasting the least amount of water
  • Ans. 1. fill 5L and empty it in 3L ---> 5L has 2L and 3L has 3L 2. empty 3L ---> 5L has 2L and 3L has 0L 3. empty 5L into 3L ---> 5L has 0L and 3L has 2L 4. fill 5L to the top ---> 5L has 5L and 3L has 2L 5. fill 3L till full using 5L ---> 5L has 4L and 3L has 3L
  • Answered by Prachi Jain
    Add your answer

Skills evaluated in this interview

Anonymous

Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

Basic html,dsa questions

Round 2 - Technical 

(1 Question)

  • Q1. Based on coding test only,basic oops dsa ,html,js,css
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 19 Apr 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude test followed by 2 coding questions. Test was very easy.

Round 2 - Coding Test 

This was pen and paper coding test, where we were given 20 questions and we had to write code on paper. Total time was 2-3 hr.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Interview, 2 coding questions asked, 1 math question and Basics like OOP, Language specific, etc.
  • Add your answer

Interview Preparation Tips

Topics to prepare for Zeus Learning Software Developer interview:
  • OOP
  • Programming
  • Maths
Interview preparation tips for other job seekers - You can clear interview if you know basics. Tell them about tech stack which you know. Also there is no constraint on any specific language, you can use any. So be master of 1 language.
Anonymous

Quality Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

Basic aptitude test for further assessment

Round 3 - Technical 

(1 Question)

  • Q1. Technical round for further screening process
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Technical round for further process
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Zeus Learning?
Ask anonymously on communities.
More about working at Zeus Learning
  • HQ - Mumbai, India
  • EdTech
  • 51-200 Employees (India)
  • Hardware & Networking
  • Software Product

Zeus Learning Interview FAQs

How many rounds are there in Zeus Learning interview?
Zeus Learning interview process usually has 2-3 rounds. The most common rounds in the Zeus Learning interview process are Aptitude Test, Technical and Coding Test.
How to prepare for Zeus Learning 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 Zeus Learning. The most common topics and skills that interviewers at Zeus Learning expect are PDF, Web Technologies, Photoshop, Adobe Xd and Figma.
What are the top questions asked in Zeus Learning interview?

Some of the top questions asked at the Zeus Learning interview -

  1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number o...read more
  2. 100 apples in 5 consecutive days, each day 6 more than the previous day, how ma...read more
  3. If a monkey eat 6 apples more than the previous day and complete all the mango ...read more
How long is the Zeus Learning interview process?

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

Tell us how to improve this page.

Zeus Learning Interviews By Designations

  • Zeus Learning Quality Engineer Interview Questions
  • Zeus Learning Software Engineer Interview Questions
  • Zeus Learning Software Developer Interview Questions
  • Zeus Learning QA Engineer Interview Questions
  • Zeus Learning Instrumentation Technician Interview Questions
  • Zeus Learning Instructional Designer Interview Questions
  • Zeus Learning Software Tester Interview Questions
  • Zeus Learning QA QC Engineer Interview Questions
  • Show more
  • Zeus Learning Intern Interview Questions
  • Zeus Learning SDE Interview Questions

Interview Questions for Popular Designations

  • Quality Engineer Interview Questions
  • Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Associate Interview Questions
  • Executive Interview Questions
  • Analyst Interview Questions
  • Design Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Show more
  • System Engineer Interview Questions
  • Sales Officer Interview Questions

Overall Interview Experience Rating

3.7/5

based on 26 interview experiences

Difficulty level

Easy 29%
Moderate 71%

Duration

Less than 2 weeks 44%
2-4 weeks 44%
4-6 weeks 6%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

Internshala
Internshala Interview Questions
3.9
 • 61 Interviews
Z X Learning
Z X Learning Interview Questions
4.4
 • 44 Interviews
Trivium Education Services
Trivium Education Services Interview Questions
3.8
 • 31 Interviews
Schoolnet India
Schoolnet India Interview Questions
3.9
 • 19 Interviews
Six Red Marbles
Six Red Marbles Interview Questions
3.5
 • 13 Interviews
Planet EDU
Planet EDU Interview Questions
3.4
 • 12 Interviews
QS Quacquarelli Symonds
QS Quacquarelli Symonds Interview Questions
4.1
 • 11 Interviews
Global Opportunities
Global Opportunities Interview Questions
3.7
 • 10 Interviews
ENTRI SOFTWARE
ENTRI SOFTWARE Interview Questions
3.7
 • 10 Interviews
Techno India Group
Techno India Group Interview Questions
3.7
 • 9 Interviews
View all

Zeus Learning Reviews and Ratings

based on 104 reviews

3.1/5

Rating in categories

3.0

Skill development

2.4

Work-life balance

3.4

Salary

3.4

Job security

2.9

Company culture

3.2

Promotions

2.6

Work satisfaction

Explore 104 Reviews and Ratings
Jobs at Zeus Learning
Zeus Learning
Zeus Learning - Senior Accessibility Engineer (2-5 yrs)

2-5 Yrs

Not Disclosed

Zeus Learning
Zeus Learning - UI/UX Designer - Figma/Adobe XD (3-7 yrs)

3-7 Yrs

Not Disclosed

Zeus Learning
Senior Software Engineer

Mumbai

2-5 Yrs

₹ 6-24 LPA

Explore more jobs
Zeus Learning Salaries in India
Software Engineer
139 salaries
unlock blur

₹5.8 L/yr - ₹12.3 L/yr

Senior Software Engineer
94 salaries
unlock blur

₹11.4 L/yr - ₹19.1 L/yr

Software Developer
85 salaries
unlock blur

₹5.8 L/yr - ₹11 L/yr

Quality Engineer
36 salaries
unlock blur

₹4.2 L/yr - ₹9.4 L/yr

Senior Quality Engineer
26 salaries
unlock blur

₹6.4 L/yr - ₹13 L/yr

Explore more salaries
Compare Zeus Learning with
Z X Learning

Z X Learning

4.4
Compare
Schoolnet India

Schoolnet India

3.9
Compare
Acadecraft

Acadecraft

3.3
Compare
Trivium Education Services

Trivium Education Services

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Zeus Learning Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

85 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter