Upload Button Icon Add office photos
Engaged Employer

i

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

Ingram Micro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ingram Micro Software Developer Interview Questions and Answers

Updated 8 Apr 2024

Ingram Micro Software Developer Interview Experiences

2 interviews found

Software Developer Interview Questions & Answers

user image Pragya Khandelwal

posted on 8 Apr 2024

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

(1 Question)

  • Q1. Introduce yourself?
  • Ans. 

    I am a passionate software developer with experience in full-stack development, focusing on Java and modern web technologies.

    • Education: I hold a degree in Computer Science, where I developed a strong foundation in programming and software engineering principles.

    • Experience: I have worked on various projects, including a web application for e-commerce that improved user engagement by 30%.

    • Technical Skills: Proficient in J...

  • Answered by AI

I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour basic aptitude questions , pen and paper based

Round 2 - Technical 

(1 Question)

  • Q1. Questions on HTML Basic questions on Analytics

Interview Preparation Tips

Topics to prepare for Ingram Micro Software Developer interview:
  • .NET
Interview preparation tips for other job seekers - Be strong technically.
Know all the technologies that you have mentioned on your resume well.

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 Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Ingram Micro?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Exam was conducted on programmes. 10 questions were asked

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Question are based on Project and the skills which I mention in my CV.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up with your Basic Concept of the skills that you have.

I applied via Approached by Company and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Assignment 
Round 2 - Coding Test 

DSA

Round 3 - Group Discussion 

About Social changes

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Very basic questions

Interview Preparation Tips

Topics to prepare for ThoughtWorks Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Prepare DSA well and be well with Hands-on in coding

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Company policies and locations.
  • Ans. 

    Company policies and locations

    • Our company has strict policies regarding data privacy and security

    • We have multiple locations across the country and internationally

    • Each location has its own set of policies and procedures

    • Employees are expected to adhere to all company policies regardless of location

  • Answered by AI
  • Q2. Training and employee development

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics and be confident with your answer. Show your keenness to learn new things and also try to solve all question.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

We were supposed to give test in any time between 3 PM to 9 PM.

  • Q1. 

    Total Unique Paths Problem Statement

    You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...

  • Ans. 

    The problem involves finding the total number of unique paths from the top-left to bottom-right cell of a matrix by moving only right or down.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of unique paths at each cell.

    • Initialize the first row and first column with 1 as there is only one way to reach them.

    • For each cell (i, j), the number of unique paths is the sum of paths...

  • Answered by AI
  • Q2. 

    Subtree Node Count Problem

    We are provided with a tree containing 'N' nodes, numbered from 0 to N-1. The objective is to determine the total number of nodes within each subtree of the provided tree. Speci...

  • Ans. 

    Given a tree with N nodes, find the number of elements in each subtree rooted at every node.

    • Traverse the tree using Depth First Search (DFS) to calculate subtree sizes for each node.

    • Use an array to store subtree sizes for each node, starting with leaf nodes having size 1.

    • The subtree size of a node is the sum of subtree sizes of its children plus 1 for the node itself.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Pair Programming Interview( this round is similar to machine coding round) it started around 11 AM

Focus Areas: Problem solving and implementation of extensions.

The pair coding round is focused on OOPS concepts. You are paired with a TWer for this round. They let you code first for an hour and in the next hour they review your code and suggest changes which would improve the code structure, readability and make it modular and reusable and functional.
 

  • Q1. 

    River Crossing: Help Ninja Cross Over

    Ninja stands at the start of a wooden bridge over a river. Some segments of the bridge are damaged. The undamaged segments, marked as 'safe', are listed in an array S...

  • Ans. 

    Check if Ninja can cross the river by jumping from one safe segment to another based on given constraints.

    • Iterate through the 'SAFE' array and check if Ninja can make the required jumps to reach the last safe segment.

    • Ensure that the next jump is either 'X' - 1, 'X', or 'X' + 1 units from the previous jump.

    • Return 'true' if Ninja can successfully cross the river, otherwise return 'false'.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Students who were shortlisted from Pair Programming round was selected for this round around 3 PM. In this round there were two interviewer.

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the element pointed to by the slow pointer

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaIt was for 2020 undergraduateThought Works interview preparation:Topics to prepare for the interview - Object Oriented Programming, System Design, Operating System, DBMS, Data Structures and Algorithms (Dynamic Programming, Trees, LinkedList)Time required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Have good grasp on OOPS since they have a round named Pair Programming round which is focused upon this. 
Tip 2 : Write clean, modular and functional code.
Tip 3 : Practice Data Structures and Algorithms
Tip 4 : You should know breadth and depth of whatever is mentioned in your resume.
Tip 5 : Be loud and clear.

Application resume tips for other job seekers

Tip 1 : Make single page resume.
Tip 2 : Mention relevant things on resume.
Tip 3 : Do not put any false things on resume. Projects, internships you are mentioning be ready to answer questions related to it regarding what you solved, idea, databases, design.
Tip 4 : Contribute in open source, participate in hackathons.

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Mainframe questions and some advanced scenario based questions
Round 2 - Behavioral 

(1 Question)

  • Q1. The usual how,what,why MR round questions
Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, software developers in my area typically earn between $80,000 and $120,000.

    • Consider my experience: With 5 years in the field, I believe a salary in the range of $90,000 to $110,000 is appropriate.

    • Factor in company size and location: Larger companies or those in tech hubs often offer higher sala...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for innovation that aligns with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved load time by 30%.

    • Strong proficiency in multiple programming languages, including Python and Java, which allows me to adapt to various project needs.

    • Excellent teamwork and communication skill...

  • Answered by AI
  • Q4. Why are you looking for a change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking for a role that offers more opportunities for advancement, such as leadership positions.

    • Seeking new challenges: My current role has become routine, and I'm eager to tackle more complex projects that push my skills.

    • Alignment with career goals: I want to work in a company who...

  • Answered by AI
  • Q5. Tell me about yourself.
  • Q6. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - I was looking for a Hogan Developer post(based on Mainframe).I would suggest to refresh the basic Mainframe questions and some advanced concepts while preparing for the interview.The whole interview process was smooth and pretty well coordinated.There were 3 levels of interview(TR,MR,HR) of moderate difficulty.Luxoft will also provide satisfactory package as per market standards if the interview goes well. If your looking for permanent remote openings, I do believe Luxoft organisation is one of the better choices that is currently out there in the market.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website

Round 1 - Technical 

(1 Question)

  • Q1. OOP, SQL, Collection, algorithms, threads

Interview Questionnaire 

1 Question

  • Q1. Interview questions on .net technology

Ingram Micro Interview FAQs

How many rounds are there in Ingram Micro Software Developer interview?
Ingram Micro interview process usually has 1-2 rounds. The most common rounds in the Ingram Micro interview process are Technical and Aptitude Test.
How to prepare for Ingram Micro Software Developer 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 Ingram Micro. The most common topics and skills that interviewers at Ingram Micro expect are SQL, Javascript, Coding, Agile and JQuery.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Ingram Micro Software Developer Salary
based on 37 salaries
₹3 L/yr - ₹12 L/yr
20% less than the average Software Developer Salary in India
View more details

Ingram Micro Software Developer Reviews and Ratings

based on 9 reviews

3.2/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.3

Salary

3.1

Job security

3.8

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 9 Reviews and Ratings
Senior Software Engineer
136 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Software Engineer
133 salaries
unlock blur

₹4 L/yr - ₹14.2 L/yr

DEP Manager, Sales
97 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Product Manager
70 salaries
unlock blur

₹7.1 L/yr - ₹22 L/yr

Senior Associate
56 salaries
unlock blur

₹3 L/yr - ₹7.3 L/yr

Explore more salaries
Compare Ingram Micro with

Tech Data

4.2
Compare

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare
write
Share an Interview