Upload Button Icon Add office photos

Zeus Learning

Compare button icon Compare button icon Compare

Filter interviews by

Zeus Learning Interview Questions and Answers for Freshers

Updated 6 Jun 2025
Popular Designations

13 Interview questions

A Software Developer was asked 10mo 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 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
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
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
Be interview-ready. Browse the most asked HR questions.
illustration image
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
Are these interview questions helpful?
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
A Software Developer was asked
Q. Write a function that returns both the addition and subtraction of two numbers.
Ans. 

A function that returns the addition and subtraction of two numbers.

  • Create a function that takes two numbers as input parameters.

  • Inside the function, calculate the sum of the two numbers and store it in a variable.

  • Calculate the difference of the two numbers and store it in another variable.

  • Return an array of strings containing the sum and difference.

View all Software Developer interview questions
A Software Developer was asked
Q. What protocol is used for communication over web pages?
Ans. 

HTTP is the protocol used for communication over web pages.

  • HTTP stands for Hypertext Transfer Protocol

  • It is the foundation of data communication on the World Wide Web

  • HTTP uses a client-server model where the web browser acts as the client and sends requests to the web server

  • The web server responds with the requested data in the form of HTML, images, videos, etc.

View all Software Developer interview questions

Zeus Learning Interview Experiences for Freshers

11 interviews found

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
  • 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
  • Q3. Explain your Project?

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
  • 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
  • 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
  • Q4. Tell me about yourself
  • Q5. Why Quality Assurance
Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • 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
  • 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
  • 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
  • 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

Skills evaluated in this interview

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.

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.

Software Engineer Interview Questions & Answers

user image Dharmesh Vala

posted on 21 Sep 2023

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

I applied via Campus Placement and was interviewed in Mar 2023. There were 3 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 

Test consist of 25 Apatitude Question and 10 Coding problems of Debugging code, Find Output, Set Matrixs, Valid Matrix, Height of N-ary Tree, Sorting, Linked List etc. So prepare well with standard dsa problems of any sheet (striver sheet)

Round 3 - Technical 

(5 Questions)

  • Q1. Technical Round consist of one coding question and detailed discussion on my smart india hackathon project and counter question on it with some of question on performance and security.
  • Ans. Performance Technique in React/Node ReactJS Interview Question
  • Answered by Dharmesh Vala
  • Q2. Find 2nd Largest Element in array
  • Ans. 

    Iterate through array to find 2nd largest element

    • Iterate through array and keep track of largest and second largest elements

    • Handle edge cases like empty array or array with less than 2 elements

    • Example: ['3', '5', '2', '7', '1'] should return '5'

  • Answered by AI
  • Q3. Question on Redux also asked to pass information in reactjs.
  • Ans. Before interview refer redux documentation and standard interview question.
  • Answered by Dharmesh Vala
  • Q4. Authentication and Authorization question on my project
  • Q5. Security issues in your project

Interview Preparation Tips

Topics to prepare for Zeus Learning Software Engineer interview:
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Prepare all concept of apatitude well and make habit of practising coding on leetcode or gfg.
Make some project and learn development as well.
Before any interview prepare standard interview question on that tech stack.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

My name is amar reverse the string without using inbuilt method

Round 3 - Technical 

(1 Question)

  • Q1. What is nodejs and what is promise. What is closures
  • Ans. 

    Node.js is a runtime environment for executing JavaScript code outside of a web browser. Promises are objects representing the eventual completion or failure of an asynchronous operation. Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Node.js is a runtime environment that allows you to run JavaScript on the server-side.

    • Promises are used in asynchronous progra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My suggestion is to don't join this company if they will say we have I agreement for 2 years they don't professional ethics this company won't follow the rules when they don't have work to do they will remove the employees without a reason please be careful and think twice before join this company this is my request

Intern Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2023

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 - Aptitude Test 

Good experience question was tricky but you will able to crack it

Round 3 - One-on-one 

(1 Question)

  • Q1. What is js in java

Interview Preparation Tips

Interview preparation tips for other job seekers - work hard you will get it

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

25 questions of quants and logical and 10 questions of coding, some were debugging some were coding

Round 2 - Technical 

(4 Questions)

  • Q1. Discussion about my resume projects
  • Q2. Return addition and subtraction of two numbers from the same function
  • Ans. 

    A function that returns the addition and subtraction of two numbers.

    • Create a function that takes two numbers as input parameters.

    • Inside the function, calculate the sum of the two numbers and store it in a variable.

    • Calculate the difference of the two numbers and store it in another variable.

    • Return an array of strings containing the sum and difference.

  • Answered by AI
  • Q3. Print leaf nodes of binary tree
  • Ans. 

    Print leaf nodes of binary tree

    • Traverse the tree recursively

    • If node is null, return

    • If node is leaf node, print it

    • Else, recursively traverse left and right subtrees

  • Answered by AI
  • Q4. What is the protocol used for communication over web pages
  • Ans. 

    HTTP is the protocol used for communication over web pages.

    • HTTP stands for Hypertext Transfer Protocol

    • It is the foundation of data communication on the World Wide Web

    • HTTP uses a client-server model where the web browser acts as the client and sends requests to the web server

    • The web server responds with the requested data in the form of HTML, images, videos, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at coding for the aptitude test.
The interview was fairly simple they just want to know how good you are at thinking about solutions of a problem.

Skills evaluated in this interview

Quality Engineer Interview Questions & Answers

user image Swarali Gholave

posted on 6 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Questions about testing - smoke test, sanity test
  • Q2. A few puzzles
Round 1 - Aptitude Test 

Qaunts , logical reasoning and verbal
after that techinal test , test is based on testing of website etc

Round 2 - One-on-one 

(2 Questions)

  • Q1. Logical questions 10 pair of socks in dark room chicken and rabbits in the farm
  • Q2. Make a 3 digit password from the given condition
  • Ans. 

    Create a 3 digit password based on given condition.

    • The condition for the password is not provided.

    • Without the condition, it is impossible to create a password.

    • The password should be strong and not easily guessable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - logical reasiong should be strong and be confident

I applied via Campus Placement and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Section-1
Logical reasoning questions.
Quantative questions.
Section -2
10 questions related to Software testing.
1) identify error
2) test cases for login page.
3) two picture are given we have to find the difference.
4) puzzle.
So on...............................

Round 2 - Technical 

(1 Question)

  • Q1. First technical round. 1) introduction 2) what is software testing. 3) test cases for login page. 4) logical mathmatics puzzle. 5) again one more 6) again same question. 7) thinking approach checked by g...
Round 3 - Technical 

(1 Question)

  • Q1. Second technical. Only asked one question maths questions asked to find cordinate of a rec corner. Only one question asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - If your good with logical reasoning questions you will clear it easily.

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.

Zeus Learning Interview FAQs

How many rounds are there in Zeus Learning interview for freshers?
Zeus Learning interview process for freshers usually has 3-4 rounds. The most common rounds in the Zeus Learning interview process for freshers are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Zeus Learning 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 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 for freshers?

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

  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. pen weight = 2 kg + 1/2 of its own weight -> what is the weight of p...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.

Overall Interview Experience Rating

3.4/5

based on 7 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 20%
2-4 weeks 60%
4-6 weeks 20%
View more

Interview Questions from Similar Companies

Internshala Interview Questions
3.9
 • 61 Interviews
Z X Learning Interview Questions
4.4
 • 44 Interviews
Schoolnet India Interview Questions
3.9
 • 19 Interviews
Six Red Marbles Interview Questions
3.5
 • 13 Interviews
Planet EDU Interview Questions
3.4
 • 12 Interviews
ENTRI SOFTWARE Interview Questions
3.7
 • 10 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
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

4.4
Compare

Schoolnet India

3.9
Compare

Acadecraft

3.3
Compare

Trivium Education Services

3.8
Compare
write
Share an Interview