Filter interviews by
I am interested in Molex and its products because of their innovative technology and impact on various industries.
Innovative technology used in Molex products
Impact of Molex products on various industries
Opportunities for growth and learning at Molex
Strong reputation and history of success
Top trending discussions
I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.
posted on 24 May 2017
I appeared for an interview in Dec 2016.
KiteTech was a school project focused on designing and building a high-performance kite for recreational use.
Researched different kite designs and materials for optimal performance
Utilized CAD software to create a prototype of the kite
Tested the kite in various wind conditions to assess its performance
Collaborated with team members to improve the design and functionality
MR Braking stands for Magnetic Resistance Braking. It is a type of braking system used in trains and other vehicles.
MR Braking uses magnetic fields to slow down or stop a vehicle.
It is commonly used in trains as it provides a smooth and efficient braking system.
The braking force is generated by the resistance between the magnetic field and the conductive material on the train's wheels.
MR Braking is also used in roller ...
Applied Materials is a leading company in the field of semiconductor equipment manufacturing, offering cutting-edge technology and global opportunities.
Applied Materials is a global leader in semiconductor equipment manufacturing
They offer cutting-edge technology and innovation in their products
The company provides opportunities for global exposure and career growth
AMAT's reputation for excellence and industry leadersh...
Yes, I have given GATE exam for admission to postgraduate programs in engineering.
Yes, I have given GATE exam for admission to postgraduate programs in engineering.
I scored well in GATE exam to enhance my chances of getting into a reputed engineering institute.
GATE exam helped me showcase my technical knowledge and skills in the field of mechanical engineering.
I would assure my selection by showcasing my strong work ethic, problem-solving skills, and passion for engineering.
I would highlight my relevant experience and projects during the interview.
I would provide references from previous employers or professors to vouch for my skills and work ethic.
I would express my enthusiasm for the company and the role, demonstrating my commitment to contributing positively to the team.
I...
I am a dedicated Mechanical Engineer with 5 years of experience in designing and implementing mechanical systems.
Graduated with a Bachelor's degree in Mechanical Engineering from XYZ University
Worked as a Mechanical Engineer at ABC Company for 3 years
Designed and implemented a new cooling system for industrial machinery, resulting in 20% increase in efficiency
Proficient in CAD software and project management tools
Integrity and innovation are the two values I value the most.
Integrity: Upholding honesty, ethics, and moral principles in all aspects of work.
Innovation: Constantly seeking new ideas and solutions to improve processes and products.
Example: Ensuring accurate reporting of data and findings, and actively participating in brainstorming sessions for new design concepts.
Values such as integrity, teamwork, and innovation are crucial in engineering for successful project completion and professional growth.
Integrity is important in engineering to ensure honesty and ethical behavior in all aspects of work.
Teamwork is essential for collaboration and effective communication among team members to achieve project goals.
Innovation drives creativity and problem-solving skills, leading to the de...
My vision in life is to use my skills as a Mechanical Engineer to contribute to innovative projects that improve society and make a positive impact on the world.
To work on cutting-edge technologies and research in the field of mechanical engineering
To collaborate with diverse teams to solve complex problems and create sustainable solutions
To mentor and inspire the next generation of engineers through education and outr...
20 alternative uses of a stapler
As a makeshift hole puncher
To hold together a broken necklace chain
To create a makeshift zipper pull
To create a makeshift lock for a door
To create a makeshift weight for a fishing line
To create a makeshift needle for sewing
To create a makeshift screwdriver
To create a makeshift zipper repair tool
To create a makeshift paper clip
To create a makeshift zipper stopper
To create a makeshift zipp...
I applied via Referral and was interviewed before Jan 2021. There were 5 interview rounds.
I applied via Approached by Company and was interviewed in Nov 2023. There were 3 interview rounds.
Function to dynamically allocate memory and write data to a memory location, returning the address details.
Use malloc() or calloc() to dynamically allocate memory
Use memcpy() or strcpy() to write data to the allocated memory
Return the address details where data is present
Memory management involves allocating and deallocating memory efficiently, while mapping involves associating memory addresses with physical locations.
Memory management is crucial for optimizing performance and preventing memory leaks.
Mapping involves translating virtual memory addresses to physical memory locations.
Different scenarios may require different memory management strategies, such as stack allocation vs heap...
Program to find length of bits assigned in memory using recursion.
Define a recursive function to count the bits in memory
Base case: if input is 0, return 0
Recursive case: return 1 + function(input / 2)
Volatile keyword prevents compiler optimization by telling the compiler that the variable's value can change unexpectedly.
Volatile keyword is used to indicate that a variable may be changed unexpectedly, such as in the case of hardware registers.
When initializing GPIO pins, using volatile keyword ensures that the compiler does not optimize away the initialization code.
Without volatile keyword, the compiler may optimize...
Unions in C/C++ can be used for bit assignments by allowing multiple variables to share the same memory location.
Unions allow different data types to be stored in the same memory location, which can be useful for bit manipulation.
By defining a union with multiple variables of different data types, you can access the same memory location using different variable names.
For example, you can use a union to access individua...
static const is used to declare constants that are known at compile time and cannot be modified
static const int MAX_SIZE = 100; // declaring a constant integer
static const double PI = 3.14159; // declaring a constant double
static const char* MESSAGE = "Hello, World!"; // declaring a constant string
Check if a linked list is circular, if not reverse it.
Create two pointers, one moving at double the speed of the other to detect a cycle
If a cycle is detected, the list is circular. If not, reverse the list by changing the pointers' directions
Architecture to process real-time data involves designing systems that can efficiently collect, process, and analyze data in real-time.
Utilize distributed systems to handle high volumes of data in real-time
Implement stream processing frameworks like Apache Kafka or Apache Flink
Use microservices architecture for scalability and flexibility
Employ in-memory databases for fast data retrieval
Ensure fault tolerance and data ...
Various data filtering techniques include sorting, grouping, aggregating, and applying filters based on specific criteria.
Sorting: arranging data in a specific order, such as ascending or descending
Grouping: categorizing data into distinct groups based on common attributes
Aggregating: combining multiple data points into a single value, such as summing or averaging
Filtering: selecting only the data that meets certain cr...
Initialize and control GPIO using HAL functions in embedded systems.
Use HAL_GPIO_Init() function to initialize GPIO pins
Use HAL_GPIO_WritePin() function to set or clear GPIO status
Example: HAL_GPIO_Init(&GPIO_InitStruct)
Example: HAL_GPIO_WritePin(GPIOx, GPIO_PIN_x, GPIO_PIN_SET)
Traverse a linked list based on input 0 or 1 to return decimal equivalent.
Create a function that takes input 0 or 1 and traverses the linked list accordingly.
For each node in the linked list, multiply the current decimal value by 2 and add the data of the node if input is 1.
Return the final decimal value after traversing the linked list.
I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.
To detect and remove a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.
Use two pointers, slow and fast, to traverse the linked list
If there is a loop, the fast pointer will eventually meet the slow pointer
Once the loop is detected, reset one of the pointers to the head and move both pointers at the same pace until they meet again to find the start of the loop
I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.
A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function in a derived class.
Virtual functions allow a derived class to provide a specific implementation of a function that is already defined in a base class.
They enable polymorphism, where a pointer to a base class can be used to call a function in a derived class.
Virtual functions are used in obje...
Android boot up sequence involves several stages including power on, bootloader, kernel initialization, and system initialization.
Power on the device
Bootloader loads the kernel
Kernel initializes the system
System initialization completes the boot up process
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Allows for code reusability by creating a new class based on an existing class
Derived class (subclass) inherits attributes and methods from a base class (superclass)
Can have multiple levels of inheritance (multi-level inheritance)
Example: Animal class can be a base class with properties like name a...
Polymorphism is the ability of a single function or method to operate on different types of data.
Polymorphism allows objects of different classes to be treated as objects of a common superclass.
It enables a single interface to be used for different data types.
Examples include method overloading and method overriding in object-oriented programming.
I appeared for an interview before Feb 2023.
Practice on hackerrank, they send hackerrank link for screening round.
I applied via Referral and was interviewed in Sep 2023. There were 4 interview rounds.
The length of the longest common subsequence in given strings is found using dynamic programming.
Use dynamic programming to find the length of the longest common subsequence.
Compare characters of the strings and build a matrix to store the lengths of common subsequences.
Traverse the matrix to find the length of the longest common subsequence.
Write the algorithm for topological sorting.
CAP theorem states that in a distributed system, it is impossible to simultaneously guarantee consistency, availability, and partition tolerance.
Consistency: All nodes in the system have the same data at the same time.
Availability: Every request gets a response, even if some nodes are down.
Partition Tolerance: The system continues to operate despite network partitions.
In a distributed system, you can only achieve two o...
VLSI design cycle is the process of creating integrated circuits by going through various stages from design to fabrication.
VLSI design cycle involves stages like specification, design, verification, synthesis, and fabrication.
It starts with defining the requirements and specifications of the integrated circuit.
Design phase includes logic design, circuit design, and physical design.
Verification ensures that the design ...
FIFO pipeline depth calculation involves determining stages for data processing in a queue system.
FIFO stands for First In, First Out, meaning the first data entered is the first to be processed.
Pipeline depth refers to the number of stages in a processing pipeline.
For example, in a CPU pipeline, stages might include fetch, decode, execute, and write-back.
To calculate depth, consider the number of operations and how th...
based on 1 interview experience
based on 4 reviews
Rating in categories
Product Design Engineer
105
salaries
| ₹5.8 L/yr - ₹11.8 L/yr |
Analyst
75
salaries
| ₹3.7 L/yr - ₹6.6 L/yr |
Quality Inspector
65
salaries
| ₹1.5 L/yr - ₹4 L/yr |
Design Engineer
64
salaries
| ₹5.8 L/yr - ₹13 L/yr |
Trainee Operator
57
salaries
| ₹1.6 L/yr - ₹2.9 L/yr |
Qualcomm
Intel
TDK India Private Limited
Applied Materials