Upload Button Icon Add office photos

AJIO

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

AJIO Warehouse Supervisor Interview Questions and Answers

Updated 1 Feb 2024

AJIO Warehouse Supervisor Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

Interview Preparation Tips

Interview preparation tips for other job seekers - I am interested in the job

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Warehouses can be a dangerous place to work in. With so many moving parts, it’s important to understand common warehouse hazards because they can lead to injuries and, in extreme cases, death.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in interacting to hr and share your previous experience of worked with your daily life
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mini company use staffing agencies who fill their vacant positions. That's why working with a recruiter aur head hunter can be quite helpful for your job search. After you Have an initial meeting with them, they contact you to jobs within your purview. Keep in mind that recruiters work on a commission, so make sure you can negotiate a fair wage and benefits plan before accepting a job offer.

I applied via Monster and was interviewed in May 2022. There were 5 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - First they have to notice what we are talking about and then they have to give the right Answer to the Question he is asking
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview time any body don't take any suggestions about your self,experience, self moments .
Shaire about self with HR
Don't afraid with HR
Develop yourself skills more than learn
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed before Oct 2023. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Hindi and English

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Coding questions were comparatively easy. There were three questions.1. Given a string map each character of which to the corresponding digit in a 10 digit mobile phone keypad.2. Don't remember, will add when it comes to my mind.3. Don't remember, will add when it comes to my mind.

Skills: Coding ability, Complete knowledge of working of internet.,
College Name: IIT Bombay

Interview Preparation Tips

Round: Test
Experience: Just 1 online test



Round - I (90 mins)



Online Test conducted @ HackerRank



a. M.C.Qs (Operating System + Aptitude + C Programming Language + Object Oriented Programming)



b. Programming (2 coding questions)The Online Exam started off after a brief Presentation on Amazon.





The MCQs were largely based on Operating System, Data structures and Algorithms, OOP concepts, C language and Aptitude.



Coding Questions



1. Determine whether a Linked List is a palindrome or not.



2. Given few sets of intervals print out the the entire intervals without overlapping , if they overlap then combine them into one.



Eg: Input : (5,7) (1 , 6) (2 ,4) (10 ,14) (8,9)



Output : (1,7) (8,9) (10,14)



Advice: Must solve at least 1 coding question to have a good chance for selection into the next round
Tips: CGPA holds importance because it is basic eligibility criteria for written test and then secondly it increases odds in your favor of your selection more than those with lower CGPA with same interview performance. Prepare a good resume



1. Prioritize your content



2. Put the most important information first (Academic Projects + Internship)



3. Proofread it twice



Advice : Do your best and leave the rest to god

Round: Test
Experience: Round II

2 Coding questions

1. Classic 2-sum problem

2. Given numbers a, b as the seeds for the Fibonacci sequence determine if a third number 'k' is a part of that sequence or not. (Tricky)
Total Questions: 2

Round: Other Interview
Experience: Round III
1. Tell me about yourself
2. Project + Internship Discussion
3. Compress a given string "aabbbccc" to "a2b3c3"
constraint: inplace compression, no extra space to be used
assumption : output size will not exceed input size

Round: Technical Interview
Experience: Round IV
1. Internship Project Discussion (30 mins)
2. Find the largest count of 0s in a row in a matrix of 0s and 1s sorted in an ascending order row-wise.
3. Replicate a tree with random pointers inplace

Round: Other Interview
Experience: Round V
1. Question related to graphs involving concepts of Depth and Height of a tree. (Took a lot of time in solving it ! but finally recognized the pattern)
2. Maximum size square sub-matrix with all 1s
3. Find the median of an infinite series of integers
4. Find the most popular Google searches. (solved it using Trie and Max-Heaps)
2 more questions but can't remember them.Finally after waiting for more than 9 hours the results were announced and I was selected
Tips: Be cool and always ask the interviewer questions at the end of the interview. Explain the interviewer your progress while solving the question so that you both are on the same page + its easier for him to understand. Behavioral and H.R.
Tips
1. Speak clearly and with confidence
2. Always prepare yourself beforehand for some common questions like:
a. Tell me about yourself.
b. Why should I hire you?
c. What are your strengths and weaknesses? (give examples)
d. What is your Dream Company?

General Tips: They judge you purely on the basis of your knowledge and performance during the face to face interviews. The extra curricular activities are not given much consideration as Amazon focuses its recruitment procedure purely on the basis of your Technical Knowledge. Prepare a good resume
1. Prioritize your content
2. Put the most important information first (Academic Projects + Internship)
3. Proofread it twice
College Name: NIT JAIPUR
Contribute & help others!
anonymous
You can choose to be anonymous

AJIO Interview FAQs

How many rounds are there in AJIO Warehouse Supervisor interview?
AJIO interview process usually has 1 rounds. The most common rounds in the AJIO interview process are One-on-one Round.
What are the top questions asked in AJIO Warehouse Supervisor interview?

Some of the top questions asked at the AJIO Warehouse Supervisor interview -

  1. Any questions with warehouse rela...read more
  2. Any questions warehouse retail rela...read more
  3. As you please , I am ag...read more

Recently Viewed

INTERVIEWS

BharatMatrimony.com

No Interviews

LIST OF COMPANIES

DAV Public School

Locations

INTERVIEWS

AJIO

No Interviews

INTERVIEWS

BharatMatrimony.com

No Interviews

REVIEWS

DAV Public School

No Reviews

INTERVIEWS

Propertypistol Realty

No Interviews

INTERVIEWS

Propertypistol Realty

No Interviews

INTERVIEWS

ffreedom app

No Interviews

INTERVIEWS

ffreedom app

No Interviews

INTERVIEWS

ffreedom app

No Interviews

Tell us how to improve this page.

AJIO Warehouse Supervisor Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Zepto Interview Questions
3.5
 • 208 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Blinkit Interview Questions
3.7
 • 181 Interviews
View all
AJIO Warehouse Supervisor Salary
based on 7 salaries
₹2.4 L/yr - ₹3 L/yr
15% less than the average Warehouse Supervisor Salary in India
View more details
Sales Officer
189 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Deputy Manager
97 salaries
unlock blur

₹5.2 L/yr - ₹12.9 L/yr

Territory Sales Manager
82 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Assistant Manager
50 salaries
unlock blur

₹2.6 L/yr - ₹9.5 L/yr

Senior Sales Officer
48 salaries
unlock blur

₹2.5 L/yr - ₹4.1 L/yr

Explore more salaries
Compare AJIO with

Flipkart

4.0
Compare

Myntra

4.0
Compare

Amazon

4.1
Compare

Snapdeal

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