Upload Button Icon Add office photos

Filter interviews by

Tata Group Production Supervisor Interview Questions and Answers

Updated 19 Feb 2022

Tata Group Production Supervisor Interview Experiences

2 interviews found

Production Supervisor Interview Questions & Answers

user image Mohini Nikharkar

posted on 18 Feb 2022

I applied via Approached by Company and was interviewed in Jan 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 tips
Round 2 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. What is your family background?
  • Q3. What are your salary expectations?
  • Q4. What are you strange and weekness

Interview Preparation Tips

Interview preparation tips for other job seekers - Good behaviour in persons and employees

I applied via Walk-in and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Confirmation this job immediately

Production Supervisor Interview Questions Asked at Other Companies

asked in MRF Tyres
Q1. What is the responsibility of 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. Ajio.com Project Description ASN Creation:- Stands for Advance Sh ... read more
Q4. What is solvent,? What is SSR and GLR Reactor? Metribuzine techni ... read more
Q5. If i will give you raw material of 500 number and you have 8 hour ... read more

Interview questions from similar companies

I applied via Approached by Company and was interviewed in Jul 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Interview questions .

Interview Preparation Tips

Topics to prepare for HCLTech Production Supervisor interview:
  • Dyes
  • Sangit
  • Travel Desk
Interview preparation tips for other job seekers - Supervisor.production.warehouse.Retail.I nward.Outward
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a dedicated and experienced Production Engineer with a strong background in manufacturing processes and quality control.

    • Bachelor's degree in Mechanical Engineering

    • 5+ years of experience in production engineering

    • Proficient in CAD software and manufacturing processes

    • Implemented lean manufacturing principles to improve efficiency

    • Led cross-functional teams to troubleshoot production issues

  • Answered by AI
  • Q2. Tell me what you know about Unix and SQL
  • Ans. 

    Unix is a powerful operating system known for its multitasking and multi-user capabilities, while SQL is a language used for managing and querying databases.

    • Unix is an operating system developed in the 1970s known for its command-line interface and flexibility.

    • SQL (Structured Query Language) is a language used to communicate with databases to retrieve, update, and manage data.

    • Unix commands are case-sensitive and often ...

  • Answered by AI

Skills evaluated in this interview

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 May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is mutex and it's syntax?
  • Ans. 

    A mutex is a synchronization primitive used to control access to shared resources in a multi-threaded environment.

    • Mutex is typically used to protect critical sections of code to prevent race conditions.

    • Syntax for using mutex in C++: std::mutex myMutex;

    • To lock a mutex: myMutex.lock();

    • To unlock a mutex: myMutex.unlock();

  • Answered by AI
  • Q2. What is a goroutine and how it's used?
  • Ans. 

    A goroutine is a lightweight thread managed by the Go runtime. It allows concurrent execution of functions.

    • Goroutines are created using the 'go' keyword followed by a function call.

    • They are used for concurrent programming in Go, allowing multiple functions to run simultaneously.

    • Goroutines are more efficient than traditional threads as they have lower memory overhead and can be multiplexed onto fewer OS threads.

    • Example:...

  • Answered by AI
Round 2 - Coding Test 

DSA, Queries and logical coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and attend the interview with confidence. That all.

Skills evaluated in this interview

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

I applied via Walk-in

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(4 Questions)

  • Q1. Self introduction
  • Q2. Work experience
  • Q3. Which department are u working
  • Q4. Timings and salary
Round 3 - One-on-one 

(3 Questions)

  • Q1. Name and experience and quality and checking etc
  • Q2. How can handle ur problem and team work
  • Q3. Times and salary
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 Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Group Discussion 

About current project and roles and resposibilities etc

Round 3 - Technical 

(5 Questions)

  • Q1. SQL COMPLEX QUERIES and PL SQL, CRON JOBS, SERVICE NOW
  • Q2. What are difference between SQL and PL SQL
  • Ans. 

    SQL is a standard language for managing relational databases, while PL/SQL is a procedural language extension for SQL.

    • SQL is a standard language for querying and manipulating data in relational databases.

    • PL/SQL is a procedural language extension for SQL, allowing for more complex programming logic.

    • SQL is used for data manipulation and retrieval, while PL/SQL is used for writing stored procedures and functions.

    • SQL state...

  • Answered by AI
  • Q3. Explain types of joins?
  • Ans. 

    Types of joins are used in databases to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full Join...

  • Answered by AI
  • Q4. Diffence between correlated and non correlated subquary?
  • Ans. 

    Correlated subquery refers to a subquery that is dependent on the outer query, while non-correlated subquery can be executed independently.

    • Correlated subquery is executed for each row processed by the outer query, while non-correlated subquery is executed only once.

    • Correlated subquery is slower in performance compared to non-correlated subquery.

    • Example: SELECT * FROM table1 WHERE column1 = (SELECT MAX(column2) FROM tab

  • Answered by AI
  • Q5. Find departement wise total sal?
  • Ans. 

    To find department wise total salary, sum up the salaries of employees in each department.

    • Group employees by department

    • Calculate total salary for each department

    • Display department wise total salary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try your best......

Skills evaluated in this interview

Production Engineer Interview Questions & Answers

Accenture user image Venkata Mohan Reddy Kambam

posted on 15 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy logical questions

Round 2 - HR 

(3 Questions)

  • Q1. Easy general questions asked
  • Q2. General questions
  • Q3. Strength and weaknesses, about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't be nervous

I applied via Company Website and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What do you like about working there?
  • Q2. What do you dislike about working there?
  • Q3. How many comforts there?
  • Q4. Do you like there working style?

Interview Preparation Tips

Interview preparation tips for other job seekers - Say correct answers to questions in the interview

I applied via Company Website and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Relating submit queries 30 minutes

Round 3 - Group Discussion 

Previous experience & now What you want to tell about your present job how to deal with your group team .. How you manage to complete yogiurs tasks within time bond

Interview Preparation Tips

Topics to prepare for TCS Production Manager interview:
  • Recruitment
Interview preparation tips for other job seekers - Certificates and all original documents to submit and giving office order

Tata Group Interview FAQs

How many rounds are there in Tata Group Production Supervisor interview?
Tata Group interview process usually has 2 rounds. The most common rounds in the Tata Group interview process are Resume Shortlist, Group Discussion and HR.

Tell us how to improve this page.

People are getting interviews through

based on 2 Tata Group interviews
WalkIn
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
View all
Tata Group Production Supervisor Salary
based on 5 salaries
₹1 L/yr - ₹3 L/yr
37% less than the average Production Supervisor Salary in India
View more details

Tata Group Production Supervisor Reviews and Ratings

based on 6 reviews

4.7/5

Rating in categories

4.7

Skill development

4.7

Work-Life balance

4.7

Salary & Benefits

4.7

Job Security

4.9

Company culture

4.7

Promotions/Appraisal

4.7

Work Satisfaction

Explore 6 Reviews and Ratings
Assistant Manager
116 salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Manager
101 salaries
unlock blur

₹8 L/yr - ₹29 L/yr

Software Engineer
83 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Senior Manager
70 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Deputy Manager
47 salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Explore more salaries
Compare Tata Group with

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Mahindra & Mahindra

4.1
Compare

Bharti Enterprises

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview