Upload Button Icon Add office photos

JCB

Compare button icon Compare button icon Compare

Filter interviews by

JCB Supplier Quality Assurance Engineer Interview Questions and Answers

Updated 12 Sep 2024

JCB Supplier Quality Assurance Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about fabrication process,
  • Ans. 

    Fabrication process involves transforming raw materials into finished products through various manufacturing techniques.

    • Fabrication process can include cutting, bending, welding, machining, and assembling of materials.

    • Examples of fabrication processes include sheet metal fabrication, CNC machining, and 3D printing.

    • Quality control measures such as inspections and testing are crucial in ensuring the final product meets s...

  • Answered by AI
  • Q2. Types of welding, defects of welding
  • Ans. 

    Types of welding include MIG, TIG, stick, and flux-cored. Common defects in welding include porosity, lack of fusion, and cracks.

    • Types of welding: MIG, TIG, stick, flux-cored

    • Defects in welding: porosity, lack of fusion, cracks

    • Porosity: caused by gas entrapment during welding process

    • Lack of fusion: incomplete bonding between weld metal and base metal

    • Cracks: can occur due to high stress or improper welding technique

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Company's rules and policies
  • Ans. 

    The company's rules and policies are designed to ensure quality, compliance, and efficiency in all aspects of operations.

    • Company rules and policies are in place to maintain quality standards and ensure compliance with regulations.

    • Employees are expected to adhere to these rules and policies to promote efficiency and consistency in work processes.

    • Examples of company rules may include guidelines for product testing, suppl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - When you are going to interview, do preparation of fabrication process, types of welding, drawing reading etc

Top trending discussions

View All
Interview Tips & Stories
1w
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 JCB?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good.

Supplier Quality Assurance Engineer Interview Questions Asked at Other Companies

Q1. How do you improve the worst performing supplier in a supplier ra ... read more
Q2. What do you know about the quality assurance process?
Q3. How do you perform supplier performance evaluations, audits, and ... read more
Q4. How do you control and overcome a legacy quality system?
Q5. Types of gates and two stroke and four stroke different
Round 1 - Coding Test 

Live coding on my technology

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops, solid principles, mvc vs mvvm vs mvp
Round 3 - HR 

(1 Question)

  • Q1. About ur self and recent achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and present what u know..
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 tips
Round 2 - HR 

(1 Question)

  • Q1. About my self & Exper to Fit role
Round 3 - Technical 

(1 Question)

  • Q1. Client Round Final & HR from HTC
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 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 - Technical 

(1 Question)

  • Q1. Technical discussion
Round 3 - HR 

(1 Question)

  • Q1. Shift, behaviour,terms conditions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Azure Data Engineer-related questions.
Round 2 - HR 

(1 Question)

  • Q1. Hobbies, problem solving idealogy discussion.

Interview Preparation Tips

Topics to prepare for HTC Global Services Senior Engineer interview:
  • Azure
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About my previous projects
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Transaction in Java
  • Ans. 

    A transaction in Java is a unit of work that is performed as a single, indivisible operation.

    • Transactions ensure data integrity by either committing all changes or rolling them back if an error occurs.

    • Transactions are typically used in database operations to ensure consistency.

    • In Java, transactions are commonly implemented using frameworks like Spring's @Transactional annotation.

  • Answered by AI
  • Q2. GitHub code push

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the features of Java8
  • Ans. 

    Java 8 introduced significant features like lambdas, streams, and new date/time APIs, enhancing productivity and code readability.

    • Lambda Expressions: Enable functional programming by allowing you to pass behavior as a parameter. Example: (a, b) -> a + b.

    • Streams API: Facilitates processing sequences of elements, enabling operations like filter, map, and reduce. Example: list.stream().filter(x -> x > 10).collect...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. How to create employee table by using java
  • Ans. 

    Creating an employee table in Java involves using JDBC to connect to a database and execute SQL commands.

    • JDBC Connection: Use JDBC to establish a connection to your database. Example: `Connection conn = DriverManager.getConnection(url, user, password);`

    • SQL Statement: Write an SQL statement to create the employee table. Example: `String sql = "CREATE TABLE Employee (id INT PRIMARY KEY, name VARCHAR(100), age INT, depart...

  • Answered by AI
  • Q2. Spring boot snyk fixes
  • Q3. Ci CD pipelines

JCB Interview FAQs

How many rounds are there in JCB Supplier Quality Assurance Engineer interview?
JCB interview process usually has 2 rounds. The most common rounds in the JCB interview process are Technical and HR.
What are the top questions asked in JCB Supplier Quality Assurance Engineer interview?

Some of the top questions asked at the JCB Supplier Quality Assurance Engineer interview -

  1. Tell me about fabrication proce...read more
  2. Types of welding, defects of weld...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

IntouchCX Interview Questions
2.8
 • 211 Interviews
BCG Interview Questions
3.7
 • 203 Interviews
Globant Interview Questions
3.7
 • 181 Interviews
Daikin Interview Questions
4.1
 • 169 Interviews
Landmark Group Interview Questions
3.9
 • 157 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
Lowe's Interview Questions
4.1
 • 136 Interviews
Nielsen Interview Questions
3.7
 • 132 Interviews
View all
JCB Supplier Quality Assurance Engineer Salary
based on 19 salaries
₹2.4 L/yr - ₹5.8 L/yr
24% less than the average Supplier Quality Assurance Engineer Salary in India
View more details

JCB Supplier Quality Assurance Engineer Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.2

Skill development

5.0

Work-life balance

4.2

Salary

3.8

Job security

5.0

Company culture

4.2

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Assistant Manager
749 salaries
unlock blur

₹5.2 L/yr - ₹15 L/yr

Deputy Manager
518 salaries
unlock blur

₹7.6 L/yr - ₹20.4 L/yr

Senior Engineer
413 salaries
unlock blur

₹4.1 L/yr - ₹9.8 L/yr

Quality Engineer
278 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Manager
237 salaries
unlock blur

₹11.3 L/yr - ₹28.8 L/yr

Explore more salaries
Compare JCB with

Landmark Group

3.9
Compare

McDonald's

4.0
Compare

IntouchCX

2.8
Compare

Bureau Veritas

3.8
Compare
write
Share an Interview