Upload Button Icon Add office photos

Filter interviews by

Johnson Matthey Executive Interview Questions and Answers

Updated 2 Sep 2023

Johnson Matthey Executive Interview Experiences

1 interview found

Executive Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2023

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 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:
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 

(1 Question)

  • Q1. Basic technical question
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic knowledge and Tell me something about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to fear about interview

Interview questions from similar companies

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

I applied via Referral and was interviewed before Jan 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 

(3 Questions)

  • Q1. Drwa basic design of mould
  • Ans. 

    Designing a mould involves creating a blueprint for the shape and size of the object to be produced.

    • Determine the shape and size of the object to be produced

    • Choose the appropriate material for the mould

    • Create a blueprint or 3D model of the mould

    • Consider factors such as draft angles, parting lines, and gating

    • Test the mould for functionality and make necessary adjustments

  • Answered by AI
  • Q2. Plastic material and temperature
  • Q3. Mould parts and martial details
Round 3 - HR 

(2 Questions)

  • Q1. Why you want job change
  • Ans. 

    I am seeking a job change to further develop my skills and take on new challenges.

    • Seeking new opportunities for growth and advancement

    • Desire to work in a different industry or sector

    • Wish to explore a different company culture

    • Looking for a more challenging role

    • Want to expand my professional network

  • Answered by AI
  • Q2. What is your current ctc

Interview Preparation Tips

Interview preparation tips for other job seekers - Bring all documents for interview,dress well,
Come with formal dress

I applied via Recruitment Consulltant

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 - Group Discussion 

Working on my experience with technical issues

Round 3 - Group Discussion 
Pro Tip by AmbitionBox:
Be a good listener. GDs are not just about speaking. Your listening skills will give you a lot of points to counter and speak when your turn comes.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - 5s, kizen, 6sigma, process synchronization ,ipptag,
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between abstract and interface. Create an object for an abstract class.
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and non-abstract methods along with abstract methods.

    • Interfaces can only have abstract methods and constants, no constructors or fields.

    • An abstract class can provide a default implementation for some methods, while an interface cannot.

    • An abstract class can be exten...

  • Answered by AI
  • Q2. Difference between findelement and findelements
  • Ans. 

    findelement returns the first matching element on the page, findelements returns a list of all matching elements.

    • findelement returns a single WebElement, findelements returns a list of WebElements

    • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

    • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

  • Answered by AI
  • Q3. Test scenarios for facebook login page
  • Ans. 

    Test scenarios for Facebook login page

    • Verify login with valid credentials

    • Verify login with invalid credentials

    • Verify login with empty username and password fields

    • Verify login with incorrect password

    • Verify login with incorrect username

    • Verify login with special characters in username and password

    • Verify login with locked account

    • Verify login with expired password

    • Verify login with CAPS LOCK on

    • Verify login with multiple logi

  • Answered by AI
  • Q4. Difference between regression and integration testing
  • Ans. 

    Regression testing ensures that new code changes do not adversely affect existing functionality, while integration testing checks if different modules work together correctly.

    • Regression testing focuses on retesting existing functionality after code changes

    • Integration testing checks if different modules work together as expected

    • Regression testing is usually automated to save time and effort

    • Integration testing may involv...

  • Answered by AI
  • Q5. Program to remove white spaces from string without any inbuilt function and explain
  • Ans. 

    Program to remove white spaces from string without any inbuilt function

    • Iterate through each character in the string

    • Create a new string and add non-white space characters to it

    • Return the new string without white spaces

  • Answered by AI
  • Q6. How to validate the checkbox is checked
  • Ans. 

    To validate if a checkbox is checked, use Selenium WebDriver to locate the checkbox element and then use the isSelected() method to check if it is checked.

    • Locate the checkbox element using Selenium WebDriver

    • Use the isSelected() method to check if the checkbox is checked

    • Assert the result to validate if the checkbox is checked

  • Answered by AI
  • Q7. How you can validate the button present on the UI is actually blue in colour
  • Ans. 

    To validate the button color, inspect the CSS properties or use a color picker tool.

    • Inspect the CSS properties of the button element to check the color value

    • Use a color picker tool to sample the color of the button on the UI

    • Compare the sampled color with the expected blue color value

  • Answered by AI
  • Q8. How you can validate the data with any value is present in the table in selenium
  • Ans. 

    You can validate data presence in a table using Selenium by locating the table element and then searching for the desired value.

    • Locate the table element using Selenium WebDriver

    • Iterate through the rows and columns of the table to find the desired value

    • Use assertions to validate if the value is present in the table

  • Answered by AI
Round 2 - Behavioral 

(5 Questions)

  • Q1. Can we overload/override function having same signatures but have different return types in java!
  • Ans. 

    No, in Java you cannot overload/override functions based on return types.

    • In Java, method overloading is based on the number and type of parameters, not the return type.

    • Method overriding is based on the method signature, which includes the method name, parameter types, and order, but not the return type.

    • Attempting to overload or override a method based solely on return type will result in a compilation error.

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    PUT is used to update or replace an entire resource, while PATCH is used to update or modify a part of a resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • PATCH is not necessarily idempotent, as multiple identical requests may have different effects.

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the sp...

  • Answered by AI
  • Q3. How you can print numbers from one to 1000 without using any loop
  • Ans. 

    Use recursion to print numbers from 1 to 1000 without using loops

    • Create a recursive function that takes a number as input

    • Print the number and call the function with the next number until 1000 is reached

  • Answered by AI
  • Q4. About the project you've worked on
  • Q5. What are the majors have in this you have faced while performing testinge

Skills evaluated in this interview

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 before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. How handle Customers in service
  • Ans. 

    Handle customers in service by listening actively, empathizing, resolving issues promptly, and following up.

    • Listen actively to understand customer needs and concerns

    • Empathize with customers to show understanding and build rapport

    • Resolve issues promptly and efficiently to ensure customer satisfaction

    • Follow up with customers to ensure their concerns have been addressed and they are satisfied

    • Provide personalized service t

  • Answered by AI
  • Q2. Product knowledge
  • Q3. How to familiar with your co workers
  • Ans. 

    Building relationships with coworkers through communication, collaboration, and mutual respect.

    • Initiate conversations and show genuine interest in your coworkers' lives and work

    • Participate in team-building activities and social events

    • Offer help and support when needed

    • Listen actively and communicate openly and honestly

    • Respect diversity and different perspectives

    • Celebrate achievements and milestones together

  • Answered by AI
  • Q4. Regarding educational questions
  • Q5. Are able to travel inside india
  • Ans. 

    Yes, I am able to travel inside India for work purposes.

    • I have traveled extensively within India for business meetings and conferences.

    • I am familiar with the major cities and transportation options in India.

    • I am willing to travel as required for this senior executive role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer should be specific
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Gernal Introduction
  • Q2. Why do you want to change
Round 2 - Technical 

(3 Questions)

  • Q1. About current job profile
  • Q2. Low cost automation
  • Q3. Lean manufacturing tools
Round 3 - One-on-one 

(1 Question)

  • Q1. About salary expectations and negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and confident
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Working SAP knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SAP
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about our my self
  • Q2. Tell me about previous company experience

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Preparation Tips

Round: Test
Experience: Time was more than sufficient. Most of the questions were conceptual and very easy without major calculations.
Tips: Subjects:
Heat and mass transfer, Gas turbine engine, Design of machine elements, strength of material etc.
Duration: 30 minutes
Total Questions: 30

Round: Technical Interview
Experience: The interview was divided into 5 steps.
(i) Introduction considering your resume.(i.e. your projects, achievements, field of interest, motivation etc.)
(ii) Logical understanding: Various statistical graphs (e.g. normal distribution curve) were given. I was given a design failure problem related to it. Using graph I had to show a probable solution region in the graph.
(iii) Picture understanding: I was shown a picture and had to identify the system.(It was a front propeller system of conventional aircraft. It was containing a propeller, gear box, blade angle shifting mechanism, its lubrication system, various valves etc.)
(iv) Few topics (around 10) were written on a paper. I had to choose one topic and had to explain it in detail with examples.(one of the topic: Design optimization)
(v) Chit-chat: They will ask you about their company. You can also ask your doubts.(So be prepared with at least 2-3 questions which you can ask them.)
Tips: Your course projects, BTP & MTP carries a HUUUUUGE weight. Try to attach each project with a motivation behind their execution. They don't consider depth of research but they do like it if you have a proper reason behind selecting it. and most important of all Keep your head cool.

Round: HR Interview
Experience: I introduced myself. Then they asked few common HR questions. One of the guy from interview panel got more excited about one of my project. So he kept asking questions related to it. I answered all of them.

Skills: Finite Element Modeling - FEM, Strength Of Materials, Logical Thinking
College Name: IIT Madras

Engineer Interview Questions & Answers

Rolls-Royce user image GIRAJAVAGOL UDAY MAHADEV me15m077

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself. What is difference between plane stress and plane stress condition? Draw S-N curve (High cycle and low cycle). How fracture is related to high and low cycle fatigue? What technical ...
  • Ans. 

    The interview covered topics on stress and fatigue, including plane stress, S-N curve, and technical problems with a product.

    • Plane stress refers to a state where stress is only present in two dimensions, while plane stress condition is when stress is present in all three dimensions.

    • S-N curve is a graph that shows the relationship between stress and the number of cycles to failure.

    • High cycle fatigue occurs when a materi...

  • Answered by AI
  • Q2. Present the sheet you have drawn. Tell me about yourself and how you are important to us? What problems Rolls-Royce is facing? What changes will you make if you join Rolls-Royce? Who are the customers of R...
  • Ans. 

    Rolls-Royce is a British multinational engineering company that designs, manufactures, and services power systems for aviation and other industries.

    • Rolls-Royce is facing financial challenges due to the COVID-19 pandemic.

    • As an engineer, I can bring innovative solutions to improve efficiency and reduce costs.

    • Rolls-Royce customers include airlines, defense organizations, and energy companies.

    • I recently faced a challenge o...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: We submitted our resume through online portal. Shortlist criteria is mostly CGPA.
Tips: Keep good CGPA (above 8.5 out of 10).

Round: Test
Experience: 30 technical questions for 30 minutes. All questions are MCQ type. Technical test for thermal and design was common. Both theoretical and numerical questions were asked.

18 data interpretation questions for 20 minutes. 6 charts (graphs, tables, bar charts) were given. 18 statements were given. We have to identify which statement is related to which chart and using that data , identify statement is true or false.
Tips: Technical Test was easy , but remember formulae for numerical. Questions were related to Thermal and Design. No manufacturing questions was asked.
Data interpretation was too easy. No need to prepare.
Duration: 50 minutes
Total Questions: 48

Round: Activity
Experience: Every candidate was given a A2 size sheet and marker. In 20 min, you have to present any technical topic on sheet. You can write or draw.
Tips: Be prepared for one technical topic and what specifics you have to write. Also last year (Batch before me) ,they asked to present yourself as product on sheet. Prepare for that also.

Round: Behavioural Interview
Experience: Two person will test your communication , presentation and behavioral skill in this interview. Presentation skill is checked by how you present the sheet. Also , a lot of company related questions will be asked.
Tips: Present the sheet as your presenting a technical paper in conference. Keep detail information about Rolls-Royce.

Round: Technical Interview
Experience: Technical Interview had 5 steps.
Step 1: General Technical questions
Step 2: Discussion about your technical work like projects.
Step 3: Give solution to Practical problem
Step 4: Take any topic from given topics and explain it.
Step 5: Technical discussion about Rolls-Royce engine technology

Tips: Be prepared for tough interview. Study your projects deeply. Listen to practical problem and then answer. Keep updated about Rolls-Royce technology.

Skills: Technical Knowledge(ML, Presentation Skills
College Name: IIT Madras

Johnson Matthey Interview FAQs

How many rounds are there in Johnson Matthey Executive interview?
Johnson Matthey interview process usually has 3 rounds. The most common rounds in the Johnson Matthey interview process are One-on-one Round and Resume Shortlist.
How to prepare for Johnson Matthey Executive 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 Johnson Matthey. The most common topics and skills that interviewers at Johnson Matthey expect are Accounts Payable, Accounts Receivable, Application Management, Bank Reconciliation and Civil.

Tell us how to improve this page.

Johnson Matthey Executive Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Knorr-Bremse Interview Questions
3.9
 • 55 Interviews
Bajaj Motors Interview Questions
3.9
 • 50 Interviews
McCain Foods Interview Questions
4.0
 • 31 Interviews
Sulzer Interview Questions
3.9
 • 27 Interviews
Rolls-Royce Interview Questions
3.8
 • 26 Interviews
Buhler Interview Questions
3.9
 • 26 Interviews
Alpla Interview Questions
3.9
 • 25 Interviews
Phoenix Contact Interview Questions
4.1
 • 23 Interviews
View all
Johnson Matthey Executive Salary
based on 6 salaries
₹4.2 L/yr - ₹10.3 L/yr
47% more than the average Executive Salary in India
View more details
Assistant Manager
92 salaries
unlock blur

₹6.3 L/yr - ₹16 L/yr

Deputy Manager
29 salaries
unlock blur

₹9.8 L/yr - ₹21.4 L/yr

Junior Production Officer
22 salaries
unlock blur

₹2.1 L/yr - ₹4.1 L/yr

Production Officer
21 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Senior Engineer
19 salaries
unlock blur

₹4.8 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Johnson Matthey with

Bajaj Motors

3.9
Compare

Knorr-Bremse

3.9
Compare

Delta Electronics

4.0
Compare

Gestamp

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