Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Lam Research Team. If you also belong to the team, you can get access from here

Lam Research Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 261 Reviews

Filter interviews by

Lam Research Senior Software Engineer Interview Questions and Answers

Updated 15 Mar 2024

Lam Research Senior Software Engineer Interview Experiences

1 interview found

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 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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Major questions were around problem solving, strings

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
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

Lam Research Interview FAQs

How many rounds are there in Lam Research Senior Software Engineer interview?
Lam Research interview process usually has 2 rounds. The most common rounds in the Lam Research interview process are Coding Test and Technical.
How to prepare for Lam Research Senior Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Lam Research. The most common topics and skills that interviewers at Lam Research expect are Design Patterns, Food Technology, Multithreading, OOPS and Troubleshooting.

Tell us how to improve this page.

Lam Research Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Lam Research Senior Software Engineer Salary
based on 49 salaries
₹8.4 L/yr - ₹26 L/yr
33% more than the average Senior Software Engineer Salary in India
View more details

Lam Research Senior Software Engineer Reviews and Ratings

based on 5 reviews

1.9/5

Rating in categories

1.7

Skill development

2.0

Work-life balance

3.0

Salary

2.6

Job security

2.5

Company culture

2.2

Promotions

1.5

Work satisfaction

Explore 5 Reviews and Ratings
Senior Buyer
53 salaries
unlock blur

₹9 L/yr - ₹15.4 L/yr

Senior Engineer Mechanical
50 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Senior Software Engineer
49 salaries
unlock blur

₹8.4 L/yr - ₹26 L/yr

Senior Electrical Engineer
40 salaries
unlock blur

₹9.5 L/yr - ₹20 L/yr

Program Manager
35 salaries
unlock blur

₹10.7 L/yr - ₹36 L/yr

Explore more salaries
Compare Lam Research with

Applied Materials

3.9
Compare

KLA

3.4
Compare

ASML

4.0
Compare

Entegris

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