Premium Employer

i

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

10405090xyzabc Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

10405090xyzabc Visual Merchandiser Interview Questions and Answers

Updated 16 Jul 2024

10405090xyzabc Visual Merchandiser Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions. Mental programming. Basic problem solving. Geometric questions.

Round 2 - Coding Test 

Reverse a linked list, Graph related questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic questions related to architecture.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself. Basics should be strong. Take it easy.

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 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 - HR 

(2 Questions)

  • Q1. Why you want to switch the job
  • Q2. What is you expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare on your communication skills. Excel Skills, then about roles and responsibilities. They focus on values what Amazon posses , ownership you have taken , leadership qualities you hold
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Just general knowledge questions will b asked, we have to answer technically

Round 2 - Group Discussion 

Certain questions will be asked, we have to speak to that related questions

Interview Preparation Tips

Topics to prepare for Amazon Merchandiser interview:
  • online advertising
Interview preparation tips for other job seekers - Be confident while answering,

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about yourself?
  • Q2. What is your qualification?Which year did you pass your graduation?Which college?

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi, First of I would like to thank Naukri.com for providing me this opportunity to share my interview experience with Amazon.
This was not my first interview though but I had a very good experience with this interview and I had nothing in my mind about being selected. I was called for the interview and I was one hour early just to get comfortable with the atmosphere,place,people around etc.
When I was ending up with my final year degree I heard a lot of people saying that interviews are just so tough,people get nervous and perform their interviews very weak but this is not the reality. I started my first step into the interview room during my college placement and trust me I was all alone that day no more friends together,no confidence,no hopes just like you all I was going through all this on the day of my interview but while waiting for the interviewers to come I thought why I am geting nervous its just an interview where I have to interact with people and do my best.
To talk about my interview experience its a never ending talk,but still I will share something nice with you all to never ever take interview in a negative way.
Have my tips on repeat mode and your all set for the interview friends. The tips are:
1.You will get nervous as usual,very common feeling we all face but wait..drink some water,chill yourself and say this to yourself that "I am not going to be nervous anymore I will do my best and make sure that I will not disappoint my interviewers and myself".
2.Motivate yourself,be strong and bold while talking.
3.Feel free with your interviewers they are your seniors and experienced people but they are not going to put you down,they are the one's who want to bring the best out of you and present it to them and this depends on you how you showcase yourself to them.
4.Be positive and have a real and chill smile on your face while heading to the interview room.
5.Just be calm there is nothing to be feared of during the interview. Don't assume everything for yourself regarding questions just be real and on point while answering.
6.There is nothing to get nervous because you have to talk about yourself tell the interviewers who you are and what you are. Talking about yourself should never make you nervous it should act as a strength for you.
7.Be cool and talk politely to your interviewers and ask them doubts whenever required ,they will answer to all.
8.Show interest while talking and listening,never try to pretend things as "fake" in life.
9.Be well prepared and never forget that each one is born to shine and so is "You".
10.Last but not the least,be happy don't have any knid of expectations before and after the interview. You must know one thing that if you want to achieve things it takes time so have patience and if its meant to be yours you will get it.
Just be happy and have no expectations.
Never get disappointed with things which you don't get, if something best has to be yours then you need to have patience and for sure you will get it.
That's all I have loads to talk on this but I just want you all to be Happy and have Patience in every moment of your Life.
Your happiness matters the most to you so only get into fields which you are interested and make sure to give all your focus and dedication towards that job. Never complain about your work because it is you who choosed it.
Don't worry even if you fail you will still be called a winner because your always trying and not giving up.
Be the best version of yourself - Listen to your Seniors - Have a Positive and Disciplined Attitude - Be Dedicated - Be Happy - Be Your Own Motivation Always.

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

Interview Questionnaire 

2 Questions

  • Q1. Data struct,algo,
  • Q2. High level data structs and algos

Interview Preparation Tips

Round: Problem Statement
Experience: coding and submission before face to face interview shortlisting
Tips: practice coding ,coding is key to success for SE

Round: Resume Shortlist
Experience: based on marks ,I was called for F2F
Tips: the ppt was to be submitted explaining the approach

Round: Technical Interview
Experience: a lot of brain storming
Tips: understands the nitty gritty of the structs and algos

Round: Technical Interview
Experience: exact code was to be written instead of pseudo code
Tips: get hold of DS,Algos

I appeared for an interview before Sep 2016.

Interview Questionnaire 

5 Questions

  • Q1. Search an element in sorted rotated array.
  • Ans. 

    Search an element in sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle the cases where the target element is at the pivot point or not present in the array.

  • Answered by AI
  • Q2. Kth largest element in an array.
  • Ans. 

    Find the Kth largest element in an array.

    • Sort the array in descending order and return the element at index K-1.

    • Use a max heap to find the Kth largest element efficiently.

    • Implement a quickselect algorithm to find the Kth largest element in linear time.

  • Answered by AI
  • Q3. Reverse a linked list in group of n element.
  • Ans. 

    Reverse a linked list in groups of n elements.

    • Divide the linked list into groups of n elements.

    • Reverse each group individually.

    • Connect the reversed groups to form the final linked list.

    • Handle cases where the number of elements is not a multiple of n.

    • Example: 1->2->3->4->5->6->7->8, n=3 -> 3->2->1->6->5->4->8->7

  • Answered by AI
  • Q4. Median of two sorted array.
  • Ans. 

    Find the median of two sorted arrays.

    • Merge the two arrays into one sorted array and find the median.

    • Use binary search to find the median in O(log(min(m, n))) time complexity.

    • Handle edge cases like empty arrays or arrays of different lengths.

  • Answered by AI
  • Q5. It was a DP question. In a matrix, I have to count number of paths from (0, 0) to (m, n) while crossing through some indexes were not allowed.
  • Ans. 

    Count number of paths from (0, 0) to (m, n) in a matrix while crossing through some indexes were not allowed.

    • Use dynamic programming to solve the problem

    • Create a 2D array to store the number of paths

    • Traverse the matrix and update the array based on the allowed paths

    • Return the value at the last index of the array

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer was mainly focused on problem solving skill.

College Name: KIIT University

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: Platform: Hackerearth
20 MCQs with negative marking, topics included OS, DS-Algo, Networking.
2 Programming Problems.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: 3 DS-Algo problems were asked. Made to written codes on paper.

Round: Technical Interview
Experience: 2 DS-Algo problems were asked. Made to written codes on paper.
Few OS questions were also asked.

Skills: Data Structures and Algorithms, Operating Systems
College Name: IIT (BHU)

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

10405090xyzabc Interview FAQs

How many rounds are there in 10405090xyzabc Visual Merchandiser interview?
10405090xyzabc interview process usually has 3 rounds. The most common rounds in the 10405090xyzabc interview process are Aptitude Test, Coding Test and One-on-one Round.

Tell us how to improve this page.

10405090xyzabc Visual Merchandiser Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Join 10405090xyzabc A rigorous study based on a sample of more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
Delhivery Interview Questions
3.8
 • 477 Interviews
Siemens Interview Questions
4.1
 • 425 Interviews
CARS24 Interview Questions
3.5
 • 337 Interviews
TVS Motor Interview Questions
4.0
 • 320 Interviews
ElasticRun Interview Questions
3.5
 • 252 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
Ather Energy Interview Questions
4.0
 • 56 Interviews
View all
Software Developer
15.6k salaries
unlock blur

₹1.3 L/yr - ₹8.2 L/yr

Software Engineer
10k salaries
unlock blur

₹1 L/yr - ₹5.4 L/yr

Sales Officer
712 salaries
unlock blur

₹5.3 L/yr - ₹5.7 L/yr

Softwaretest Engineer
25 salaries
unlock blur

₹1 L/yr - ₹1.9 L/yr

Test Engineer
12 salaries
unlock blur

₹1.8 L/yr - ₹7.3 L/yr

Explore more salaries
Compare 10405090xyzabc with

Amazon

4.0
Compare

Mahindra & Mahindra

4.1
Compare

Delhivery

3.8
Compare

Siemens

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