Upload Button Icon Add office photos

Filter interviews by

ShopKirana Outbound Supervisor Interview Questions and Answers

Updated 1 Nov 2023

ShopKirana Outbound Supervisor Interview Experiences

2 interviews found

I applied via Naukri.com and was interviewed in Mar 2022. There were 3 interview rounds.

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

Normal

Round 3 - One-on-one 

(2 Questions)

  • Q1. Online, boh knowledge and transport
  • Q2. Online and back of house question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare e commerce knowledge for this company
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 - One-on-one 

(2 Questions)

  • Q1. Inventory knowledge realated questions
  • Q2. How many experience
Round 3 - Aptitude Test 

One week training then you

Round 4 - HR 

(1 Question)

  • Q1. Hr asq about working knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - You have e commerce knowledge the you select

Outbound Supervisor Interview Questions Asked at Other Companies

Interview questions from similar companies

I applied via Approached by Company and was interviewed before May 2021. 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 

Mathematical thinking Analytical Thinking

Round 3 - HR 

(1 Question)

  • Q1. Career intro, Mathematics

Interview Preparation Tips

Topics to prepare for Vyapar Sales Executive interview:
  • Aptitude
  • Basic mathematics
  • Accounting
Interview preparation tips for other job seekers - Organisation is good learnings will be there

I appeared for an interview before Nov 2019.

Interview Questionnaire 

1 Question

  • Q1. SQL questions based on joins and previous projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round pure technical
2nd round based on previous projects experienc
3rd HR round salary and all.

I applied via Recruitment Consultant and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How many clients you deal with at a time

I applied via LinkedIn and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Advanced SQL, Python, ML and NLP.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the basics

Interview Questionnaire 

1 Question

  • Q1. System Design and Ds and algo questions

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Very simple easy questions. Interviewer herself looked very immature and not knowlegeable.
  • Q2. Sdlc, Basic steps

Interview Preparation Tips

Interview preparation tips for other job seekers - Conduct interviews by some exp. person who has enough knowledge.

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

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

ShopKirana Interview FAQs

How many rounds are there in ShopKirana Outbound Supervisor interview?
ShopKirana interview process usually has 3-4 rounds. The most common rounds in the ShopKirana interview process are Resume Shortlist, One-on-one Round and Aptitude Test.
What are the top questions asked in ShopKirana Outbound Supervisor interview?

Some of the top questions asked at the ShopKirana Outbound Supervisor interview -

  1. Online and back of house quest...read more
  2. online, boh knowledge and transp...read more
  3. Inventory knowledge realated questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.4
 • 82 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 57 Interviews
Vyapar Interview Questions
3.4
 • 54 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
Fleetx.io Interview Questions
3.7
 • 28 Interviews
Twilio Interview Questions
3.9
 • 23 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all
ShopKirana Outbound Supervisor Salary
based on 7 salaries
₹2.4 L/yr - ₹3.6 L/yr
7% more than the average Outbound Supervisor Salary in India
View more details

ShopKirana Outbound Supervisor Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

4.6

Skill development

5.0

Work-life balance

3.1

Salary

4.3

Job security

4.6

Company culture

2.7

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Sales Executive
54 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Team Lead
47 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Sales Associate
27 salaries
unlock blur

₹2.1 L/yr - ₹3.1 L/yr

Supervisor
24 salaries
unlock blur

₹2 L/yr - ₹3.1 L/yr

Inventory Supervisor
22 salaries
unlock blur

₹2 L/yr - ₹3.8 L/yr

Explore more salaries
Compare ShopKirana with

Celebal Technologies

3.0
Compare

NoBrokerHOOD

3.1
Compare

Innovaccer

3.4
Compare

Vyapar

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