Upload Button Icon Add office photos

Filter interviews by

The MobileStore Interview Questions and Answers

Updated 23 Jul 2022

The MobileStore Interview Experiences

Popular Designations

3 interviews found

Duty Manager Interview Questions & Answers

user image Anonymous

posted on 23 Jul 2022

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 - HR 

(1 Question)

  • Q1. Tell me about your self? My self Gajendra vitthal belekar I am 35 year old I am stay in kalyan I am 12th passed. I have 11 year work experience in mumbai 4 year experience is Aditya Birla retail Ltd as a ...
Round 3 - Assignment 

Question Salve store inventory and sales product knowledge

Round 4 - Group Discussion 

Which Post are you doing this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary discussion For the your job posting for this company

Duty Manager Interview Questions asked at other Companies

Q1. What is difference between upselling and suggestive selling?
View answer (11)

Duty Manager Interview Questions & Answers

user image Anonymous

posted on 30 Jun 2022

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

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

Aptitude test mins there ar mentioned product knowledge ,how to store manage system manag

Interview Preparation Tips

Interview preparation tips for other job seekers - The mobile store work is verry simple and growth full salary Pay for time to time

Duty Manager Interview Questions asked at other Companies

Q1. What is difference between upselling and suggestive selling?
View answer (11)

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Assignment 
Round 3 - Assignment 
Round 4 - Assignment 
Round 5 - Group Discussion 

Asked about work experience and knowledge about work processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Learning opportunities and teamwork work environment

Deputy Manager Accounts Interview Questions asked at other Companies

Q1. How to know from PAN Card whether this number of company or firm or individual
View answer (2)

Interview questions from similar companies

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

(2 Questions)

  • Q1. About qualification
  • Q2. About sales experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good atmosphere of JOB
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Questions about your experience and work experience in previous organizations and work profile explanation in the present role
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Jul 2023. There were 5 interview rounds.

Round 1 - Write articles 

(4 Questions)

  • Q1. Provide a detail about article
  • Ans. 

    An article is a written piece of content that provides information on a specific topic.

    • Articles can be informative, persuasive, entertaining, or educational.

    • They typically have a headline, introduction, body, and conclusion.

    • Articles can be published in print or online, on websites, blogs, magazines, or newspapers.

  • Answered by AI
  • Q2. Article will provide you the information on topic
  • Q3. Article will help you to get more informative about any kind of topics
  • Q4. Write a article in clear words for better understanding
  • Ans. 

    Writing an article in clear words for better understanding

    • Start with a clear introduction to the topic

    • Use simple language and avoid jargon

    • Organize the content logically with headings and subheadings

    • Provide examples and real-life scenarios to illustrate key points

    • Conclude with a summary or call to action for the reader

  • Answered by AI
Round 2 - Aptitude Test 

Decision making can improve the thinking power

Round 3 - Group Discussion 

A conversation can help to solve the problem

Round 4 - HR 

(1 Question)

  • Q1. Face to face conversations can clear your doubts
Round 5 - Case Study 

Case study check your thinking power and analysis the situation

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learning new things and enhance yourself….

Analyst Interview Questions & Answers

Nepa user image Mansi Tripathi

posted on 17 Jan 2024

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

I was interviewed before Jan 2023.

Round 1 - HR 

(1 Question)

  • Q1. Not much, hr will ask your introduction Previous company experience or if you are fresher so strength weeknes
Round 2 - Assignment 

Some analytical questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face round, checking about process knowledge
  • Q2. How much knowledge about procurement and Market research
  • Ans. 

    The candidate should have a strong knowledge of procurement and market research.

    • The candidate should be familiar with procurement processes and strategies.

    • They should have experience in conducting market research and analyzing data.

    • Knowledge of supplier management and negotiation skills is important.

    • Understanding market trends and competitive analysis is necessary.

    • Proficiency in using procurement software and tools is

  • Answered by AI
  • Q3. Same , checking knowledge about procurement and Market research
Round 4 - One-on-one 

(1 Question)

  • Q1. Same face to face

Interview Preparation Tips

Topics to prepare for Nepa Analyst interview:
  • Market Research
  • Procurement

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The round consisted of 2 coding Problems and it lasted for 60 minutes from 12:00 PM to 1:00 PM on Hackerearth.
Use of other IDEs was prohibited and video was on.

  • Q1. 

    Ninja's Lootcase Problem Statement

    Ninja stumbled upon a locked suitcase while digging in his lawn. The only way to unlock it is by following specific instructions stated on an accompanying paper.

    Explan...

  • Ans. Recursive Approach

    The idea here is that we can say that number of increment operations required are equal to the number of set bits present in the elements of a given array because in one operation you can double all elements of the array. To get an even number you need to get even / 2 i.e. half of the number. So we need Increment operations only when our current element is odd

     and in all other cases, we can divid...

  • Answered Anonymously
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. Brute Force Approach

    The idea here is to do a linear approach which apparently is a brute force way to do this.

    • Visit every element one by one.
    • Check if the current element that you are looking at is the key value that needs to be searched. If the element is found, return the index at which you find it.
    • Once all the elements are visited and you don't find the key-value, return -1.
    Space Complexity: O(1)Explanation:

    O(1)

    &nbs...

  • Answered Anonymously
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The round was conducted on Google Meet with 2 interviewers . They were friendly and helpful.
The timing was 12:00 to 1:00 PM.
Our Video was on .

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered Anonymously
  • Q2. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. Brute Force

    One basic approach is to explore all possible steps which can be climbed with either taking one step or two steps. So at every step, we have two options to climb the stairs either we can climb with one step, or we can climb with two steps. So the number of ways  can be recursively defined as :

    countDistinctWayToClimbStair ( currStep, N ) = countDistinctWayToClimbStair ( currStep+1, N ) + countDistinctWay...
  • Answered Anonymously
Round 3 - Telephonic Call 

Round duration - 50 minutes
Round difficulty - Medium

This was a Behavioral Round. It lasted for 45-50 minutes. It consisted of a discussion on my projects. The interviewer was very impressed by the way I explained my projects. She even appreciated me in between for that. This was followed by normal HR questions .Timing of This round was 4:00 PM to 5:00 PM

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 8 CGPA when ApplyingExpedia Group interview preparation:Topics to prepare for the interview - Dynamic Programming, OOPs, Operating System, DBMS, Greedy Algorithms, Computer NetworksTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : I prepared all topics from my Coding Ninjas Course - Competitive Programming
Tip 2 : I practiced 300+ questions on CodeZen ( Coding Ninjas Platform), LeetCode, InterviewBit
Tip 3 : I took part in contests on CodeForces.
Tip 4 : Apart from Data Structures and Algorithms , I also studied DBMS, OOPs and other course subjects

Application resume tips for other job seekers

Tip 1 : Keep Resume up to date for the role you are applying.
Tip 2 : Mention atleast 1 project or past work experience.
Tip 3 : Try to keep a 1 pager resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Basics. based on resume.
  • Q2. Diff between cookie and sesssion
  • Ans. 

    Cookies are stored on the client-side and sessions are stored on the server-side.

    • Cookies are small text files that are stored on the client-side and can be accessed by the server.

    • Sessions are server-side data storage that can be used to store user-specific data.

    • Cookies can be used to store user preferences, login information, and shopping cart data.

    • Sessions can be used to store user authentication data, user-specific d...

  • Answered by AI
  • Q3. About your projects
  • Q4. Error handling, debugging skills.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Just self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview timing maximum 5 to 10 minutes and ask the question self introduction / gernal knolwledge. Chack the communication skills

The MobileStore Interview FAQs

How many rounds are there in The MobileStore interview?
The MobileStore interview process usually has 3-4 rounds. The most common rounds in the The MobileStore interview process are Assignment, Aptitude Test and Group Discussion.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
PolicyBazaar Interview Questions
3.6
 • 346 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Info Edge Interview Questions
3.9
 • 320 Interviews
Naukri Interview Questions
4.0
 • 186 Interviews
Uber Interview Questions
4.2
 • 168 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
View all

The MobileStore Reviews and Ratings

based on 84 reviews

4.5/5

Rating in categories

4.5

Skill development

4.3

Work-life balance

4.4

Salary

4.2

Job security

4.3

Company culture

4.3

Promotions

4.2

Work satisfaction

Explore 84 Reviews and Ratings
Software Engineer
29 salaries
unlock blur

₹2.9 L/yr - ₹2.9 L/yr

Mobile Technician
10 salaries
unlock blur

₹0.2 L/yr - ₹4 L/yr

Store Manager
10 salaries
unlock blur

₹1.9 L/yr - ₹3.9 L/yr

Associate Store Manager
7 salaries
unlock blur

₹1.7 L/yr - ₹2.7 L/yr

Sales Manager
6 salaries
unlock blur

₹1.1 L/yr - ₹5 L/yr

Explore more salaries
Compare The MobileStore with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Indiamart Intermesh

3.6
Compare

JustDial

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