Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ShopDeck Team. If you also belong to the team, you can get access from here

ShopDeck Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ShopDeck Associate Manager Interview Questions and Answers

Updated 24 Feb 2025

ShopDeck Associate Manager Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. Swddddddddddddddddddddddddddddddd
  • Q2. Dssddddddddddddddddddddddddddddddddddddddddddddd
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test was of 1 hour and basic aptitude questionas

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate RTO from the P/L
  • Ans. 

    RTO can be calculated by dividing the total revenue by the total operating expenses.

    • Calculate total revenue by adding up all sources of income

    • Calculate total operating expenses by adding up all costs incurred in running the business

    • Divide total revenue by total operating expenses to get the RTO

  • Answered by AI
  • Q2. Calculate Cancellation from P/L
  • Ans. 

    Cancellation from P/L refers to the amount deducted from profit or loss due to cancelled transactions or orders.

    • Cancellation from P/L is calculated by subtracting the cancelled amount from the total profit or loss.

    • It is important to accurately track cancellations to understand their impact on financial performance.

    • For example, if a company had $1000 in profit but $200 worth of orders were cancelled, the cancellation fr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just know yourself well

Associate Manager Interview Questions Asked at Other Companies

Q1. How will you calculate tension on the sheet which is being given ... read more
asked in Accenture
Q2. What is Soc7 and other Cobol /Jcl error codes ...
asked in PepsiCo
Q3. In Sponsored Products, how many types of campaigns can you make?
Q4. What will happen if there is leakage inside De Oxo furnace of you ... read more
asked in PepsiCo
Q5. Are you familiar to environment where you have to explain what is ... read more

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Associate Interview Questions & Answers

Amazon user image Arshiya Saba

posted on 10 Sep 2020

I applied via Company Website and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Q & A

Interview Preparation Tips

Interview preparation tips for other job seekers - First-round I had English grammatical questions following that it took me to speech recognition, listen and type or type & email drafting. all you need is a calm mind and peaceful place and your set to go.

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. How much time u work continues
  • Q2. How much salary do u expect

Interview Preparation Tips

Interview preparation tips for other job seekers - Really hard work as associate good for Hrs

I applied via Walk-in and was interviewed before Jun 2021. There were 2 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 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

Interview Questionnaire 

13 Questions

  • Q1. Given a string of parenthesis, write a function if it is balanced
  • Ans. 

    Function to check if a string of parenthesis is balanced

    • Use a stack to keep track of opening parenthesis

    • If a closing parenthesis is encountered, pop from stack and check if it matches

    • If stack is empty and a closing parenthesis is encountered, return False

    • If all parenthesis are matched and stack is empty, return True

  • Answered by AI
  • Q2. Given two linked lists each of which represent a number, write a function that returns a linked list that represents the sum
  • Q3. Find the number of occurrences of words in a paragraph
  • Ans. 

    Count the occurrences of words in a paragraph.

    • Split the paragraph into words using whitespace as a delimiter.

    • Create a dictionary to store the count of each word.

    • Iterate through the words and increment the count in the dictionary.

    • Return the dictionary with the word counts.

  • Answered by AI
  • Q4. Find common elements out of two sorted array?
  • Ans. 

    Find common elements out of two sorted array

    • Use two pointers to traverse both arrays simultaneously

    • Compare elements at each pointer and move the pointer of the smaller element

    • If elements are equal, add to common elements list and move both pointers

    • Stop when either pointer reaches end of array

  • Answered by AI
  • Q5. Convert BST to a Doubly linked list?
  • Ans. 

    Convert a Binary Search Tree to a Doubly Linked List.

    • Create a DLL node class with left, right, and data fields.

    • Traverse the BST in-order and add each node to the DLL.

    • Adjust the left and right pointers of each node to create the DLL.

    • Return the head of the DLL.

  • Answered by AI
  • Q6. Given a binary tree in which the node structure has an additional field called “next” which of pointer to tree node type, fill up this field of each node to point to the next node at the same level (NULL i...
  • Ans. 

    The task is to fill the 'next' field of each node in a binary tree to point to the next node at the same level.

    • Use a level order traversal to process the tree nodes.

    • Maintain a queue to store the nodes at each level.

    • For each node, set its 'next' field to the next node in the queue.

    • If a node is the last node at its level, set its 'next' field to NULL.

  • Answered by AI
  • Q7. Given a parentheses string, determine if it is a valid / legitimate parentheses string. For strings consisting of single parentheses type and those consisting of multiple types
  • Q8. You have a dictionary of words. Given a word, print all anagram are in dictionary . State the data structure to be used to solve this problem
  • Ans. 

    To find anagrams of a given word in a dictionary, use a hash table to store sorted versions of each word as keys and their corresponding original words as values.

    • Create a hash table to store the anagrams

    • Iterate through each word in the dictionary

    • Sort the characters of the word and use it as a key in the hash table

    • If the key already exists, add the word to the list of values for that key

    • Print the list of values for the

  • Answered by AI
  • Q9. You have given 10 files and you have given a string suggest data structure which ll facilitate efficient search of string in the file if string appears more than ones in that case u have to print line numb...
  • Ans. 

    Suggest a data structure for efficient search of a string in 10 files and print line number and file if string appears more than once.

    • Use a hash table to store the file name and line number of each occurrence of the string.

    • Iterate through each file and for each line, check if the string is present and update the hash table accordingly.

    • Print the hash table entries for the string.

  • Answered by AI
  • Q10. Write a program to print a tree in vertical order asked more than one approach to do this problem and modified problem many times
  • Q11. Discussion on my current work, difficulties and challenges faced at work, difficult people I have had to work with, instances when I went out of my way to propose creative solutions to existing problems a...
  • Q12. Why do you think amazon is the right place for you?
  • Ans. 

    Amazon is the right place for me because of its innovative culture, vast resources, and opportunities for growth.

    • Amazon's innovative culture aligns with my passion for pushing boundaries and finding creative solutions.

    • The company's vast resources provide the necessary tools and support to develop and deliver high-quality software.

    • Amazon offers numerous opportunities for growth and career advancement, allowing me to con...

  • Answered by AI
  • Q13. You have given an binary matrix which is sorted row wise and column wise write a program to search a row in the matrix having maximum number of zeroes

Interview Preparation Tips

General Tips: My process started off at one their hiring drives. It was ahiring drivein world trade center in Bangalore. It was a tiresome process that comprised a written round followed by 4rounds of interview.
Skills: Algorithm, data structure
College Name: NA

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

Round: Problem Statement
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

I was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Being a mechanical engineer why do you choose corporate?
  • Ans. 

    As a mechanical engineer, I choose corporate because it offers diverse opportunities, professional growth, and stability.

    • Corporate provides a wide range of industries and sectors to work in, allowing me to explore different areas of mechanical engineering.

    • Working in a corporate environment offers opportunities for professional growth through training programs, mentorship, and exposure to new technologies.

    • Corporate jobs...

  • Answered by AI
  • Q2. Common puzzle questions

Interview Preparation Tips

Round: Group Discussion
Experience: Extempore was the name of the round. It is almost same as GD but instead each candidate should select his own topic and talk for 2 minutes.
Tips: Fluency over language is the main element focused in this round
Duration: 2 hours

Round: Problem Statement
Experience: In this round the candidate should attend online aptitude test for 1 hour. It consists of three parts : Logical part, Reasoning part, Language part. This round is easier one.
Tips: Concentrate more on English grammar

Round: HR Interview
Experience: Shortlisted candidates were called for HR round. For non IT students the main question asked was being a non IT student why do you choose corporate field.
Tips: The answer for this question cannot be provided by myself. Each of you candidates should build a genuine answer for this one

Round: Puzzle Interview
Experience: This is the final round of the whole interview process. In this round the candidates were focused asking only on puzzle questions. 3 to 5 questions were asked in this round depending upon the mentality of HR. 75 % score is required to clear this round
Tips: Just Google puzzle questions for interview, then work on those questions. You will get an idea on how to clear this round

ShopDeck Interview FAQs

How many rounds are there in ShopDeck Associate Manager interview?
ShopDeck interview process usually has 1-2 rounds. The most common rounds in the ShopDeck interview process are Technical and Aptitude Test.
How to prepare for ShopDeck Associate Manager 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 ShopDeck. The most common topics and skills that interviewers at ShopDeck expect are Analytical Skills, Data Interpretation, Digital Marketing, Logistics and Software Configuration Management.
What are the top questions asked in ShopDeck Associate Manager interview?

Some of the top questions asked at the ShopDeck Associate Manager interview -

  1. dssdddddddddddddddddddddddddddddddddddddddddd...read more
  2. swdddddddddddddddddddddddddddd...read more

Tell us how to improve this page.

ShopDeck Associate Manager Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
BigBasket Interview Questions
3.9
 • 358 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Park Plus Interview Questions
2.9
 • 36 Interviews
View all
ShopDeck Associate Manager Salary
based on 7 salaries
₹5.5 L/yr - ₹11 L/yr
45% less than the average Associate Manager Salary in India
View more details
growth manager
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ShopDeck with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.8
Compare

Myntra

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