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

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Micron Technology Software Developer Interview Questions and Answers

Updated 17 Sep 2024

Micron Technology Software Developer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of stages called normal forms, with the most common being First Normal Form (1NF)...

  • Answered by AI
  • Q2. Code for armstrong alogrithm
  • Ans. 

    Armstrong algorithm is used to find Armstrong numbers in a given range.

    • Iterate through the numbers in the given range

    • Calculate the sum of cubes of each digit in the number

    • Check if the sum is equal to the original number

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Its a zoom call interview which lasted for 45 minutes. initially there are two panel members in which one is very targetting at me. They asked me different type of questions like jumping from DSA to project then to python then again java. Its a mixed combo pack type interview. for each and every question they asked me the real time example. The discussion on my project lasted for 15-20 mins.

  • Q1. 

    Count Set Bits Problem Statement

    Given a positive integer N, compute the total number of '1's in the binary representation of all numbers from 1 to N. Return this count modulo 1e9+7 because the result can...

  • Ans. 

    Count the total number of set bits in the binary representation of numbers from 1 to N modulo 1e9+7.

    • Use bitwise operations to count the set bits in each number from 1 to N.

    • Keep track of the total set bits and return the result modulo 1e9+7.

    • Optimize the solution to handle large values of N efficiently.

    • Consider using dynamic programming or precomputing values for faster computation.

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 mins
Round difficulty - Easy

This round was a zoom interview. The interview started with my brief introduction. This time the interview was more interested in my hobbies and passions. He asked me what do you do to keep yourself updated with the latest technology trends?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 8CGPAMicron Technology interview preparation:Topics to prepare for the interview - Apptitude, C, Java, Data Structures and Algorithms, DBMSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do participate in all the coding contests, long challenges held by codechef, codeforces
Tip 2 : Practice all kinds of problems on leetcode, gfg, coding ninjas
Tip 3 : When you are writing a written exam for a particular company, make sure you get to know about the company in detail.

Application resume tips for other job seekers

Tip 1 : Make your resume short and sweet(mostly 1 page, max 2 pages) is preferred.
Tip 2 : Make sure your resume is crisp rather than descriptive
Tip 3 : Do not lie on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on OOPS and OS mainly.

  • Q1. What are Little Endian and Big Endian in the context of computer architecture?
  • Ans. 

    Little Endian and Big Endian refer to the order in which bytes are stored in computer memory.

    • Little Endian stores the least significant byte first, while Big Endian stores the most significant byte first.

    • Little Endian is commonly used in x86 architecture, while Big Endian is used in architectures like SPARC and PowerPC.

    • Endianness can affect data transmission between systems with different byte orders.

  • Answered by AI
  • Q2. Write a program to determine if your system is little-endian or big-endian.
  • Ans. 

    Program to determine system's endianness

    • Check the endianness by storing a multi-byte integer and checking the byte order

    • Use bitwise operations to extract the least significant byte

    • If the least significant byte is at the lowest memory address, it's little-endian

    • If the least significant byte is at the highest memory address, it's big-endian

  • Answered by AI
  • Q3. What is the volatile keyword in programming?
  • Ans. 

    The volatile keyword in programming is used to indicate that a variable's value can be changed unexpectedly.

    • Volatile keyword is used in multithreaded programming to prevent compiler optimizations on variables that can be changed by other threads.

    • It tells the compiler not to cache the variable's value in a register, ensuring that every access is made to the variable's memory location.

    • Commonly used in embedded systems pr...

  • Answered by AI
  • Q4. What is the use of a function pointer in C?
  • Ans. 

    Function pointers in C are used to store the address of functions, allowing for dynamic function calls and callbacks.

    • Function pointers can be used to implement callbacks in event-driven programming.

    • They can be used to switch between different functions at runtime.

    • Function pointers are commonly used in implementing data structures like function pointers in an array of function pointers.

    • Example: void (*funcPtr)(int) = &a

  • Answered by AI
  • Q5. Design a data structure to implement multi-threading.
  • Ans. 

    Design a data structure for multi-threading

    • Use a thread-safe queue to manage tasks for each thread

    • Implement a lock or semaphore to control access to shared resources

    • Consider using condition variables for synchronization

    • Use atomic operations for shared variables to prevent race conditions

  • Answered by AI
  • Q6. What does a kernel do?
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between software and hardware.

    • Manages system resources such as CPU, memory, and I/O devices

    • Provides a bridge between software applications and hardware components

    • Handles tasks such as process scheduling, memory management, and device drivers

    • Controls communication between hardware and software layers

  • Answered by AI
  • Q7. What is a storage class in programming?
  • Ans. 

    A storage class in programming defines the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are created when a function is called and destroyed when the function ends.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 6 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 was interviewed before May 2016.

Interview Preparation Tips

Round: written test
Experience: it was elitmus test conducted by the company itself on campus. As per my knowledge only those scoring 90 percentile got selected for round 2.
Tips: Attempt only those ques that are necessary for scoring 90+ in e litmus. Specially in verbal don't attempt more then required questions, though you might be tempted. The aim is not to score max bt to score 90+

Round: Technical Interview
Experience: This was a programming based round. I was asked to write algorithms for various array linked list based problems. There was cross questioning prompting to reduce complexity and to use different data structures for same problems.

Mostly it focused on subjects like c, data structures and ADA.
Tips: Be clear with basic of data structures and algorithms. Pointers, queue, stacks, array linked lists, sorting etc are the keywords.

Round: Technical Interview
Experience: This was a information security specific round since that was my major. In depth cross questioning on my thesis topics, honeypots, network intrusion etc. Security certificates, and on the go problems to provide security solution layer wise in different scenarios. Security concept of torrents was also asked in detail.
Tips: It was more of a security discussion and throwing of ideas about how things in a particular case could work or could not. Don't worry about right or wrong answer just be clear with your reasoning about the solution you are suggesting.

Round: Other Interview
Experience: I don't know what to name this round, but it focused mainly on developing test cases for an object. Say they gave me a stapler and said to develop a test plan listing down test cases for a given object to pass so that it can be confirmed that it is a stapler. Another scenario was with a lift.
Tips: This is one round where your presence of mind and inter personal skills matter. I think the way you present your thoughts was most important here.

Round: Behavioural Interview
Experience: This was was mostly about how would you react in a given professional situation
Like your assigned work could not be completed on time, or if you are doing something wrong with the work assigned.
Tips: This is all about inter personal skills and putting your best foot forward :)

College Name: Indira Gandhi Delhi Technical University For Women, Delhi

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Asked me about my research work That's it
  • Q2. Asked about the course project that i did in BE and MS

Interview Preparation Tips

Round: Test
Experience: There was one question which was little tricky , but not that difficult
Total Questions: 1

Round: Technical + HR Interview
Experience: There was one question which was little tricky , but not that difficult

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Project related questions
  • Q2. Breifly explain about project
  • Ans. 

    The project is a web-based application for managing inventory and sales of a retail store.

    • Developed using Java and Spring framework

    • Includes features such as product management, order management, and customer management

    • Utilizes MySQL database for data storage

    • Implemented security measures such as authentication and authorization

    • Designed with a responsive user interface for optimal user experience

  • Answered by AI
  • Q3. Tell me about yourself. Hobbies , strength and weakness
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My hobbies include reading and playing video games.

    • Proficient in programming languages such as Java and Python

    • Strong problem-solving skills

    • Good communication and teamwork abilities

    • Weakness: Sometimes I tend to overthink and spend too much time on a problem

    • Hobbies: Reading books on technology and playing video games

  • Answered by AI
  • Q4. Will u stay in samsung?
  • Ans. 

    I cannot make a commitment to staying at Samsung at this time.

    • I am open to exploring other opportunities

    • My decision will depend on various factors such as growth opportunities, work culture, and compensation

    • I value my time at Samsung and appreciate the experience gained

  • Answered by AI
  • Q5. Basic hr questions

Interview Preparation Tips

Round: Test
Experience: Problem similar to knapsack
Tips: dynamic programming
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: Asked to explain about project. Some basic concepts in linear algebra and in deep learning like CNNs. Asked to implement Hungarian algorithm.
Tips: Brush up baisc ML and linear algebra concepts

Round: HR Interview
Experience: Asked where i did my btech. Asked why i switched by branch from electronics to computer science.
Tips: tell the truth to whatever is asked

Skills: Machine Learning
College Name: IIT Madras

Software Developer Interview Questions & Answers

Samsung user image GURRAM HARINATHA REDDY cs13b010

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between DFS and BFS?
  • Ans. 

    DFS and BFS are two popular graph traversal algorithms used in computer science.

    • DFS stands for Depth First Search and explores as far as possible along each branch before backtracking.

    • BFS stands for Breadth First Search and explores all the vertices at the present depth before moving on to the next level.

    • DFS uses a stack data structure to keep track of visited nodes while BFS uses a queue.

    • DFS is useful for finding path...

  • Answered by AI
  • Q2. When are double pointers used?
  • Ans. 

    Double pointers are used to store the address of a pointer variable.

    • Double pointers are useful in dynamic memory allocation.

    • They are used to modify the value of a pointer passed to a function.

    • They can be used to create linked lists and trees.

    • Example: int **ptr; //declares a double pointer to an integer

  • Answered by AI
  • Q3. List all the permutations of the array?
  • Ans. 

    Permutations of an array

    • Permutations are all possible arrangements of elements in an array

    • Number of permutations for an array of length n is n!

    • Use recursion to generate all permutations

    • Swap elements to generate different permutations

  • Answered by AI
  • Q4. What is the first biggest failure in your life?
  • Ans. 

    My first biggest failure was not being able to clear an important exam in high school.

    • Failed to manage time effectively

    • Did not seek help from teachers or peers

    • Did not practice enough

    • Learned the importance of preparation and seeking help

    • Improved study habits and time management skills

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 3 hours
Total Questions: 1

College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Asked to breifly explain about the project
  • Q2. Asked to implement hungarian algorithm
  • Q3. Tell about yourself
  • Ans. 

    I am a software developer with experience in Java and Python.

    • Graduated with a degree in Computer Science

    • Worked on multiple projects using Java and Python

    • Familiar with Agile methodology

    • Passionate about learning new technologies

  • Answered by AI
  • Q4. Whats my strenghts and weaknesses?
  • Ans. 

    My strength is problem-solving and attention to detail. My weakness is public speaking.

    • Strength: Strong problem-solving skills

    • Strength: Attention to detail

    • Weakness: Public speaking

    • Weakness: Difficulty with time management

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: problem similar to knapssack
Tips: learn dynamic programming
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: Asked basic ML and linear algebra questions
Tips: brush up ML and Linear Algebra concepts

Round: HR Interview
Experience: It was kind of a friendly discussion. She asked my why switched my branch from EC to CS for M.Tech?
Tips: Most of the questions were basic HR questions.

Skills: Machine Learning
College Name: IIT Madras

I was interviewed in Nov 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Students above 7.00 cgpa were shortlisted for the test.

Round: Test
Experience: It was a coding test for 3 hours where we were given a scenario to be solved using our programming skills. The question could be solved in any programming language comfortable. The shortlisting depends on the number of test cases passed. There are about 50 test cases for the question.
Duration: 3 hours
Total Questions: 1

Skills: Programming Skills In Any Language Like C
College Name: Thapar University, Patiala

I was interviewed before Jun 2016.

Interview Preparation Tips

Round: Test
Experience: A. Quantitative aptitude:
Very Easy Questions. If you know ratios and proportions, few formulas, probability etc. You can easily answer all the answers.
20 questions - 20 minutes.
B. Verbal Reasoning:
Basic questions based on knowledge of grammar. RC and other questions. Easy questions.
20 questions - 20 minutes.
C. Logical Reasoning:
Questions based on family tree, symbols (like if '+' operator is greater than or equal to) based questions. Easy to solve.
20 questions - 20 minutes.
Based on the aptitude test, 20 students from IT were shortlisted for the coding round.

Duration: 1 hour
Total Questions: 60

Round: Coding round
Experience: This round took place on the same day after the aptitude
Three programs:
Your code is tested against 15-20 test cases. Time limit was one hour.


Run length encoding: Given a string compress it using run length encoding
Eg: I/P - aaaccdeeff O/P - a3c2de2f2
Solution: -----/
Given two trees find if they are identical or not
Solution: -----/
Find maximum sum rectangle in a 2D matrix


Round: Group Discussion
Experience:
This round was newly introduced by Samsung in our year.
There were 2 batches of 10 people each.
Each batch was given a topic and each member in a batch had to speak about the topic for 2 minutes.
My topic was
Contribute & help others!
anonymous
You can choose to be anonymous

Micron Technology Interview FAQs

How many rounds are there in Micron Technology Software Developer interview?
Micron Technology interview process usually has 1 rounds. The most common rounds in the Micron Technology interview process are Technical.
What are the top questions asked in Micron Technology Software Developer interview?

Some of the top questions asked at the Micron Technology Software Developer interview -

  1. What is normalizat...read more
  2. Code for armstrong alogri...read more

Recently Viewed

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Micron Technology

No Interviews

DESIGNATION

INTERVIEWS

Micron Technology

No Interviews

SALARIES

Micron Technology

INTERVIEWS

Micron Technology

40 top interview questions

Tell us how to improve this page.

Micron Technology Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Micron Technology Intelligence Accelerated
Micron Technology Software Developer Salary
based on 25 salaries
₹10 L/yr - ₹23.5 L/yr
82% more than the average Software Developer Salary in India
View more details

Micron Technology Software Developer Reviews and Ratings

based on 4 reviews

3.1/5

Rating in categories

2.6

Skill development

2.7

Work-life balance

3.8

Salary

3.5

Job security

2.6

Company culture

2.9

Promotions

2.6

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
127 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
113 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
70 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Micron Technology with

Intel

4.2
Compare

Samsung

3.9
Compare

Western Digital

3.5
Compare

Advanced Micro Devices

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent