Upload Button Icon Add office photos

Molex

Compare button icon Compare button icon Compare

Filter interviews by

Molex Operator Interview Questions and Answers for Experienced

Updated 7 Aug 2023

Molex Operator Interview Experiences for Experienced

1 interview found

Operator Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2023

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

I applied via Approached by Company and was interviewed before Aug 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. About study's before company
Round 3 - HR 

(1 Question)

  • Q1. About experience & salary expectations

Interview questions from similar companies

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

(1 Question)

  • Q1. Describe virtual functions
  • Ans. 

    Virtual functions allow a function to be overridden in a derived class, enabling polymorphic behavior.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are meant to be overridden in derived classes to provide specific implementations.

    • When a virtual function is called through a base class pointer or reference, the actual function to be executed is determined at runtime based on the object's ...

  • Answered by AI

I appeared for an interview in Jul 2022.

Round 1 - One-on-one 

(1 Question)

  • Q1. Use of volatile const ?
  • Ans. 

    Volatile const is used to indicate that a variable's value may change outside the program's control.

    • Volatile const is used for hardware registers that can change their value without the program's knowledge.

    • It is also used for variables that are accessed by multiple threads.

    • Example: volatile const int* const ptr = (int*)0x1234; // pointer to a hardware register

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - precise answers are expected in micron interviews, sometimes they expect you to write the code logic in the way they only know. it is impossible to others to meet the expectations

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. References vs pointers
  • Ans. 

    References and pointers are both used to refer to memory locations, but references cannot be null and cannot be reseated.

    • Pointers can be null or uninitialized

    • Pointers can be reseated to point to a different memory location

    • References are automatically dereferenced

    • References cannot be used with arrays

    • Pointers can be used with arrays

  • Answered by AI
  • Q2. Where is it necessary to use references
  • Ans. 

    References are necessary when passing large objects to functions or when returning objects from functions.

    • When passing large objects to functions

    • When returning objects from functions

    • When working with complex data structures

    • When implementing operator overloading

    • When working with polymorphism

  • Answered by AI
  • Q3. Const pointers
  • Q4. Where to declare const pointers
  • Ans. 

    Const pointers should be declared in the same scope as the variable they point to.

    • Declaring const pointers in the same scope as the variable they point to ensures that the pointer cannot be used to modify the variable.

    • If the pointer is only used within a function, it should be declared within that function.

    • If the pointer is used across multiple functions, it should be declared in a header file or at the top of the sour...

  • Answered by AI
  • Q5. Copy constructor with pointers
  • Ans. 

    Copy constructor with pointers creates a new object by copying the values of the existing object's pointers.

    • Copy constructor is used to create a new object from an existing object.

    • Pointers in the new object point to the same memory locations as the original object.

    • Deep copy should be used to avoid shallow copy issues.

  • Answered by AI
  • Q6. New vs malloc
  • Ans. 

    new and malloc are used for dynamic memory allocation in C++ and C respectively.

    • new is an operator in C++ while malloc is a function in C.

    • new automatically calls the constructor while malloc does not.

    • new returns a pointer to the object while malloc returns a void pointer.

    • new throws an exception if allocation fails while malloc returns NULL.

    • new can be overloaded while malloc cannot be.

    • new and delete are used together wh

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well OOPS fundamentals

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General behavioral and situational questions about team members
Round 2 - Technical 

(1 Question)

  • Q1. Identify if the number is positive, negative or zero
  • Ans. 

    Identify if a number is positive, negative, or zero

    • Check if the number is greater than 0 to determine if it is positive

    • Check if the number is less than 0 to determine if it is negative

    • If the number is neither greater nor less than 0, it is zero

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Aug 2022. 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 - Coding Test 

Problem would be given to solve

Round 3 - Technical 

(2 Questions)

  • Q1. Questions will be based on their the first round
  • Q2. Questions will be from their projects
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

60 mins general aptitude test

Round 1 - Coding Test 

C,C++,SQL,Java,Python

Round 2 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. What are your salary expectations?
  • Q3. Why should we hire you?
  • Q4. Tell me about yourself.
Round 3 - Case Study 

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to financial problems,I want to join in a job.Please join me in your job

Interview Questionnaire 

5 Questions

  • Q1. Operating systems
  • Q2. CPU architecture
  • Q3. Convolution of 2 signals
  • Ans. 

    Convolution is a mathematical operation that combines two functions to produce a third function.

    • Convolution is used in signal processing to analyze and filter signals.

    • It involves multiplying two signals and integrating the product over time.

    • The resulting signal represents the amount of overlap between the two original signals at each point in time.

    • Convolution can be performed using a variety of algorithms, including th

  • Answered by AI
  • Q4. Previous experience related
  • Q5. C programming concepts and simple implementation.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a URL-shortening service
  • Ans. 

    Design a URL-shortening service

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL

    • Consider implementing custom short links for users

    • Track analytics for shortened URLs

  • Answered by AI

Skills evaluated in this interview

Molex Interview FAQs

How many rounds are there in Molex Operator interview for experienced candidates?
Molex interview process for experienced candidates usually has 3 rounds. The most common rounds in the Molex interview process for experienced candidates are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Molex Operator Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 258 Interviews
Intel Interview Questions
4.2
 • 217 Interviews
Texas Instruments Interview Questions
4.0
 • 120 Interviews
Synopsys Interview Questions
3.9
 • 89 Interviews
Lam Research Interview Questions
3.7
 • 46 Interviews
View all

Fast track your campus placements

View all
Molex Operator Salary
based on 46 salaries
₹1 L/yr - ₹4 L/yr
At par with the average Operator Salary in India
View more details

Molex Operator Reviews and Ratings

based on 13 reviews

3.9/5

Rating in categories

3.6

Skill development

3.1

Work-life balance

3.5

Salary

2.6

Job security

3.7

Company culture

2.3

Promotions

3.8

Work satisfaction

Explore 13 Reviews and Ratings
Product Design Engineer
91 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Analyst
71 salaries
unlock blur

₹3.7 L/yr - ₹8.5 L/yr

Quality Inspector
71 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Trainee Operator
59 salaries
unlock blur

₹1.6 L/yr - ₹2.9 L/yr

Design Engineer
56 salaries
unlock blur

₹4 L/yr - ₹12.2 L/yr

Explore more salaries
Compare Molex with

Qualcomm

3.8
Compare

Intel

4.2
Compare

Applied Materials

3.9
Compare

Micron Technology

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