Upload Button Icon Add office photos
Engaged Employer

i

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

Celebal Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Celebal Technologies Associate Data Engineer Interview Questions and Answers

Updated 29 May 2024

Celebal Technologies Associate Data Engineer Interview Experiences

2 interviews found

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

First round is basically on python multiple choice questions and then it was asking 6 python easy-moderate question(Don't worry it's not like DSA) then 6 SQL questions which is kind of midium level questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Interviewer asked more about pandas, numpy and according to my resume. 1.what's Linear Regression (As on my resume mentioned that algorithm.)?? I can't remember such pandas and numpy questions but I can sa...
  • Q2. How is an empty class created in python.
  • Ans. 

    An empty class can be created in Python using the 'pass' keyword.

    • Use the 'class' keyword to define a class.

    • Add the class name and a colon after the 'class' keyword.

    • Use the 'pass' keyword to indicate an empty class body.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Celebal Technologies Associate Data Engineer interview:
  • Python
  • sql
Interview preparation tips for other job seekers - 1.If you are good in python and sql then you got this job.
2.If you get the job then they would definitely put you in a contract of 2 or 3 years, So remember you can negotiate as much as you can.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 SQL questions with some dsa and python mqs.

Round 2 - Technical 

(4 Questions)

  • Q1. Mostly asked SQL questions.
  • Q2. Joins, normalisation, aggregate functions etc
  • Q3. SQL queries to find duplicate values
  • Ans. 

    Use SQL queries with GROUP BY and HAVING clause to find duplicate values in a table.

    • Use GROUP BY clause to group the records based on the columns you want to check for duplicates.

    • Use HAVING clause to filter out the groups that have more than one record, indicating duplicates.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • Answered by AI
  • Q4. SQL queries to find second highest salary
  • Ans. 

    Use SQL query with subquery to find second highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT clause to get the second row after skipping the first row

    • Use a subquery to avoid duplicates if multiple employees have the same highest salary

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Generic behavioral questions

Skills evaluated in this interview

Associate Data Engineer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Datastge - How will you remove Header and trailer from Sequential ... read more
asked in Cognizant
Q2. How to delete duplicate rows in Sql
asked in Capgemini
Q3. How would you recommend customer to migrate on cloud
asked in Cognizant
Q4. How to find process id in linux
asked in Cognizant
Q5. Reading Data from a .log file and finding out each column with a ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was well designed

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Questions about data warehousing
  • Q2. Dbt Scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for dbt and other ETL tools
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basicn details to check for qualifications
Round 2 - Technical 

(1 Question)

  • Q1. About my projects
Round 3 - Technical 

(1 Question)

  • Q1. More details about ML models
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Cache vs persist
  • Ans. 

    Cache is used for temporary storage of data in memory, while persist is used for saving data to disk for long-term storage.

    • Cache is typically faster as it stores data in memory for quick access.

    • Persist saves data to disk for durability and long-term storage.

    • Cache is often used for temporary data that can be recomputed if lost, while persist is used for important data that needs to be retained.

    • Examples: Using cache for ...

  • Answered by AI
  • Q2. Broadcast join and other optimization techniques
Round 2 - One-on-one 

(4 Questions)

  • Q1. Sql window function
  • Q2. Spark architecture, dataframe vs rdd
  • Q3. Python reverse sentence
  • Ans. 

    Reverse a sentence using Python

    • Split the sentence into words using split() method

    • Reverse the list of words using list slicing

    • Join the reversed list of words back into a sentence using join() method

  • Answered by AI
  • Q4. Join based on nulls in sql

Skills evaluated in this interview

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

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

Round 1 - Phonographic interview 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. What technology & tools u know ? And basic questions regarding that topics ?
Round 2 - Photographic interview 

(2 Questions)

  • Q1. Job culture and job responsibilities ?
  • Q2. Some questions on an analytical tools like power BI ?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About the project and technical aspect
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It contain both Aptitude and Coding about base models and Deep learning too

Round 2 - Technical 

(2 Questions)

  • Q1. What different models technique ?
  • Ans. 

    Different models techniques include linear regression, decision trees, random forests, support vector machines, and neural networks.

    • Linear regression is used for predicting continuous values.

    • Decision trees are used for classification and regression tasks.

    • Random forests are an ensemble method based on decision trees.

    • Support vector machines are used for classification tasks.

    • Neural networks are used for complex pattern re

  • Answered by AI
  • Q2. What are performance metric where to use what?
  • Ans. 

    Different performance metrics are used for different types of machine learning models to evaluate their effectiveness.

    • For classification models, metrics like accuracy, precision, recall, F1 score, and ROC-AUC are commonly used.

    • For regression models, metrics like mean squared error (MSE), mean absolute error (MAE), and R-squared are commonly used.

    • For clustering models, metrics like silhouette score and Davies-Bouldin in...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Explain about Project
  • Q2. What are problems faced in that project?

Skills evaluated in this interview

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

Highly interactive and technical

Round 2 - Aptitude Test 

1 hr test with focus on math and analytical thinking

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

I applied via Approached by Company and was interviewed in Sep 2023. 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Both interview took around 30min (tech) and 10-15 min (HR) The technical interviewer started with my introduction, and then he explained what are the technologies that company is working on. 1: Rate yo...
Round 3 - HR 

(1 Question)

  • Q1. We made salary negotiation. Why not campus selection? Some family background then how I come to know about the company. He explained the technical backbone of the role and tips for growth

Interview Preparation Tips

Topics to prepare for Innovaccer Data Analyst interview:
  • SQL
  • Python
  • ETL
Interview preparation tips for other job seekers - Practice on SQL queries and Python sequences ,you will sail the interview round.

Celebal Technologies Interview FAQs

How many rounds are there in Celebal Technologies Associate Data Engineer interview?
Celebal Technologies interview process usually has 2-3 rounds. The most common rounds in the Celebal Technologies interview process are Coding Test, One-on-one Round and Technical.
What are the top questions asked in Celebal Technologies Associate Data Engineer interview?

Some of the top questions asked at the Celebal Technologies Associate Data Engineer interview -

  1. How is an empty class created in pyth...read more
  2. SQL queries to find second highest sal...read more
  3. SQL queries to find duplicate val...read more

Tell us how to improve this page.

Celebal Technologies Associate Data Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
View all
Celebal Technologies Associate Data Engineer Salary
based on 157 salaries
₹2.5 L/yr - ₹11 L/yr
15% less than the average Associate Data Engineer Salary in India
View more details

Celebal Technologies Associate Data Engineer Reviews and Ratings

based on 22 reviews

2.8/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

2.8

Salary

2.6

Job security

2.6

Company culture

2.4

Promotions

2.8

Work satisfaction

Explore 22 Reviews and Ratings
Data Engineer
373 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Associate
246 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Associate Data Engineer
157 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Associate Consultant
156 salaries
unlock blur

₹5 L/yr - ₹16.4 L/yr

Data Scientist
126 salaries
unlock blur

₹4.5 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Celebal Technologies 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