Upload Button Icon Add office photos

Filter interviews by

i2e Consulting Data Engineer Interview Questions and Answers

Updated 3 Oct 2024

i2e Consulting Data Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical and Verbal reasoning with quant and aptitude

Round 2 - One-on-one 

(2 Questions)

  • Q1. Previous projects
  • Ans. 

    Developed a real-time data processing system for analyzing customer behavior

    • Designed and implemented data pipelines using Apache Kafka and Spark

    • Optimized data storage and retrieval using NoSQL databases like Cassandra

    • Built monitoring and alerting systems to ensure data quality and system performance

    • Collaborated with cross-functional teams to gather requirements and deliver solutions

  • Answered by AI
  • Q2. Some python and sql coding

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Feb 2022

I was interviewed before Feb 2021.

Round 1 - Aptitude Test 

Normal logic and reasoning questions.

Round 2 - Technical 

(1 Question)

  • Q1. Question asked from the resume, AWS Glue, Redshift, S3

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good understanding of ETL using AWS

Data Engineer Interview Questions Asked at Other Companies

asked in Cisco
Q1. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Sigmoid
Q2. Next Greater Element Problem Statement You are given an array arr ... read more
asked in Sigmoid
Q3. Problem: Search In Rotated Sorted Array Given a sorted array that ... read more
asked in Cisco
Q4. Covid Vaccination Distribution Problem As the Government ramps up ... read more
asked in Sigmoid
Q5. K-th Element of Two Sorted Arrays You are provided with two sorte ... read more

Data Engineer Jobs at i2e Consulting

View all

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is the full form of ETL?
  • Ans. 

    ETL stands for Extract, Transform, Load. It is a process used in data warehousing to extract data from various sources, transform it into a consistent format, and load it into a target database.

    • ETL stands for Extract, Transform, Load

    • Extract: Involves extracting data from various sources such as databases, applications, and files

    • Transform: Involves cleaning, filtering, and transforming the extracted data into a consiste...

  • Answered by AI
  • Q2. ETL Full form is Exact, Transform, Load.

Interview Preparation Tips

Interview preparation tips for other job seekers - "Stay persistent, network, actively, continuously upgrade your skills."
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy and moderate level question

Round 2 - Group Discussion 

Given a relevant topic and discussion on it

Round 3 - HR 

(2 Questions)

  • Q1. Introducd yourself
  • Q2. Why do you want to join us
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Diff btw vite and webpack
  • Q2. What is currying in js
Round 2 - Technical 

(2 Questions)

  • Q1. What is currying in javascript?
  • Q2. Diff btw webpack and vite

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of javascript. Learn about polyfills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between function and method
  • Q2. A program related to strings
  • Q3. A program related to prime numbers
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Forecasting problem - Predict daily sku level sales

Round 2 - Technical 

(2 Questions)

  • Q1. What is difference between bias and variance
  • Ans. 

    Bias is error due to overly simplistic assumptions, variance is error due to overly complex models.

    • Bias is the error introduced by approximating a real-world problem, leading to underfitting.

    • Variance is the error introduced by modeling the noise in the training data, leading to overfitting.

    • High bias can cause a model to miss relevant relationships between features and target variable.

    • High variance can cause a model to ...

  • Answered by AI
  • Q2. Parametric vs non parametruc model
  • Ans. 

    Parametric models make strong assumptions about the form of the underlying data distribution, while non-parametric models do not.

    • Parametric models have a fixed number of parameters, while non-parametric models have a flexible number of parameters.

    • Parametric models are simpler and easier to interpret, while non-parametric models are more flexible and can capture complex patterns in data.

    • Examples of parametric models inc...

  • Answered by AI

Skills evaluated in this interview

i2e Consulting Interview FAQs

How many rounds are there in i2e Consulting Data Engineer interview?
i2e Consulting interview process usually has 2 rounds. The most common rounds in the i2e Consulting interview process are Aptitude Test, Technical and One-on-one Round.
How to prepare for i2e Consulting Data Engineer 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 i2e Consulting. The most common topics and skills that interviewers at i2e Consulting expect are AWS, Clinical Data Management, Data Engineering, Data Warehousing and ETL Testing.
What are the top questions asked in i2e Consulting Data Engineer interview?

Some of the top questions asked at the i2e Consulting Data Engineer interview -

  1. Question asked from the resume, AWS Glue, Redshift,...read more
  2. Some python and sql cod...read more

Tell us how to improve this page.

i2e Consulting Data Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
i2e Consulting Data Engineer Salary
based on 17 salaries
₹4.7 L/yr - ₹16.5 L/yr
At par with the average Data Engineer Salary in India
View more details

i2e Consulting Data Engineer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.4

Salary

5.0

Job security

4.4

Company culture

3.7

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
34 salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Data Engineer
17 salaries
unlock blur

₹4.7 L/yr - ₹16.5 L/yr

Senior Software Developer
17 salaries
unlock blur

₹8 L/yr - ₹23.5 L/yr

Technical Lead
12 salaries
unlock blur

₹10.1 L/yr - ₹27.3 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹7.8 L/yr - ₹20 L/yr

Explore more salaries
Compare i2e Consulting with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview