Upload Button Icon Add office photos

Filter interviews by

REDICO Production Supervisor Interview Questions and Answers

Updated 9 Aug 2022

REDICO Production Supervisor Interview Experiences

1 interview found

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 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. Thank you sir for giving me this Golden opportunity to introduce myself My name is Nitin Kumar I am from Rampur my father is a farmer my mother is a housewife my qualification is MBA completed Frome IFTMU Moradabad in 2020 specialisation operations management and marketing 3 Year Experince Of Field Supervisor in Madhusudan P.v.t Ltd.
  • Answered Anonymously
  • Q2. My greatest weaknesses
  • Ans. “I sometimes have trouble saying ‘no’ and end up overwhelmed by my workload. Earlier in my career, I would take on so many projects that I’d work evenings and weekends. It was stressful. I realised this was counterproductive so I started using workload management tools and setting better expectations for myself and my teammates.”
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - In today's time, people consider it very important to know many things for more jobs option, sometimes it brings benefits and sometimes it also causes huge loss. That is why it is necessary to bring specialization in one field so that if someone needs some help in that field then you can do it. That way you can be the best in that area.

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 REDICO?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2022. 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 

(1 Question)

  • Q1. No.of online gamers in india
Round 3 - Technical 

(1 Question)

  • Q1. How many people can enroll in playing game from particular college
  • Ans. 

    The number of people who can enroll in playing a game from a particular college depends on various factors.

    • The popularity of the game among students

    • The availability of resources to support the game

    • The capacity of the gaming facility

    • The interest and participation level of the college community

    • The rules and regulations set by the college administration

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Resume based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep resume neat and clean.Good case studies are enough for getting hired easily

Production Supervisor Interview Questions Asked at Other Companies

asked in MRF Tyres
Q1. What are the responsibilities of a production supervisor?
asked in Flipkart
Q2. 1) what is java's first name? 2) what is JSE? 3)what is meant by ... read more
Q3. What is solvent,? What is SSR and GLR Reactor? Metribuzine techni ... read more
Q4. If you are given 500 units of raw material and 8 hours to produce ... read more
asked in OPPO
Q5. Are you comfortable with a job that requires standing for 13 hour ... read more

I applied via Company Website and was interviewed in Dec 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions were mostly asked on SQL, Python libraries, Machine learning and Excel, puzzles to solve before interview there was test case study to solve.
  • Q2. What is row number, rank, dense rank? explain partition by, indexing joins, query optimization techniques
  • Ans. 

    Explanation of row number, rank, dense rank, partition by, indexing joins, and query optimization techniques.

    • Row number is a function that assigns a unique number to each row in a result set.

    • Rank is a function that assigns a rank to each row based on the values in a specified column.

    • Dense rank is a function that assigns a rank to each row based on the values in a specified column, but with no gaps in the ranking.

    • Partit...

  • Answered by AI
  • Q3. Real-time examples on data analytics with examples
  • Ans. 

    Real-time examples of data analytics

    • Predictive maintenance in manufacturing

    • Real-time fraud detection in banking

    • Personalized recommendations in e-commerce

    • Real-time traffic analysis for smart cities

    • Real-time health monitoring in medical devices

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Automation, JavaScript, node.js, java

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for Java , .nodejs , JavaScript if applying for Automation.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on react js, also question related to data structure and sorting algorithm
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions were pretty easy like on speed etc

Round 2 - Coding Test 

Coding questions were also easy like patterns code, reverse string just basics

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude only think out of box

Round 2 - One-on-one 

(2 Questions)

  • Q1. Static and final difference
  • Ans. 

    Static variables belong to the class itself, while final variables cannot be changed after initialization.

    • Static variables are shared among all instances of a class

    • Final variables cannot be reassigned once initialized

    • Static variables are initialized only once at the start of the program

    • Final variables must be initialized when declared

  • Answered by AI
  • Q2. Patterns problem
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. Checking english fluency

Interview Preparation Tips

Interview preparation tips for other job seekers - It's good company, friendly HR and interviewer.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 reasoning questions and 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Wap for factorial with recurrsion
  • Ans. 

    Factorial calculation using recursion in a programming language

    • Define a function that takes an integer as input

    • Base case: if input is 0, return 1

    • Recursive case: return input multiplied by factorial of input-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI
  • Q2. Opps and basic core Java questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple logic and maths based questions along with coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on string literals
  • Q2. Array vs arraylist
  • Ans. 

    Arrays are fixed in size, while ArrayLists can dynamically resize. Arrays are faster for accessing elements, while ArrayLists offer more flexibility.

    • Arrays have a fixed size, while ArrayLists can dynamically resize.

    • Arrays are faster for accessing elements, while ArrayLists offer more flexibility in terms of adding, removing, and manipulating elements.

    • Example: String[] namesArray = new String[5]; ArrayList<String>...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. My strength and weaknesses
  • Q2. Past work experiences if any
  • Ans. 

    I have worked as a software developer for 3 years at XYZ company.

    • Developed web applications using Java, Spring, and AngularJS

    • Collaborated with team members to design and implement new features

    • Participated in code reviews and testing processes

    • Resolved technical issues and provided support to end users

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Leetcode medium questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare top leetcode questions

REDICO Interview FAQs

How many rounds are there in REDICO Production Supervisor interview?
REDICO interview process usually has 2 rounds. The most common rounds in the REDICO interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Pole To Win Interview Questions
3.4
 • 60 Interviews
Aristocrat Interview Questions
3.8
 • 48 Interviews
Junglee Games Interview Questions
3.1
 • 34 Interviews
Electronic Arts Interview Questions
4.0
 • 24 Interviews
IDZ Digital Interview Questions
3.8
 • 23 Interviews
Games24x7 Interview Questions
3.5
 • 21 Interviews
View all

REDICO Production Supervisor Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare REDICO with

Pole To Win

3.4
Compare

International Game Technology

3.3
Compare

Ubisoft Entertainment

3.8
Compare

Aristocrat

3.8
Compare
write
Share an Interview