Upload Button Icon Add office photos

Fortune Marketing

Compare button icon Compare button icon Compare

Filter interviews by

Fortune Marketing Warehouse Executive Interview Questions and Answers

Updated 12 May 2022

Fortune Marketing Warehouse Executive Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Nov 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 - Case Study 

Observation of materials

Round 3 - HR 

(2 Questions)

  • Q1. Salary package and How to Manage
  • Q2. This company have No HR .

Interview Preparation Tips

Interview preparation tips for other job seekers - This is one of the computer spare parts ,camera ,Speakers , headphones storage warehouse. These materials distrubuting to chennai and others location .

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Fortune Marketing?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Experienced retail professional with strong leadership skills and a proven track record of driving sales and exceeding targets.

    • Over 5 years of experience in retail management

    • Successfully led a team to achieve a 20% increase in sales within one year

    • Skilled in inventory management and merchandising

    • Strong communication and customer service skills

    • Proficient in analyzing sales data and implementing strategies for growth

  • Answered by AI
  • Q2. Previous company experience.
  • Ans. 

    I have 5 years of experience as a Store Manager at XYZ Company, where I successfully implemented inventory management systems and increased sales by 20%.

    • Managed store operations including inventory control, staff management, and customer service

    • Implemented new inventory management system resulting in more accurate stock levels

    • Increased sales by 20% through strategic marketing campaigns and promotions

    • Trained and supervi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have 8 years experience in EPC project Store Executive & 2 years experience in Account Department.

Warehouse Executive Interview Questions Asked at Other Companies

asked in Flipkart
Q1. if you have to make an E way Bill for a shipment, how will you ma ... read more
asked in Flipkart
Q2. What are the major transportation issues in warehousing?
asked in Flipkart
Q3. - what is supply chain? difference between logistics and transpor ... read more
Q4. Tell me about some SAP transaction codes you have used in your pr ... read more
asked in SleepyCat
Q5. Do you have knowledge about E-Commerce order processing?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication with interviewer

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 4 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 

Questions were related to Reasoning, Mathematics

Round 3 - HR 

(3 Questions)

  • Q1. Questions were introduce yourself
  • Q2. Explain your last role and responsibilities
  • Ans. 

    I was responsible for overseeing the operations and strategic direction of the company as the Senior Executive.

    • Managed a team of department heads and provided guidance and support

    • Developed and implemented business strategies to drive growth and profitability

    • Collaborated with key stakeholders to identify and pursue new business opportunities

    • Ensured compliance with regulatory requirements and industry standards

    • Represente...

  • Answered by AI
  • Q3. Salary expectations were asked
Round 4 - One-on-one 

(3 Questions)

  • Q1. Questions were related to the job role how will you manage handle your customers
  • Q2. The interviewer stated a situation to me and asked me to show how will I deal with it.
  • Q3. The interviewer asked me how would I rate myself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Speak truth only. Be presentable and make sure you are audible to them properly. Your voice should be clear and loud.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. About technical
  • Q2. About my home place

I appeared for an interview in Apr 2022.

Round 1 - Technical 

(1 Question)

  • Q1. What is power interface unit,
  • Ans. 

    A power interface unit is a device that connects multiple power sources to a single device or system.

    • It allows for efficient power management and distribution.

    • It can be used in various industries such as telecommunications, data centers, and aviation.

    • Examples include PDUs (power distribution units) and UPSs (uninterruptible power supplies).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am B.TECH in electrical engg from H.B.T.I kanpur. I will be much pleased to work in a creative & challenging requirement I would welcome to opportunity to meet you

Interview Questionnaire 

2 Questions

  • Q1. Based on my cv
  • Q2. Nothing more

Interview Preparation Tips

Interview preparation tips for other job seekers - Time taking to get response
Are these interview questions helpful?

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing: Morning
How was the environment? It happened in the Computer Lab of my institution
All students were assigned a computer and we had to solve questions on hackerrank

  • Q1. 

    Order of People Heights Problem Statement

    Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative int...

  • Ans. 

    The task is to find the actual order of people in a queue based on their heights and the number of taller people in front of them.

    • Iterate through the given arrays and create a list of tuples containing the height and number of taller people for each person.

    • Sort the list of tuples in descending order of height and ascending order of the number of taller people.

    • Create an empty result list and insert each tuple into the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Round was a mix of concepts from OOPS, OS and Problem Solving

  • Q1. 

    Binary Search Tree Value Finder

    Given a Binary Search Tree (BST) and a key value 'X', determine if there exists a node within the BST containing the value 'X'.

    Example:

    Input:
    Consider the tree represe...
  • Ans. 

    The task is to find if a given value is present in a Binary Search Tree (BST).

    • Start from the root node and compare the value with the target value.

    • If the value matches, return true.

    • If the target value is less than the current node value, move to the left child.

    • If the target value is greater than the current node value, move to the right child.

    • Repeat the process until a match is found or a leaf node is reached.

    • If a leaf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms(basic), DBMS, Operating systems, basics of web development.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Try to code the data structures that you have learned to understand things better
Tip 2 : Try to solve the problem even if it is the worst possible solution you think and then try to optimize don't jump to get the
best possible solution
Tip 3 : Discuss things among peers it helps to improve the understanding, even try to teach someone anything new you learn, this is very helpful during the interviews as you will have habit of explaining things

Application resume tips for other job seekers

Tip 1 : Try to be honest in the resume don't write something you don't know, most of the time it backfires.
Tip 2 : Try to make 2 good projects for cv and know about the challenges you can face on the project and think about how you can solve that challenge.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Extempore
Experience: You need to speak on a random topic for 1-2 minutes
Tips: Just speak confidently

Round: Test
Duration: 20 minutes
Total Questions: 20

College Name: D.A.V College Jalandhar

Interview Questionnaire 

3 Questions

  • Q1. Why do you want to join this company?
  • Ans. 

    I am excited to join this company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the emphasis on professional development and growth opportunities for employees.

    • I am excited about the prospect of working with a talented and dedicated team.

    • I believe that this company's values align with my ...

  • Answered by AI
  • Q2. Who is your role model?
  • Ans. 

    My role model is Elon Musk.

    • I admire his innovative thinking and determination to push boundaries.

    • His ability to lead multiple successful companies is inspiring.

    • His focus on sustainable energy and space exploration aligns with my values.

    • I strive to emulate his work ethic and passion for making a positive impact on the world.

  • Answered by AI
  • Q3. What extra-curricular activities have you been involved in?
  • Ans. 

    I have been involved in various extra-curricular activities such as volunteering, sports, and music.

    • Volunteered at local animal shelter

    • Played on intramural basketball team

    • Participated in school choir

    • Attended coding workshops and hackathons

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I consulted my seniors for preparation of my resume. I believe that seniors provide the best possible insights in this regards. I had a standard resume for all the companies.

Round: Test
Experience: I had prepared for the CAT examination which helped me in these written tests. The first round was the written test. The criterion for the written test was to have a CGPA more than 6.0. There was an aptitude test and a technical test. The technical test consisted of programming questions based on C++ and data structures. From data structures they asked a lot questions based on tree traversals and from C++. A large number of questions from pointers and arrays were also asked.
The aptitude test was slightly easier than the CAT examination standards. Majority of the questions were related to data interpretation and some were of based on logical reasoning. The total duration of the both the tests combined was 90 minutes.

Around 50 people appeared for the first round and nearly 13 got shortlisted for the next round.
Tips: For the written tests, particularly the aptitude section, if would really help if you have prepared for the CAT examination. There is a book written by an author named R.S. Agarwal which would prove to be beneficial from the point of view of these written tests.
Duration: 90 minutes

Round: Group Discussion
Experience: I did not prepare much for the GD’s. However I did keep myself abreast with certain latest happenings.There were no group activities conducted in the recruitment process of Century Link.

Round: HR Interview
Experience: For HR interviews I prepared answers to some frequently asked HR questions. I found these questions on the internet. Generally the questions asked in the interviews are related to the profile on offer; for instance in A2Z interview I was asked a lot of questions from power systems since it was a core company and in Century Links I was asked questions from C++ and data structures since they had come to recruit for a software engineering profile.

Round: Technical Interview
Experience: In this interview I was questioned on my C++ and data structure knowledge. They asked me questions on pointers and further asked me to explain the concept of dangling pointers. They did not want me to write down the complete code with proper syntax's of the problems asked to me. They only asked me to write the algorithms of the various problems.
They also asked me some puzzles. Unfortunately, I was not able to solve any of them. During the course of the interview they asked me to specify the reason for my keen interest in joining an IT company.
At the end of first interview some candidates were shortlisted and called for the second round of interview.

Round: Technical Interview
Experience: The second interview was conducted by a senior company official. He enquired about my project and again, like in the first interview, asked me to state the reason for my interest in joining an IT company.This interview round was an elimination round.

Round: HR Interview
Experience: The interview was an HR interview. Candidates who reached till this interview were all selected; basically this interview was like a formality to check the candidate’s fit with the company.

College Name: IIT ROORKEE
Motivation: I had never heard of the company before the recruitment season. I attended the PPT organised by the company, I found the company to be a well reputed/established company and thus applied to it. The profile was open for Electrical, Computer Science, Mechanical and Electronics engineering students.

Fortune Marketing Interview FAQs

How many rounds are there in Fortune Marketing Warehouse Executive interview?
Fortune Marketing interview process usually has 3 rounds. The most common rounds in the Fortune Marketing interview process are Resume Shortlist, Case Study and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Indus Towers Interview Questions
3.7
 • 197 Interviews
Nvidia Interview Questions
3.5
 • 113 Interviews
BT Business Interview Questions
4.0
 • 86 Interviews
Tejas Networks Interview Questions
4.0
 • 80 Interviews
Arista Networks Interview Questions
4.0
 • 48 Interviews
ITI Interview Questions
3.7
 • 35 Interviews
View all
Fortune Marketing Warehouse Executive Salary
based on 4 salaries
₹2.8 L/yr - ₹3.1 L/yr
15% less than the average Warehouse Executive Salary in India
View more details
Business Development Manager
47 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Area Sales Manager
42 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Technical Support Engineer
30 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

Business Development Executive
27 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Service Engineer
24 salaries
unlock blur

₹1.8 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Fortune Marketing with

Indus Towers

3.7
Compare

Sterlite Technologies

3.8
Compare

BT Business

4.0
Compare

Lumen Technologies

4.0
Compare
write
Share an Interview