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

Clear (1)

Ingram Micro Product Executive Interview Questions and Answers

Updated 26 Aug 2023

Ingram Micro Product Executive Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement 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 Resume tips
Round 2 - Group Discussion 

This was a campus recruitment and the group discussion was a simple pro and con for any topic in the newspaper

Round 3 - HR 

(2 Questions)

  • Q1. What is your five year plan? Where do you want to be?
  • Q2. Basic skills were asked, value set of company and individual was checked
Round 4 - One-on-one 

(3 Questions)

  • Q1. What do I aspire to be? Career growth plan
  • Q2. How will I contribute to the company growth?
  • Q3. Am I willing to relocate?

Interview questions from similar companies

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

(3 Questions)

  • Q1. Spring boot core java
  • Q2. Different annotations
  • Ans. 

    Annotations are used in Java to provide metadata about a program.

    • Annotations start with the @ symbol

    • Annotations can be used to provide information to the compiler or runtime environment

    • Examples of annotations in Java include @Override, @Deprecated, and @SuppressWarnings

  • Answered by AI
  • Q3. Activate profile

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about you and why Arrow?
  • Ans. 

    I am a software developer with a passion for problem-solving and innovation. I chose Arrow for its reputation for cutting-edge technology and collaborative work environment.

    • I have a strong background in programming languages such as Java, Python, and JavaScript.

    • I enjoy working on challenging projects that require creative solutions.

    • Arrow's focus on innovation and continuous learning aligns with my career goals.

    • I apprec...

  • Answered by AI
  • Q2. What do you know about Arrow?
  • Ans. 

    Arrow is a high-performance JVM library for building and manipulating data structures.

    • Arrow is a library for building and manipulating data structures in Java and Scala.

    • It provides a functional, immutable, and type-safe approach to working with data.

    • Arrow is commonly used in functional programming and big data applications.

    • Examples of data structures in Arrow include Option, Either, and Try.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do your best

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Panel shared one shell script and asked me to explain the script How do you handle exception in shell scripting Prior work experience with Mysql

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical cum manager round. It lasted for about 40 min. The interviewer helped me with comfortable zone. Most of the questions were asked on my past work experience.

I was interviewed 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

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were in general question regarding to technology you worked on and on resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident while giving answers and if you don't know say it directly they will easily come to know you are not aware of topic.

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C# in depth, .net core, Angular basics+, intermediate level, Azure basics, OOPS, CI-CD

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews were pure technical and there were technical scenarios asked. Giving example for most of the answers would be good.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Code paring round was conducted. they will assist you what there expectations are

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code pairing round - you will be given story where you need to add one API to the share repository. It is a simple problem but needs good understanding of the shared code. You should follow clean code pri...
  • Q2. Add one API to the existing repository
  • Ans. 

    The API allows users to retrieve weather data based on location.

    • Create a new endpoint that accepts a location parameter

    • Use a weather API service to fetch weather data based on the location

    • Return the weather data in a standardized format, such as JSON

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project you are working on, do some changes to the project, how well you understand the project
  • Q2. Add some feature to the project
  • Ans. 

    The feature added to the project is a user authentication system.

    • Implement a login page with username and password fields.

    • Create a database table to store user credentials.

    • Hash and salt passwords for secure storage.

    • Implement password reset functionality.

    • Add user roles and permissions for access control.

  • Answered by AI

Skills evaluated in this interview

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
Contribute & help others!
anonymous
You can choose to be anonymous

Ingram Micro Interview FAQs

How many rounds are there in Ingram Micro Product Executive interview?
Ingram Micro interview process usually has 4 rounds. The most common rounds in the Ingram Micro interview process are Resume Shortlist, Group Discussion and HR.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Barclays

No Interviews

SALARIES

Solugenix India Private Limited

INTERVIEWS

Teach For India

No Interviews

LIST OF COMPANIES

Solugenix India Private Limited

Overview

LIST OF COMPANIES

Ip Infusion Software

Overview

Tell us how to improve this page.

Ingram Micro Product Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Synechron Interview Questions
3.5
 • 362 Interviews
Movate Interview Questions
3.3
 • 254 Interviews
SS&C TECHNOLOGIES Interview Questions
3.4
 • 169 Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
Sopra Steria Interview Questions
3.8
 • 127 Interviews
Luxoft Interview Questions
3.7
 • 121 Interviews
TEKsystems Interview Questions
3.4
 • 114 Interviews
TransUnion Interview Questions
4.0
 • 89 Interviews
View all
Ingram Micro Product Executive Salary
based on 9 salaries
₹4 L/yr - ₹12 L/yr
61% more than the average Product Executive Salary in India
View more details

Ingram Micro Product Executive Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

2.0

Skill development

2.9

Work-life balance

3.1

Salary

2.9

Job security

3.0

Company culture

2.9

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
131 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
127 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

DEP Manager, Sales
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ingram Micro with

Tech Data

4.1
Compare

Redington

4.0
Compare

Tech Data Corporation

4.6
Compare

SYNNEX Corporation

1.0
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