Filter interviews by
I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.
ASML is a global leader in lithography technology, and I am excited about the opportunity to work on cutting-edge projects in the semiconductor industry.
ASML is a global leader in lithography technology
Excited about working on cutting-edge projects in the semiconductor industry
Opportunity for professional growth and development
I expect a challenging role where I can utilize my skills in embedded software development and contribute to innovative projects.
Expect to work on cutting-edge technologies in embedded systems
Desire to collaborate with a talented team to solve complex problems
Seek opportunities for professional growth and skill development
Expect a supportive work environment that values creativity and innovation
Yes, I have a valid visa.
Yes, I have a valid visa that allows me to work in this country.
My visa is valid until [expiration date].
I have all the necessary documentation to prove my visa status.
I heard about ASML through a job search website.
Job search website
Online job board
Referral from a friend who works at ASML
5-6 programming multiple choice questions on C++ and a problem to be solved with any language
I completed a 6-month internship at ABC Company where I worked on designing and testing mechanical components for automotive applications.
Designed and analyzed mechanical components using CAD software
Conducted tests and simulations to evaluate performance and durability
Collaborated with cross-functional teams to optimize designs and troubleshoot issues
I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.
First they asked me my background and etc, (they were very interested). Then, the interview switched, and start asking me questions about the systems that compounded their machines.... i said I didn't know, because I had no previous experience on that....
I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.
It was hard and got tons of ds qs
ASML interview questions for popular designations
I applied via Recruitment Consulltant and was interviewed before Dec 2023. There were 2 interview rounds.
I am a Mechanical Design Engineer with 5 years of experience in designing and developing mechanical systems.
Graduated with a degree in Mechanical Engineering from XYZ University
Proficient in CAD software such as SolidWorks and AutoCAD
Experience in designing components for automotive industry
Strong problem-solving skills and attention to detail
Worked on projects involving thermal analysis and stress testing
Failure may occur at the fixed support, near the point of application of the force, or at the junction of the beam and the support.
Failure may occur at the fixed support due to excessive bending moment.
Near the point of application of the force, failure may occur due to shear stress.
At the junction of the beam and the support, failure may occur due to a combination of bending and shear stresses.
I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.
ASML is a Dutch company that specializes in photolithography equipment used in the semiconductor industry.
ASML is a leading supplier of photolithography equipment for the semiconductor industry.
The company is headquartered in Veldhoven, Netherlands.
ASML's machines are used in the production of integrated circuits for electronic devices.
They are known for their advanced technology and innovation in the field of semicond
I am currently the Supply Chain Manager at Cummins.
Responsible for overseeing all aspects of the supply chain process
Managing inventory levels and procurement strategies
Collaborating with suppliers to ensure timely delivery of materials
Analyzing data to optimize supply chain efficiency
Cleaning process involves removing dirt, germs, and impurities from surfaces or objects.
Cleaning process typically involves using water, detergent, and mechanical action to remove dirt and germs.
Different surfaces and objects may require different cleaning methods and products.
Cleaning process is important for maintaining hygiene and preventing the spread of infections.
Examples of cleaning processes include wiping down...
Top trending discussions
posted on 7 May 2017
I was interviewed in Feb 2017.
malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.
malloc is used in C programming language.
It is used to allocate memory on the heap.
malloc is different from 'new' in C++ as it does not call constructors for objects.
C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.
C++ is widely used for developing applications, games, and system software.
Objective C is mainly used for iOS and macOS development.
C++ supports both procedural and object-oriented programming paradigms.
Objective C is an object-oriented language with dynamic runtime features.
C++ has a larger community a...
Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.
Class container holds objects of other classes, acting as a collection or container.
Class composition combines multiple classes to create a new class with its own behavior and attributes.
In class container, the objects are typically stored in a data structure like an array o...
Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.
Divide the horses into 3 groups of 5 and race them.
Take the top 2 horses from each race and race them again.
Finally, race the top 2 horses to determine the top 3.
Developing a real-time data processing system for a high-traffic e-commerce website
Implemented a distributed system architecture to handle large volumes of data
Optimized algorithms for efficient data processing and storage
Utilized caching mechanisms to improve system performance
Worked closely with cross-functional teams to troubleshoot and resolve issues
Example: Successfully reduced data processing time by 50% by imple
Seeking new challenges and opportunities for growth.
Looking for a more challenging role to further develop my skills
Interested in exploring new technologies and industries
Seeking better career advancement opportunities
Want to work in a more collaborative team environment
The width of a tree is the maximum number of nodes at any level in the tree.
To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.
We can use a queue data structure to perform the level order traversal.
At each level, we count the number of nodes in the queue and update the maximum width if necessary.
I was interviewed in Aug 2017.
posted on 10 May 2015
Locate sum of 2 numbers in a linear array (unsorted and sorted) and their complexities
For unsorted array, use nested loops to compare each element with every other element until the sum is found
For sorted array, use two pointers approach starting from the beginning and end of the array and move them towards each other until the sum is found
Complexity for unsorted array is O(n^2) and for sorted array is O(n)
Pointers are used to manipulate memory addresses and values in C++. Increment/decrement, address of and value at operators are commonly used.
Incrementing a pointer moves it to the next memory location of the same data type
Decrementing a pointer moves it to the previous memory location of the same data type
The address of operator (&) returns the memory address of a variable
The value at operator (*) returns the value sto
To determine if a point is inside or outside a rectangle, we check if the point's coordinates fall within the rectangle's boundaries.
Check if the point's x-coordinate is greater than the left edge of the rectangle
Check if the point's x-coordinate is less than the right edge of the rectangle
Check if the point's y-coordinate is greater than the top edge of the rectangle
Check if the point's y-coordinate is less than the b...
To find line that divides rectangle into 2 equal halves through a point inside it.
Find the center of the rectangle
Draw a line from the center to the given point
Extend the line to the opposite side of the rectangle
The extended line will divide the rectangle into 2 equal halves
There are multiple combinations of 8-bit and 16-bit signed numbers. How many such combinations are possible?
There are 2^8 (256) possible combinations of 8-bit signed numbers.
There are 2^16 (65,536) possible combinations of 16-bit signed numbers.
To find the total number of combinations, we can add the number of combinations of 8-bit and 16-bit signed numbers.
Therefore, the total number of possible combinations is 256 +
Find duplicates in an array of elements in 0(n) time and 0(1) space.
Use the property of inputs to your advantage
Iterate through the array and mark elements as negative
If an element is already negative, it is a duplicate
Return all the negative elements as duplicates
I was interviewed in Aug 2017.
I lack experience in a specific technology required for the role.
I may not have experience with a specific programming language or framework mentioned in the job description.
I may not have worked on projects similar to what your company is working on.
I may not have experience with certain tools or technologies that are crucial for the role.
based on 6 interviews
Interview experience
Software Engineer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Design Engineer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Design Engineer
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Mechanical Engg. Design
4
salaries
| ₹0 L/yr - ₹0 L/yr |
Applied Materials
KLA
Lam Research
Carl Zeiss