Premium Employer

i

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

Micron Technology Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Micron Technology Manufacturing Associate Interview Questions and Answers

Updated 29 Feb 2024

Micron Technology Manufacturing Associate Interview Experiences

1 interview found

Manufacturing Associate Interview Questions & Answers

user image Ruchika Srivastava

posted on 29 Feb 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Interview 

(1 Question)

  • Q1. Not receive any call regarding interview till now 1 month completed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Till now I have not receive any call regarding interview. I have applied 30 jan ,7 feb ,15 feb several times, but no response

Top trending discussions

View All
Interview Tips & Stories
1d
a mern stack developer
Resume Review and Suggestion
I’m a Full Stack Developer with 2 years of experience working with the MERN stack, AWS (EC2, S3), Docker, GitHub Actions (CI/CD), Redis, and WebSockets. I'm looking for honest feedback — structure, wording, what to cut/add, or how it reads from a recruiter’s perspective. Not targeting any region specifically, just want to be resume-ready for product-based and backend-focused roles.
FeedCard Image
Got a question about Micron Technology?
Ask anonymously on communities.

Interview questions from similar companies

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

(1 Question)

  • Q1. Basics of electronics

Manufacturing Associate Interview Questions Asked at Other Companies

asked in SABIC
Q1. What are the types and classifications of gears?
Q2. What is your implementation process?
Q3. Tell me about your manufacturing process.
asked in Amazon
Q4. Are there any quality concerns regarding the products?
asked in Laurus Labs
Q5. Boiling points of solvents
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Multiple C, C++ DSA Questions

I applied via Walk-in and was interviewed in May 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 - Aptitude Test 

Internal 15 Questions and medical checkup

Round 3 - HR 

(3 Questions)

  • Q1. Family Background and work
  • Q2. Last company name and how much year experience
  • Ans. 

    I have 5 years of experience as a Machine Operator at XYZ Company.

    • Worked at XYZ Company for 5 years as a Machine Operator

    • Operated various types of machines, including CNC machines and injection molding machines

    • Ensured machines were set up correctly and monitored their performance

    • Performed routine maintenance and troubleshooting on machines

    • Maintained a safe and clean work environment

    • Collaborated with team members to mee...

  • Answered by AI
  • Q3. When are you joining
  • Ans. 

    I will be joining on [date].

    • I am scheduled to start on [date].

    • My joining date is set for [date].

    • I will officially join the company on [date].

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Molex Machine Operator interview:
  • Wiring Harness
Interview preparation tips for other job seekers - Go neet shaving and carry Xerox copy your documents

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Medium

This was an online coding round where I had 2 questions to solve under 75 minutes. Both the coding questions were of Medium to Hard level of difficulty.

  • Q1. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd"
    X = "bd"
    Output:
    ...
  • Ans. 

    Find the smallest substring in S that contains all characters in X.

    • Use a sliding window approach to find the smallest substring in S that contains all characters in X.

    • Keep track of the characters in X using a hashmap.

    • Move the window by adjusting the start and end pointers until all characters in X are found.

    • Return the smallest substring encountered.

  • Answered by AI
  • Q2. 

    K - Sum Path In A Binary Tree

    Given a binary tree where each node contains an integer value, and a value 'K', your task is to find all the paths in the binary tree such that the sum of the node values in ...

  • Ans. 

    Find all paths in a binary tree where the sum of node values equals a given value 'K'.

    • Traverse the binary tree using DFS and keep track of the current path and its sum.

    • At each node, check if the current sum equals 'K' and add the path to the result.

    • Continue traversal to the left and right child nodes recursively.

    • Return the list of paths that sum up to 'K'.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions of DS/Algo to solve under 60 minutes and 2 questions related to Operating Systems.

  • Q1. 

    Validate Partial Binary Search Tree (BST) Problem Statement

    You are provided with a binary tree containing 'N' nodes. Your task is to determine if this tree is a Partial Binary Search Tree (BST). Return t...

  • Ans. 

    Validate if a binary tree is a Partial Binary Search Tree (BST) by checking if each node's left subtree contains nodes with data less than or equal to the node's data, and each node's right subtree contains nodes with data greater than or equal to the node's data.

    • Check if each node's left subtree follows BST property (data <= node's data) and right subtree follows BST property (data >= node's data)

    • Recursively che...

  • Answered by AI
  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the result.

  • Answered by AI
  • Q3. Can you define process and threads in operating systems?
  • Ans. 

    Processes are instances of a program in execution, while threads are lightweight processes within a process.

    • A process is a program in execution, with its own memory space and resources.

    • Threads are lightweight processes within a process, sharing the same memory space and resources.

    • Processes are independent of each other, while threads within the same process can communicate and share data.

    • Example: A web browser running ...

  • Answered by AI
  • Q4. What are the different types of semaphores?
  • Ans. 

    Different types of semaphores include binary semaphores, counting semaphores, and mutex semaphores.

    • Binary semaphores: Can only have two states - 0 or 1. Used for mutual exclusion.

    • Counting semaphores: Can have multiple states. Used for managing resources with limited capacity.

    • Mutex semaphores: Similar to binary semaphores but with additional features like priority inheritance.

    • Named semaphores: Can be shared between proc...

  • Answered by AI
Round 3 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

In this round, I was asked 3 coding questions out of which I had to implement the first two and for the last question I was only asked the optimal approach. The main challenge in this round was to implement the first two questions in a production ready manner without any bugs and so I had to spent some time thinking about some Edge Cases which were important with respect to the question.

  • Q1. 

    Next Greater Element Problem Statement

    You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater ele...

  • Ans. 

    The task is to find the next greater element for each element in an array to its right, if no greater element exists, return -1.

    • Use a stack to keep track of elements for which the next greater element is not found yet.

    • Iterate through the array from right to left and pop elements from the stack until a greater element is found.

    • Store the next greater element for each element in a separate array.

    • If the stack is empty afte...

  • Answered by AI
  • Q2. 

    Power Set Generation

    Given a sorted array of 'N' integers, your task is to generate the power set for this array. Each subset of this power set should be individually sorted.

    A power set of a set 'ARR' i...

  • Ans. 

    Generate power set of a sorted array of integers with individually sorted subsets.

    • Use recursion to generate all possible subsets by including or excluding each element in the array.

    • Sort each subset before adding it to the power set.

    • Handle base case when all elements have been considered to add the subset to the power set.

  • Answered by AI
  • Q3. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Create a prefix sum array to determine the position of each element in the sorted array.

    • Iterate through the input array and place each element in its correct position based on the prefix sum array.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is ...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACadence Design Systems interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Views, sp's, functions,joins,temp tables,table variables, indexes,cte,subquery,derived tables, correlated subquery, constrains and types , find n th highest salary, find out duplicates ,delete duplicates ,...
Round 2 - HR 

(1 Question)

  • Q1. Current organization, product based or contractual based, current sal, expect salary, which domain, notice period..etc

Interview Preparation Tips

Topics to prepare for Applied Materials Software Developer interview:
  • SQL Server
  • Tsql
  • Data Warehousing
Interview preparation tips for other job seekers - Good knowledge on technical and communication skills
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

ZeroOddEven program will always be asked

Round 2 - Technical 

(1 Question)

  • Q1. Basic java questions , some coding questions around threads
Round 3 - HR 

(1 Question)

  • Q1. Its just about salary and why you want to join and all
Are these interview questions helpful?
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS question to develop a fault-sensing algorithm in machines
  • Ans. 

    Design a fault-sensing algorithm using OOP principles for efficient machine diagnostics.

    • Encapsulation: Use classes to encapsulate machine states and fault data.

    • Inheritance: Create a base class for general machines and derived classes for specific types.

    • Polymorphism: Implement methods that can be overridden for different fault detection strategies.

    • Example: A 'Machine' class with a 'detectFault()' method, overridden in '...

  • Answered by AI
  • Q2. Debug array question in bubble sort
  • Ans. 

    Debugging bubble sort involves identifying and fixing errors in the sorting algorithm for arrays.

    • Check the outer loop: Ensure it runs for the correct number of passes. Example: for (int i = 0; i < n-1; i++)

    • Verify the inner loop: It should compare adjacent elements and swap them if they are in the wrong order. Example: if (arr[j] > arr[j+1])

    • Ensure the swap logic is correct: Use a temporary variable to hold one of ...

  • Answered by AI

Micron Technology Interview FAQs

How to prepare for Micron Technology Manufacturing Associate 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 Micron Technology. The most common topics and skills that interviewers at Micron Technology expect are Electrical Engineering, Electronics Engineering and Mechanical Engineering.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Join Micron Technology Intelligence Accelerated

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 271 Interviews
Intel Interview Questions
4.2
 • 222 Interviews
Texas Instruments Interview Questions
4.0
 • 126 Interviews
Synopsys Interview Questions
3.9
 • 94 Interviews
Molex Interview Questions
3.9
 • 58 Interviews
Tessolve Interview Questions
3.5
 • 56 Interviews
Lam Research Interview Questions
3.7
 • 49 Interviews
View all
Micron Technology Manufacturing Associate Salary
based on 5 salaries
₹3.6 L/yr - ₹3.9 L/yr
7% more than the average Manufacturing Associate Salary in India
View more details

Micron Technology Manufacturing Associate Reviews and Ratings

based on 2 reviews

3.1/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.5

Salary

5.0

Job security

3.1

Company culture

3.5

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
154 salaries
unlock blur

₹5.9 L/yr - ₹20 L/yr

Senior Software Engineer
135 salaries
unlock blur

₹11.5 L/yr - ₹35 L/yr

Staff Engineer
108 salaries
unlock blur

₹22 L/yr - ₹54 L/yr

Data Engineer
102 salaries
unlock blur

₹7.4 L/yr - ₹23 L/yr

Senior Engineer
100 salaries
unlock blur

₹13 L/yr - ₹40.5 L/yr

Explore more salaries
Compare Micron Technology with

Qualcomm

3.8
Compare

Intel

4.2
Compare

Apar Industries

4.1
Compare

Molex

3.9
Compare
write
Share an Interview