Upload Button Icon Add office photos

Filter interviews by

Zopsmart Technology Scrum Master Interview Questions and Answers

Updated 17 Jun 2024

Zopsmart Technology Scrum Master Interview Experiences

3 interviews found

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Agile, scrum, daily routine
  • Q2. Questions related to fabunachi

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 20 May 2024

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

(1 Question)

  • Q1. Introduce yourself

Scrum Master Interview Questions Asked at Other Companies

asked in Capgemini
Q1. If a developer who was working on a critical user story suddenly ... read more
asked in Capgemini
Q2. Why are these three called as pillars of scrum ? How are they rel ... read more
asked in Capgemini
Q3. What is the difference between velocity and capacity?
asked in Capgemini
Q4. what is poker ? and why do you use fibonacci series to give story ... read more
asked in Capgemini
Q5. What are the pillars of Scrum ?

I applied via Naukri.com and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Agile scrum Technical insights
  • Q2. Team Managemnt Conflict Managemnt

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure what are you deliverables because the what they interview and what role you play would be different and CTO sucks

Interview questions from similar companies

Round 1 - Coding Test 

Two coding question
1st question moderate
2nd Difficult
All test cases passed for 1st question
Partial test Cases passed for 2nd question

Round 2 - One-on-one 

(1 Question)

  • Q1. Mid-level tree question.
Round 3 - One-on-one 

(1 Question)

  • Q1. LLD question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - it was a nice experience. Practice LLD, data structures, and algorithms.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions were related to tree traversal (level-order) and strings (anagram)

I appeared for an interview in Jun 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 minutes
Round difficulty - Hard

The test link had 3 days expiry so I could attempt test anytime. It was conducted on doselect.com

  • Q1. 

    Equilibrium Indices in a Sequence

    You are given an array/list named 'SEQUENCE', which consists of 'N' integers. The task is to identify all equilibrium indices in this sequence.

    Explanation:

    An equilibr...

  • Ans. 

    The task is to find the equilibrium indices of a given sequence, where the sum of elements at lower indices is equal to the sum of elements at higher indices.

    • Iterate through the sequence and calculate the total sum of all elements

    • Initialize a left sum and right sum as 0

    • For each index, update the left sum and right sum and check if they are equal

    • If they are equal, add the index to the equilibrium indices

    • Return the equil

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Video interview round wherein I was asked to wrote code for the problem statements given by the interviewer. The problems were mainly focused on advanced JS concepts like asynchonous progamming, timers, closures, and data structure problems around arrays, sets, linked list etc.

  • Q1. 

    Rearrange Linked List Problem Statement

    Given a singly linked list in the form 'L1' -> 'L2' -> 'L3' -> ... 'Ln', your task is to rearrange the nodes to the form 'L1' -> 'Ln' -> 'L2' -> '...

  • Ans. 

    The task is to rearrange the nodes of a singly linked list in a specific order without altering the data of the nodes.

    • Iterate through the linked list to find the middle node using the slow and fast pointer technique.

    • Reverse the second half of the linked list.

    • Merge the first and reversed second half of the linked list alternatively to get the desired order.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was the last round with HR wherein they judged cultural fit and there was discussion on things like my expectations v/s their expectations etc.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNoSpringworks interview preparation:Topics to prepare for the interview - Javascript/Typescript, NodeJS, MongoDB, SQL, Angular, Data Structures and Algorithms, Object Oriented Programming ConceptsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Get well versed with the fundamentals of Javascript including advanced concepts like promises, async/await, generators, higher order functions, closures, currying etc.
Tip 2 : Do some projects on MERN Stack because a lot of projects here use some or all of those technologies
Tip 3 : Do prepare for behavioral/cultural-fit questions especially around how you'll handle various stituations during work or how will you manage productivity while working remotely.

Application resume tips for other job seekers

Tip 1 : Having projects on MERN stack will give you advantage
Tip 2 : Do mention if you have any AWS experience.
Tip 3 : Mention all your internships/past experiences. Keep them crisp and talk about what you did and it's impact/outcome.
Tip 4 : Any experience/exposure to blockchain will definitely give brownie points.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. RCA - number of iphone users
  • Ans. 

    To determine the number of iPhone users, conduct Root Cause Analysis (RCA) by analyzing sales data, market research, and user surveys.

    • Analyze sales data from Apple to determine the number of iPhones sold

    • Conduct market research to estimate market share of iPhones compared to other smartphones

    • Survey iPhone users to gather data on usage patterns and demographics

  • Answered by AI
  • Q2. Guesstimate questions based on netflix's decreasing users

I appeared for an interview in Nov 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Easy

This round mainly consisted of some questions on advanced JS topics like Execution Context, Callback queue, Micro task queue, Promises, etc.

Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This round was more technical compared to the previous one. The interviewer was a senior developer. If questions were not answered, answers would be given/explained.

  • Q1. What are some aggregate operators in MongoDB?
  • Ans. 

    Aggregate operators in MongoDB are used for data aggregation and manipulation.

    • Some aggregate operators in MongoDB include $sum, $avg, $min, $max, $push, $addToSet, $first, $last, $project, $match, $group, $sort, $limit, $skip.

    • Example: db.collection.aggregate([{$group: {_id: '$field', total: {$sum: '$value'}}}])

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This round was mainly to assess my experience level, roles, and responsibilities from my previous company. Salary negotiations also happened here.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaSpringworks interview preparation:Topics to prepare for the interview - Databases, Asynchronous programming, Promises, JavaScript, DS.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Learn about Execution Context, Promises in JS
Tip 2 : Learn about indices, Difference between different databases
Tip 3 : Error handling and Exceptions

Application resume tips for other job seekers

Tip 1 : Put in what you’ve done and not what you could have done.
Tip 2 : Keep it short and simple

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Low level Design Problem in Java

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures - Graph Problem DFS
Round 3 - Coding Test 

System Design with few details

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

(1 Question)

  • Q1. They asked to design a database table

Zopsmart Technology Interview FAQs

How many rounds are there in Zopsmart Technology Scrum Master interview?
Zopsmart Technology interview process usually has 1 rounds. The most common rounds in the Zopsmart Technology interview process are One-on-one Round.
How to prepare for Zopsmart Technology Scrum Master 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 Zopsmart Technology. The most common topics and skills that interviewers at Zopsmart Technology expect are Agile, Analytical Skills, Monitoring, Scrum and Scrum Master.
What are the top questions asked in Zopsmart Technology Scrum Master interview?

Some of the top questions asked at the Zopsmart Technology Scrum Master interview -

  1. Team Managemnt Conflict Manage...read more
  2. Agile scrum Technical insig...read more
  3. Agile, scrum, daily rout...read more

Tell us how to improve this page.

Zopsmart Technology Scrum Master Interview Process

based on 2 interviews

1 Interview rounds

  • One-on-one Round
View more

Interview Questions from Similar Companies

Vyapar Interview Questions
3.4
 • 54 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
Twilio Interview Questions
3.9
 • 23 Interviews
View all
Zopsmart Technology Scrum Master Salary
based on 17 salaries
₹8.4 L/yr - ₹12 L/yr
38% less than the average Scrum Master Salary in India
View more details

Zopsmart Technology Scrum Master Reviews and Ratings

based on 4 reviews

3.9/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.0

Salary

4.4

Job security

4.4

Company culture

3.5

Promotions

4.3

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
85 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
83 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Software Developer
67 salaries
unlock blur

₹8.5 L/yr - ₹15 L/yr

Senior Software Engineer
52 salaries
unlock blur

₹11.7 L/yr - ₹33 L/yr

Software Development Engineer II
48 salaries
unlock blur

₹11 L/yr - ₹18 L/yr

Explore more salaries
Compare Zopsmart Technology with

Vyapar

3.5
Compare

Nowfloats Technologies

3.2
Compare

ShopKirana

3.8
Compare

Classplus

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