Upload Button Icon Add office photos
Engaged Employer

i

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

Zupee Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zupee Data Engineer Interview Questions and Answers

Updated 24 Sep 2023

Zupee Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Vaibhav Ashok Tandale

posted on 24 Sep 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. How to read parquet and csv file in spark .
  • Ans. 

    To read parquet and csv files in Spark, use SparkSession's read method with appropriate options.

    • Create a SparkSession object

    • Use the read method of SparkSession to read parquet files with .parquet() method

    • Use the read method of SparkSession to read csv files with .csv() method

    • Specify options like header, delimiter, inferSchema, etc. as needed

    • Load the data into a DataFrame for further processing

  • Answered by AI
  • Q2. How to check second highest sallery.
  • Ans. 

    To check the second highest salary, use the SQL query with ORDER BY and LIMIT.

    • Use SQL query with ORDER BY clause to sort salaries in descending order.

    • Use LIMIT 1,1 to select the second highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't wait for thing to happen, make things happen, take the initiative to identify and solve peoblem.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is bug in any application?
  • Ans. 

    A bug in an application is an error, flaw, failure, or fault in the software code that causes it to produce incorrect or unexpected results.

    • Bugs can range from simple syntax errors to complex logic issues.

    • Common types of bugs include logic errors, syntax errors, and runtime errors.

    • Examples of bugs include a calculator app displaying incorrect results, a website crashing when a specific button is clicked, or a game free

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is the life cycle of bug?
  • Ans. 

    Bug life cycle includes identification, reporting, fixing, retesting, and closing.

    • Identification: Bug is identified by testers during testing.

    • Reporting: Testers report the bug to developers.

    • Fixing: Developers fix the bug in the code.

    • Retesting: Testers retest the fixed bug to ensure it is resolved.

    • Closing: Once bug is confirmed fixed, it is closed.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why team bonding is needed for healthy work culture?

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

(3 Questions)

  • Q1. Details about the projects in your resume
  • Q2. MYSQL codes in window function
  • Ans. 

    MYSQL window functions allow for calculations across rows in a result set.

    • Window functions are used to perform calculations across rows in a result set

    • They are used with the OVER() clause

    • Examples include ROW_NUMBER(), RANK(), DENSE_RANK(), and NTILE()

    • They can be used to calculate running totals, moving averages, and more

  • Answered by AI
  • Q3. Mostly questions related to cricket tables which was told to be assumed

Interview Preparation Tips

Interview preparation tips for other job seekers - Disappointing experience
Interviewer was a young girl she didn't gave any data or material.
Everything was assumption assume tables and she asked me to code in paper
never had such experience.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Dp, trees and basic time complexity

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Projects and intership

Interview Preparation Tips

Topics to prepare for Junglee Games Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Learn DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. The interviewer asked all the concepts of pyspark, ETL and a code on dsa
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Assignment 

Contained aptitude test with both numericals as well as coding questions

Round 3 - Case Study 

It was a one on one round

Round 4 - HR 

(2 Questions)

  • Q1. Final discussion
  • Q2. If ready to relocate
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for a job that aligns with my career goals and offers growth opportunities.

    • I am open to exploring new cities and cultures.

    • I understand that relocation may come with some challenges, but I am prepared to face them.

    • I am excited about the prospect of working with a new team and contributing to the success of the company.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Basic coding test like palindrome, series,arrays

Round 3 - One-on-one 

(1 Question)

  • Q1. Logical questions,puzzle, behavioural round, introduction
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Search in 2d matrix
  • Ans. 

    Search for a target value in a 2D matrix efficiently.

    • Use binary search on rows to find the potential row where the target value may exist.

    • Then use binary search on that row to find the target value.

  • Answered by AI
  • Q2. Find quadraplets that sum to target
  • Ans. 

    Find quadraplets in an array that sum up to a target value.

    • Use a nested loop to iterate through all possible combinations of quadraplets.

    • Keep track of the sum of each quadraplet and compare it to the target value.

    • Return the quadraplets that match the target sum.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Polymorphism and a function to randomize a pack of cards
  • Ans. 

    Polymorphism can be used to create a Card class with different types of cards. A function can then use polymorphism to randomize the pack.

    • Create a Card class with different types of cards as subclasses

    • Implement a function that creates a pack of cards using polymorphism to add different types of cards

    • Use a random number generator to shuffle the pack

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be good with OOPs concepts and you are good to go

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

Interview Questionnaire 

1 Question

  • Q1. Question related to experience and basic questions on manual testing like what is the difference between sanity and smoke, test case strategy and planning and scenario. STLC Phases and Bug cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and try to give generic examples around the questions.

Zupee Interview FAQs

How many rounds are there in Zupee Data Engineer interview?
Zupee interview process usually has 2 rounds. The most common rounds in the Zupee interview process are Resume Shortlist and Technical.
How to prepare for Zupee 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 Zupee. The most common topics and skills that interviewers at Zupee expect are Python, Big Data, Hadoop, Spark and Data Warehousing.
What are the top questions asked in Zupee Data Engineer interview?

Some of the top questions asked at the Zupee Data Engineer interview -

  1. How to read parquet and csv file in spar...read more
  2. how to check second highest salle...read more

Tell us how to improve this page.

Zupee Data Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Aristocrat Interview Questions
3.8
 • 45 Interviews
Dream11 Interview Questions
3.8
 • 37 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
IDZ Digital Interview Questions
3.8
 • 22 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
WinZO Interview Questions
4.0
 • 14 Interviews
ChicMic Interview Questions
4.5
 • 11 Interviews
View all

Zupee Data Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
23 salaries
unlock blur

₹18 L/yr - ₹26.5 L/yr

Software Developer
9 salaries
unlock blur

₹20 L/yr - ₹48.2 L/yr

Finance Manager
7 salaries
unlock blur

₹11 L/yr - ₹18 L/yr

Data Analyst
7 salaries
unlock blur

₹12.5 L/yr - ₹16 L/yr

Quality Analyst
7 salaries
unlock blur

₹3.8 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Zupee with

Dream11

3.8
Compare

Rummy Circle

4.9
Compare

Paytm First Games

3.7
Compare

Mobile Premier League

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