Upload Button Icon Add office photos

Redington

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Redington Warehouse Assistant Interview Questions and Answers

Updated 8 Aug 2024

Redington Warehouse Assistant Interview Experiences

1 interview found

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

I applied via AmbitionBox and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about self.
  • Ans. 

    I am a hardworking and detail-oriented individual with experience in warehouse operations.

    • Experienced in inventory management and order fulfillment

    • Strong attention to detail to ensure accuracy in tasks

    • Ability to work efficiently in a fast-paced environment

    • Good communication skills for coordinating with team members

    • Physically fit for lifting and moving heavy items

  • Answered by AI
  • Q2. Why am hire you?
  • Ans. 

    I am a hardworking and detail-oriented individual with experience in warehouse operations.

    • I have previous experience working in a warehouse setting, where I successfully managed inventory and shipments.

    • I am highly organized and pay close attention to detail, ensuring accuracy in all tasks.

    • I am a team player and can effectively communicate with colleagues to ensure smooth operations in the warehouse.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Interview questions from similar companies

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 experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

He is asking Tell me about your self and my graduation previous work experience location..

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

Reasoning and English Comprehension

Round 3 - HR 

(1 Question)

  • Q1. Speak on a topic
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary expectation

I applied via Company Website and was interviewed in Sep 2022. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Self introduction and
  • Ans. My name is vignesh iam basically from villupuram
  • Answered Anonymously
  • Q2. Your questions company

Interview Preparation Tips

Topics to prepare for BT Business Supervisor interview:
  • HR Generalist Activities
Interview preparation tips for other job seekers - Company reputation , decipline, good name ,hard work never fail so hark work
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Global company make me feel so good looking and I will be there for me
  • Q2. I am very company india number one company
  • Q3. I am very honest with company
  • Q4. I am very happy new year to all friends are you from now

Interview Preparation Tips

Interview preparation tips for other job seekers - Good jop
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion on past experiance
Round 3 - HR 

(1 Question)

  • Q1. Discussion on Past CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real on your past experience say what is actual

Interview Questionnaire 

1 Question

  • Q1. Different between 1550 and 1310 wave length
  • Ans. 

    1550 and 1310 wavelengths are both used in optical fiber communication, but have different properties.

    • 1550 wavelength has lower attenuation and dispersion compared to 1310 wavelength

    • 1550 wavelength is used for long-haul communication while 1310 wavelength is used for short-haul communication

    • 1550 wavelength is less affected by fiber non-linearities compared to 1310 wavelength

    • 1310 wavelength is cheaper to produce compare

  • Answered by AI

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on OOPS and OS mainly.

  • Q1. What are Little Endian and Big Endian in the context of computer architecture?
  • Ans. 

    Little Endian and Big Endian refer to the order in which bytes are stored in computer memory.

    • Little Endian stores the least significant byte first, while Big Endian stores the most significant byte first.

    • Little Endian is commonly used in x86 architecture, while Big Endian is used in architectures like SPARC and PowerPC.

    • Endianness can affect data transmission between systems with different byte orders.

  • Answered by AI
  • Q2. Write a program to determine if your system is little-endian or big-endian.
  • Ans. 

    Program to determine system's endianness

    • Check the endianness by storing a multi-byte integer and checking the byte order

    • Use bitwise operations to extract the least significant byte

    • If the least significant byte is at the lowest memory address, it's little-endian

    • If the least significant byte is at the highest memory address, it's big-endian

  • Answered by AI
  • Q3. What is the volatile keyword in programming?
  • Ans. 

    The volatile keyword in programming is used to indicate that a variable's value can be changed unexpectedly.

    • Volatile keyword is used in multithreaded programming to prevent compiler optimizations on variables that can be changed by other threads.

    • It tells the compiler not to cache the variable's value in a register, ensuring that every access is made to the variable's memory location.

    • Commonly used in embedded systems pr...

  • Answered by AI
  • Q4. What is the use of a function pointer in C?
  • Ans. 

    Function pointers in C are used to store the address of functions, allowing for dynamic function calls and callbacks.

    • Function pointers can be used to implement callbacks in event-driven programming.

    • They can be used to switch between different functions at runtime.

    • Function pointers are commonly used in implementing data structures like function pointers in an array of function pointers.

    • Example: void (*funcPtr)(int) = &a

  • Answered by AI
  • Q5. Design a data structure to implement multi-threading.
  • Ans. 

    Design a data structure for multi-threading

    • Use a thread-safe queue to manage tasks for each thread

    • Implement a lock or semaphore to control access to shared resources

    • Consider using condition variables for synchronization

    • Use atomic operations for shared variables to prevent race conditions

  • Answered by AI
  • Q6. What does a kernel do?
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between software and hardware.

    • Manages system resources such as CPU, memory, and I/O devices

    • Provides a bridge between software applications and hardware components

    • Handles tasks such as process scheduling, memory management, and device drivers

    • Controls communication between hardware and software layers

  • Answered by AI
  • Q7. What is a storage class in programming?
  • Ans. 

    A storage class in programming defines the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are created when a function is called and destroyed when the function ends.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Tips: It will be good to have a GPA of 8 and above

Round: Test
Experience: Questions were easy it were good at C and basic maths. Questions were distributed on all aspects of computer science such as Operating Systems, Few Output Question, Data Structures and Application layer networking . In basic aptitude most questions fall under Probability, distance and time and few others.
Duration: 60 minutes
Total Questions: 50

Skills: Communication, Basic Coding, Math Puzzle
College Name: NIT Surathkal
Contribute & help others!
anonymous
You can choose to be anonymous

Redington Interview FAQs

How many rounds are there in Redington Warehouse Assistant interview?
Redington interview process usually has 1 rounds. The most common rounds in the Redington interview process are One-on-one Round.
How to prepare for Redington Warehouse Assistant 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 Redington. The most common topics and skills that interviewers at Redington expect are Excel, Inventory, Logistics, Shipment and Support Services.

Recently Viewed

INTERVIEWS

Redington

No Interviews

INTERVIEWS

Weatherford

No Interviews

SALARIES

Zebra Technologies

INTERVIEWS

CDW

No Interviews

SALARIES

Persistent Systems

SALARIES

Reliance Industries

INTERVIEWS

Weatherford

No Interviews

INTERVIEWS

Weatherford

No Interviews

SALARIES

Hitachi

INTERVIEWS

Halliburton

No Interviews

Tell us how to improve this page.

Redington Warehouse Assistant Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 372 Interviews
Indus Towers Interview Questions
3.8
 • 176 Interviews
Nvidia Interview Questions
3.7
 • 103 Interviews
BT Business Interview Questions
4.0
 • 79 Interviews
Tejas Networks Interview Questions
4.0
 • 75 Interviews
ITI Interview Questions
3.6
 • 34 Interviews
View all
Redington Warehouse Assistant Salary
based on 4 salaries
₹1.1 L/yr - ₹2 L/yr
40% less than the average Warehouse Assistant Salary in India
View more details

Redington Warehouse Assistant Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Area Sales Manager
269 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Marketing Coordinator
127 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Processing Executive
116 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
100 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Commercial Executive
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Redington with

Ingram Micro

3.8
Compare

Tech Data Corporation

4.6
Compare

SYNNEX Corporation

1.0
Compare

Brightstar Corp

4.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent