Upload Button Icon Add office photos

Filter interviews by

John Cockerill Apprentice Trainee Interview Questions and Answers

Updated 14 Feb 2024

John Cockerill Apprentice Trainee Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are different manufacturing processes.
  • Ans. 

    Different manufacturing processes include casting, machining, forming, and welding.

    • Casting: involves pouring molten material into a mold to create a solid object, such as metal casting.

    • Machining: uses cutting tools to remove material from a workpiece, like milling or turning.

    • Forming: reshapes materials through processes like bending, rolling, or extrusion.

    • Welding: joins materials together by melting and fusing them, li

  • Answered by AI
  • Q2. What is meaning of product quality.
  • Ans. 

    Product quality refers to the characteristics and attributes of a product that determine its ability to meet customer expectations and requirements.

    • Product quality is the measure of how well a product performs its intended function.

    • It includes factors such as reliability, durability, performance, safety, and customer satisfaction.

    • High product quality leads to customer loyalty, positive brand reputation, and increased s...

  • Answered by AI

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Project description
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for project management

    • Implemented user authentication and authorization

    • Integrated with third-party tools like JIRA and GitHub

    • Provided real-time project progress tracking

    • Generated reports for project analysis

  • Answered by AI
  • Q2. Python based problems
  • Q3. Embedded scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank about your self ration about your skills and maintain 2 way communication during the interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Salary expectation .
  • Q2. Why should I hire you?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Mendix Advanced questions.
  • Q2. Everything which you mentioned in your resume.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Bad 

(2 Questions)

  • Q1. General questions
  • Q2. Related to work profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Lala chhap company, pls think before too late.

I applied via Company Website and was interviewed before Apr 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 - Technical 

(1 Question)

  • Q1. Electrical fundamental and AC thoery
Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. Why should we hire you?
  • Q4. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak truth about privious job
Clear basic concepts of electrical
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Start to handover process in a Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be well prepared in terms of all types of processes and sequences in construction. Situation based problem solving abilities and good communication skills.

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding questions,basic python questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very arrogant
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. 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 - Technical 

(1 Question)

  • Q1. 1. Diff. Type Flow Meter Concept 2. Temperature Compensation in thermocouple 3. SPI modules 4. Level Mesurment
Round 3 - HR 

(1 Question)

  • Q1. Personal Questions about salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics about things worked should be clear and prepared before interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

(1 Question)

  • Q1. Structure related questions, Finishing work, Basic knowledge of Fire and Plumbing work, Quality codes, Glazing work, ETC..
Round 3 - HR 

(1 Question)

  • Q1. Pay rolls and offer letter

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be confidence with your answer and have Site work knowledge.

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30. minutes
Round difficulty - Easy

It was in the evening, question were moderate

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the night around 9:00 PM.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find all pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the pairs based on the first element and then the second element.

    • Return the list of pairs as the final result.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteria(good in aptitude)Vertiv Co interview preparation:Topics to prepare for the interview - Array, oops, algorithms, data structures, stackTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new things daily 
Tip 2 : Practice questions 
Tip 3 : Keep one question in mind to solve.

Application resume tips for other job seekers

Tip 1 : Description about your skills 
Tip 2 : Project details

Final outcome of the interviewSelected

Skills evaluated in this interview

John Cockerill Interview FAQs

How many rounds are there in John Cockerill Apprentice Trainee interview?
John Cockerill interview process usually has 1 rounds. The most common rounds in the John Cockerill interview process are One-on-one Round.
What are the top questions asked in John Cockerill Apprentice Trainee interview?

Some of the top questions asked at the John Cockerill Apprentice Trainee interview -

  1. What are different manufacturing process...read more
  2. What is meaning of product quali...read more

Tell us how to improve this page.

John Cockerill Apprentice Trainee Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Lodha Group Interview Questions
4.0
 • 129 Interviews
WSP Interview Questions
4.2
 • 95 Interviews
Vertiv Interview Questions
3.9
 • 51 Interviews
Assystem Interview Questions
3.6
 • 45 Interviews
Brigade Group Interview Questions
4.1
 • 34 Interviews
View all
Deputy Manager
47 salaries
unlock blur

₹5.2 L/yr - ₹12.5 L/yr

Manager
42 salaries
unlock blur

₹6.4 L/yr - ₹18.2 L/yr

Assistant Manager
34 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Asst. Chief Manager
30 salaries
unlock blur

₹10.2 L/yr - ₹24 L/yr

Assistant Manager Design
17 salaries
unlock blur

₹3.5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare John Cockerill with

Lodha Group

4.0
Compare

Aarvee Associates

3.9
Compare

Vertiv

3.9
Compare

Future Supply Chain Solutions

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview