Upload Button Icon Add office photos

Filter interviews by

Molex Senior Software Engineer Interview Questions and Answers

Updated 4 Oct 2024

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. C questions on oops concepts
  • Q2. Python and ml questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Invert bits of a number
  • Ans. 

    Invert the bits of a given number

    • Use bitwise XOR operator (^) with 1 to flip each bit

    • Repeat the process for all bits in the number

    • Return the inverted number

  • Answered by AI
  • Q2. How do you support backward compatibility whiel designing a system
  • Ans. 

    Backward compatibility can be supported by using versioning, deprecation strategies, and maintaining clear communication with users.

    • Use versioning to clearly distinguish between different versions of the system

    • Implement deprecation strategies to phase out old features gradually

    • Maintain clear communication with users about upcoming changes and provide migration paths

    • Consider using compatibility layers or adapters to bri...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There were 6 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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reserve Binary Search Tree
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions around testing.
Round 2 - Aptitude Test 

Here they asked lots of logical reasoning questions and checked on how you approached different situations

Round 3 - HR 

(1 Question)

  • Q1. Explained package and other details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 easy, 1 medium and 1 hard LC

Round 2 - Technical 

(1 Question)

  • Q1. 1. How will access files in a different server? 2. There are several files all containing similar key value pairs. The values differ in all files. How will you identify all the values that are same and ot...
  • Ans. 

    To access files in a different server, use protocols like FTP or SSH. To identify similar key value pairs in multiple files, compare values using a script or tool.

    • Use FTP or SSH protocols to access files in a different server

    • Write a script or use a tool to compare key value pairs in multiple files

    • Identify values that are the same and different across files

    • Example: Use Python script to read files and compare key value p

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Protect?
  • Q2. Questions on C++
Round 2 - Technical 

(2 Questions)

  • Q1. Day to day tasks
  • Ans. 

    Day to day tasks involve coding, debugging, testing, and collaborating with team members.

    • Writing code for new features or fixing bugs

    • Debugging and troubleshooting issues

    • Testing code to ensure quality and functionality

    • Collaborating with team members on projects

    • Participating in code reviews and providing feedback

  • Answered by AI
  • Q2. Team management questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Bahaviour questions

Molex Interview FAQs

How many rounds are there in Molex Senior Software Engineer interview?
Molex interview process usually has 1 rounds. The most common rounds in the Molex interview process are Coding Test.

Tell us how to improve this page.

Fast track your campus placements

View all
Molex Senior Software Engineer Salary
based on 14 salaries
₹11.1 L/yr - ₹38 L/yr
77% more than the average Senior Software Engineer Salary in India
View more details

Molex Senior Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Product Design Engineer
92 salaries
unlock blur

₹4.5 L/yr - ₹14.1 L/yr

Quality Inspector
70 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Analyst
65 salaries
unlock blur

₹3.7 L/yr - ₹7 L/yr

Trainee Operator
59 salaries
unlock blur

₹1.6 L/yr - ₹2.9 L/yr

Design Engineer
50 salaries
unlock blur

₹3.7 L/yr - ₹13 L/yr

Explore more salaries
Compare Molex with

TE Connectivity

4.2
Compare

Amphenol

4.4
Compare

Delphi Automotive Systems

3.7
Compare

Jabil

4.0
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