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

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

Interview questions from similar companies

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,

Executive Interview Questions Asked at Other Companies

Q1. How would you approach method development for a known drug produc ... read more
Q2. What is peak purity and how is it calculated in HPLC?
Q3. Procedure of export and import.China as country and as manufactur ... read more
Q4. How to use excell and basics of advance excellent
asked in Delhivery
Q5. How many orders were dispatched in your previous organizations?
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 Naukri.com and was interviewed before Sep 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 - One-on-one 

(1 Question)

  • Q1. Tell me more about yourself
  • Ans. 

    Experienced executive with a proven track record in leading successful teams and driving business growth.

    • Over 10 years of executive leadership experience

    • Strong strategic planning and decision-making skills

    • Expertise in driving operational efficiency and profitability

    • Proven ability to build and motivate high-performing teams

    • Track record of delivering results and exceeding targets

    • Experience in leading cross-functional ini...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. What do you know about the company?
  • Ans. 

    The company is a leading technology firm specializing in software development and IT solutions.

    • The company was founded in 2005 and has since grown to become a global player in the technology industry.

    • They offer a wide range of services including software development, cloud computing, cybersecurity, and data analytics.

    • Some of their notable clients include Fortune 500 companies and government organizations.

    • The company ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Employment friendly company
Good growth and learning
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. Boxing and unboxing in. C#
  • Ans. 

    Boxing and unboxing in C# are processes for converting value types to reference types and vice versa.

    • Boxing: Converting a value type (e.g., int) to an object type.

    • Example: int num = 123; object obj = num; // Boxing

    • Unboxing: Converting an object type back to a value type.

    • Example: int num2 = (int)obj; // Unboxing

    • Boxing involves memory allocation on the heap, while unboxing retrieves the value from the heap.

  • Answered by AI
  • Q2. .net framework and .net core
  • Q3. Simple program to print star pattern in c#
  • Ans. 

    A simple program to print star pattern in C#

    • Use nested loops to print the desired pattern

    • Start with a small pattern and then expand it to more complex ones

    • Experiment with different loop structures to create various patterns

  • Answered by AI
  • Q4. String and string builder Mutable and immutable Heap and stack memory which is used when
  • Q5. Difference in stored procedure and functions ACiD properties, normalization
  • Ans. 

    Stored procedures and functions differ in their usage and capabilities. ACID properties ensure data integrity, normalization reduces redundancy.

    • Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can have input and output parameters, while functions can only return a single value.

    • ACID properties (Atomic...

  • Answered by AI
  • Q6. What are solid principles explain with example and also tell where you used them in previous project
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code.

    • Single Responsibility Principle: A class should have only one reason to change. For example, a class that handles user authentication should not also be responsible for sending emails.

    • Open/Closed Principle: Software entities should be open for extension but closed for modification. For example, using interfaces to allow for new i...

  • Answered by AI
  • Q7. OOP related questions What are 4 pillars of OOP? Difference between encapsulation and abstraction. Difference in overloading and overriding.
  • Q8. Questions on Interitance Given 3 classes A is parent of B and B is parent of C How do we call methods of B and A from C Which method will be called incase of same method in A B and C And some more I don'...
Round 2 - HR 

(2 Questions)

  • Q1. Questions on salary expectations
  • Q2. And informal discussion about work and team

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Computer deta entry repeated any more question and insurance releted loan department releted
  • Q2. Manejment releted any more question
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. You should be aware of the process SPC, MSA, POKE YOKE, KAIZEN,
Round 2 - HR 

(1 Question)

  • Q1. Gernal introduction must prepared
  • Ans. 

    A Quality Executive ensures high standards in products/services, focusing on continuous improvement and compliance with regulations.

    • Experience in quality management systems (e.g., ISO 9001) to ensure compliance and efficiency.

    • Proven track record of leading quality improvement initiatives, such as reducing defects by 30% in a manufacturing process.

    • Strong analytical skills to assess data and identify trends, leading to i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do some preparation before the interview.
Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They can ask you how you convince your boss if your boss is wrong, can ask wrk challenges , achievements, last project, how you handle presser

Interview Preparation Tips

Interview preparation tips for other job seekers - person must prepare or modify yourself based on employer requirement or JD
do proper homework before interview think what what question can come out and asked by interviewer, interviewer will ask thing from your role and responsibilities

you must be a good listener, with sweet smile and, do not answer fast take a pause while replaying be clear

be attractive, positive, smart and honest asn if you dont know something say it clear you dont know but say if whn it comes to practical you can come up with solution
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

OOPS , Data Structures

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

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 Application Management, Accounts Payable, Accounts Receivable, Bank Reconciliation and Civil.

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

4-6 weeks 100%
View more

Interview Questions from Similar Companies

Knorr-Bremse Interview Questions
3.8
 • 59 Interviews
Bajaj Motors Interview Questions
3.9
 • 56 Interviews
McCain Foods Interview Questions
4.0
 • 35 Interviews
Sulzer Interview Questions
3.9
 • 32 Interviews
Alpla Interview Questions
3.9
 • 30 Interviews
Buhler Interview Questions
3.9
 • 29 Interviews
Mettler-Toledo Interview Questions
3.7
 • 26 Interviews
Konecranes Interview Questions
4.0
 • 23 Interviews
View all
Johnson Matthey Executive Salary
based on 5 salaries
₹4.3 L/yr - ₹11.7 L/yr
59% more than the average Executive Salary in India
View more details
Assistant Manager
97 salaries
unlock blur

₹9.8 L/yr - ₹18 L/yr

Deputy Manager
30 salaries
unlock blur

₹9.8 L/yr - ₹21.4 L/yr

Senior Officer
21 salaries
unlock blur

₹7.8 L/yr - ₹14.1 L/yr

Technician
17 salaries
unlock blur

₹2 L/yr - ₹8.5 L/yr

Security Officer
16 salaries
unlock blur

₹2.2 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Johnson Matthey with

Bajaj Motors

3.9
Compare

Knorr-Bremse

3.8
Compare

Delta Electronics

4.0
Compare

Gestamp

3.7
Compare
write
Share an Interview