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 Data Engineer 1 Interview Questions and Answers

Updated 8 Oct 2024

Ingram Micro Data Engineer 1 Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a data warehouse
  • Ans. 

    A data warehouse is a centralized repository that stores structured and unstructured data from various sources for analysis and reporting.

    • Data warehouses are designed for query and analysis rather than transaction processing.

    • They typically store historical data and are used for creating reports, dashboards, and data visualizations.

    • Data warehouses often use ETL (extract, transform, load) processes to integrate data from...

  • Answered by AI
  • Q2. What are different kind of views that can be created
  • Ans. 

    Different kinds of views that can be created include materialized views, virtual views, and dynamic views.

    • Materialized views store the result set of a query physically and are updated periodically.

    • Virtual views are based on SQL queries and do not store data physically.

    • Dynamic views are created on the fly based on user input or system conditions.

    • Other types of views include read-only views, updatable views, and recursiv

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Reason for the job change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire to work on more advanced projects

    • Opportunity for career advancement

    • Seeking a more collaborative team environment

  • Answered by AI
  • Q2. Where do you see yourself in five years
  • Ans. 

    In five years, I see myself as a senior data engineer leading a team of talented individuals, implementing cutting-edge technologies to drive business growth.

    • Leading a team of data engineers and collaborating with other departments to drive business growth

    • Implementing advanced technologies and tools to optimize data processing and analysis

    • Continuously learning and staying updated with the latest trends in data engineer...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in Jun 2017.

Interview Questionnaire 

1 Question

  • Q1. Questions related to core java, advanced java, programs,

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Previous work experience scenarios based questions

I applied via Naukri.com and was interviewed before Feb 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. About technical what your role is

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing all good, but poor team management

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

Interview Questionnaire 

2 Questions

  • Q1. Basic questions on javascript, angular, html,css
  • Q2. Questions on localstorage , tokens, security, interceptors

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and u will rock

I applied via LinkedIn and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics Of JS

I applied via Recruitment Consulltant and was interviewed before Dec 2021. 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 Resume tips
Round 2 - Technical 

(4 Questions)

  • Q1. Round one lasted for 45 minutes. All the basics from .Net, .Net core, RDBMS , OOPs were asked in detail.
  • Q2. Advice is to prepare fundamentals from .Net , oops etc
  • Q3. What are the best practices for creating an API?
  • Ans. 

    Best practices for creating an API

    • Design API around resources

    • Use HTTP methods correctly

    • Provide clear and concise documentation

    • Version your API

    • Implement security measures

    • Use consistent error handling

    • Optimize for performance

    • Test thoroughly before release

  • Answered by AI
  • Q4. C# coding example to explain multiple inheritance .
  • Ans. 

    Multiple inheritance in C# allows a class to inherit from multiple classes.

    • C# does not support multiple inheritance of classes, but it supports multiple inheritance of interfaces.

    • A class can inherit from multiple interfaces using the ':' symbol.

    • Example: class MyClass : Interface1, Interface2 { }

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Round 2 lasted for 1 hour focussing on Projects mentioned on resume.
  • Q2. Whatever is mentioned on the resume should be prepared well. I was asked about my role in project, technologies used, some coding questions in c#, challenges faced while working on that project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with fundamentals, study your resume well which you have submitted. Most importantly, communication should be good throughout. Fluency in English is required.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. 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 - One-on-one 

(1 Question)

  • Q1. Tell about yourself Previous Experience Mindset check
Round 3 - Technical 

(1 Question)

  • Q1. Advanced excel Pivot Table Nested Formulae Vlookup Tax calculation Tableau Basics PowerBI Basics
Round 4 - HR 

(1 Question)

  • Q1. HRBP - Fitment check
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic java mcq, Java Hibernate Spring MVC framework questions

I was interviewed before May 2021.

Round 1 - Coding Test 

(5 Questions)

Round duration - 180 Minutes
Round difficulty - Easy

it was an coding round. i was not able to solve questions

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Determine if two strings are anagrams of each other by checking if they contain the same characters.

    • Create character frequency maps for both strings and compare them.

    • Sort both strings and compare if they are equal.

    • Use a hash table to store character counts and check if they are the same for both strings.

  • Answered by AI
  • Q2. 

    Remove Character from String Problem Statement

    Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resulting string.

    Input:

    The first lin...
  • Ans. 

    Develop a function to remove all instances of a given character from a string.

    • Iterate through the string and build a new string excluding the specified character.

    • Use a StringBuilder or similar data structure for efficient string manipulation.

    • Handle edge cases such as empty string or character not found in the input string.

  • Answered by AI
  • Q3. 

    Complete String Problem Statement

    Given an array of strings A of size N, determine the longest complete string. A string is deemed complete if every prefix of the string also appears in the array. If mult...

  • Ans. 

    Find the longest complete string in an array of strings, where every prefix of the string also appears in the array.

    • Iterate through each string in the array and check if all its prefixes exist in the array.

    • Keep track of the longest complete string found so far, and return the lexicographically smallest one if multiple exist.

    • If no complete string is found, return 'None'.

  • Answered by AI
  • Q4. 

    Segregate Odd-Even Problem Statement

    In a wedding ceremony at NinjaLand, attendees are divided into two groups: bride’s side and groom’s side. Attendees from the bride’s side hold odd numbers, while those...

  • Ans. 

    Rearrange attendees from bride's side and groom's side while maintaining original order within each group.

    • Iterate through the linked list and separate odd and even numbers into two separate lists.

    • Merge the two lists while maintaining the original order within each group.

    • Output the rearranged linked list with bride's side attendees followed by groom's side attendees.

  • Answered by AI
  • Q5. 

    Boundary Sum Problem Statement

    Given a Binary Tree with 'N' nodes, compute and return the sum of all its boundary nodes. The boundary nodes include the root node, leftmost external nodes, rightmost extern...

  • Ans. 

    The Boundary Sum Problem involves calculating the sum of boundary nodes in a binary tree.

    • Traverse the tree in a specific order to identify the boundary nodes (root, leftmost, rightmost, and leaves)

    • Keep track of the sum of these boundary nodes as you traverse the tree

    • Handle cases where nodes have no children (-1)

  • Answered by AI

Interview Preparation Tips

Eligibility criteria7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Stay focused
Tip 2 : Practice coding questions.
Tip 3 : View previous interviews of the companies

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I was interviewed in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. General questions about work experience
  • Q2. Explain cloud concepts
  • Ans. 

    Cloud concepts refer to the delivery of computing services over the internet, including storage, databases, networking, and more.

    • Cloud computing allows users to access and use resources on-demand over the internet.

    • It provides scalability, flexibility, and cost-efficiency compared to traditional on-premises solutions.

    • Examples include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

  • Answered by AI
Round 2 - Coding Test 

Given a project and add a new feature with test cases

Interview Preparation Tips

Interview preparation tips for other job seekers - not to hard, focus one write clean codes
Contribute & help others!
anonymous
You can choose to be anonymous

Ingram Micro Interview FAQs

How many rounds are there in Ingram Micro Data Engineer 1 interview?
Ingram Micro interview process usually has 2 rounds. The most common rounds in the Ingram Micro interview process are One-on-one Round and HR.
What are the top questions asked in Ingram Micro Data Engineer 1 interview?

Some of the top questions asked at the Ingram Micro Data Engineer 1 interview -

  1. What are different kind of views that can be crea...read more
  2. What is a data wareho...read more

Recently Viewed

JOBS

Alstom Transportation

No Jobs

SALARIES

Hitachi

SALARIES

Hitachi

JOBS

Sindhuja Microcredit

No Jobs

SALARIES

Baker Hughes

SALARIES

Hitachi

INTERVIEWS

Ingram Micro

No Interviews

JOBS

RAV GLOBAL SOLUTIONS

No Jobs

SALARIES

Emerson Electric Co.

JOBS

Aster Dm Healthcare

No Jobs

Tell us how to improve this page.

Ingram Micro Data Engineer 1 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
 • 122 Interviews
TEKsystems Interview Questions
3.4
 • 114 Interviews
TransUnion Interview Questions
4.0
 • 89 Interviews
View all
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
58 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