Upload Button Icon Add office photos

Filter interviews by

Molex SAP MM Associate Interview Questions and Answers

Updated 12 Sep 2022

Molex SAP MM Associate Interview Experiences

1 interview found

I applied via campus placement at PA College of Engineering, Mangalore and was interviewed in Aug 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 - Technical 

(3 Questions)

  • Q1. Related to sap mm basic
  • Q2. Procurement cycle, master data and transaction data
  • Q3. Material master, vendor master, Purchase info record, source list, purchase requisition, purchase order

Interview Preparation Tips

Topics to prepare for Molex SAP MM Associate interview:
  • SAP MM Module
  • Procure to pay
Interview preparation tips for other job seekers - As a fresher,i have ability to learn new things quickly, being productive I will fulfill my work given by respective manager effective on time, I will punctual and dedicated to my work.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

2 problem was given to solve
1) Smallest Negative balance - -----%20America%20-%20Weekly%20Algorithm%20Challenges/Week%2021%20Algorithm%20Challenge/Smallest%20Negative%20Balance.md
2) Find the absolute difference between alpha & beta from the array.
Alpha -An element k in a array occurs k consecutive time
Beta - An element k in an array occurs k consecutive time starting from index k

Sample input
Arr[] = {2,2,2,4,4,4,4,1,2,2]
Output
Alpha - 3
Beta - 1
Absolute difference - 1

Note : consider array index starts with 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the problem statement clearly, prepare well for problem solving & DSA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Linked list middle node, bit manipulation
  • Q2. Wireless questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2023. There were 4 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 - Aptitude Test 

Aptitude and Logical Reasoning - 15MCQ's in 20min
Programming - 10MCQ's in 15min
Technical - 25MCQ's in 30min
Coding - 2qns in 45min

Round 3 - One-on-one 

(3 Questions)

  • Q1. SQL queries - Joins, specific data retrieval
  • Q2. OOP concepts with example code
  • Ans. 

    OOP concepts involve encapsulation, inheritance, and polymorphism in object-oriented programming.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class). Example: class Car { private String color; public void setColor(String c) { color = c; } }

    • Inheritance: creating new classes based on existing classes, inheriting their attributes and methods. Example: class SUV extends Car { privat...

  • Answered by AI
  • Q3. String questions, swapping two numbers
Round 4 - HR 

(1 Question)

  • Q1. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and showcase your strengths effectively.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions about UVm
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(6 Questions)

  • Q1. Technical Questions on Previous company work role. Basic electrical. About PLC Troubleshooting.
  • Q2. On which plc's you work What idea about machines
  • Ans. 

    I have worked on Allen Bradley, Siemens, and Mitsubishi PLCs. I have a good understanding of machines and their operations.

    • I have experience working with Allen Bradley, Siemens, and Mitsubishi PLCs

    • I have a good understanding of how machines operate and their components

    • I am familiar with programming languages such as ladder logic and structured text

    • I have worked on various types of machines including conveyor systems, p

  • Answered by AI
  • Q3. About sensor,contractor, wiring
  • Q4. What is know about TPM
  • Ans. 

    TPM stands for Total Productive Maintenance, a system that aims to maximize equipment effectiveness and minimize downtime.

    • TPM involves all employees in the maintenance process

    • It focuses on proactive maintenance to prevent breakdowns

    • TPM aims to improve overall equipment effectiveness (OEE)

    • It includes regular cleaning, inspection, and lubrication of equipment

    • TPM also involves training employees on maintenance and safety

  • Answered by AI
  • Q5. About maintenance documentation
  • Q6. How you handle manpower

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, and realistic. Add point in resume which you really work on it.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System verilog constraints

Interview Preparation Tips

Interview preparation tips for other job seekers - need strong technical skill

I applied via Referral and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Manual Testing,
  • Q2.  Regression, AdHoc, UI, Functional Testing, Integration Testing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all Manual Testing related questions. Interview is very simple and easy.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Running stream median, priority queue, binary search, dp basic

Round 2 - Technical 

(2 Questions)

  • Q1. Cycle in linked list
  • Ans. 

    A cycle in a linked list occurs when a node points to a previous node in the list, creating a loop.

    • Check for a cycle using two pointers - one moving one node at a time and the other moving two nodes at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • Example: 1 -> 2 -> 3 -> 4 -> 2 (points back to 2), this linked list has a cycle.

  • Answered by AI
  • Q2. Construct a tree from pre and post.
  • Ans. 

    Construct a tree from pre and post order traversal arrays.

    • Start by creating a root node using the first element of the pre-order array.

    • Find the index of the root node in the post-order array to divide it into left and right subtrees.

    • Recursively build the left and right subtrees.

    • Repeat the process for each subtree until the tree is fully constructed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - striver sde sheet

Skills evaluated in this interview

I applied via campus placement at Gandhi Institute of Technology and Management, Visakhapatnam and was interviewed in Jun 2022. 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 - Aptitude Test 

Arithmetic Aptitude
Number Series
Profit and Loss
Data Interpretation

Round 3 - Technical 

(2 Questions)

  • Q1. Most of the questions are from JAVA, SQl and Python Situational based questions Hobbies
  • Q2. Garbage Collection in Java SQL queries
  • Ans. 

    Garbage collection in Java is an automatic process of freeing up memory by removing unused objects.

    • Java uses a mark-and-sweep algorithm for garbage collection

    • Objects that are no longer referenced by any part of the program are eligible for garbage collection

    • System.gc() can be used to suggest garbage collection, but it is not guaranteed to run immediately

    • Garbage collection can cause performance issues if not managed pro

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Micron Technology Associate Software Engineer interview:
  • Java
  • SQL
  • Python
Interview preparation tips for other job seekers - Tough aptitude round
And
Coding Round
Should have good skills in Java and SQl.

Skills evaluated in this interview

Molex Interview FAQs

How many rounds are there in Molex SAP MM Associate interview?
Molex interview process usually has 2 rounds. The most common rounds in the Molex interview process are Resume Shortlist and Technical.
What are the top questions asked in Molex SAP MM Associate interview?

Some of the top questions asked at the Molex SAP MM Associate interview -

  1. Material master, vendor master, Purchase info record, source list, purchase req...read more
  2. Procurement cycle, master data and transaction d...read more
  3. Related to sap mm ba...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Molex interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 267 Interviews
Intel Interview Questions
4.3
 • 217 Interviews
Flex Interview Questions
4.0
 • 175 Interviews
Texas Instruments Interview Questions
4.2
 • 122 Interviews
TE Connectivity Interview Questions
4.2
 • 77 Interviews
View all

Fast track your campus placements

View all
Product Design Engineer
89 salaries
unlock blur

₹4.5 L/yr - ₹11.6 L/yr

Quality Inspector
75 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Analyst
62 salaries
unlock blur

₹3.7 L/yr - ₹7 L/yr

Trainee Operator
57 salaries
unlock blur

₹1.6 L/yr - ₹2.8 L/yr

Team Lead
47 salaries
unlock blur

₹8 L/yr - ₹22.5 L/yr

Explore more salaries
Compare Molex with

TE Connectivity

4.2
Compare

Amphenol

4.4
Compare

Delphi Automotive Systems

3.7
Compare

Jabil

3.9
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