Upload Button Icon Add office photos

Filter interviews by

Shaadi.com Data Engineer Interview Questions and Answers

Updated 14 Jun 2024

Shaadi.com Data Engineer Interview Experiences

2 interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2024

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

45 mins: AWS,Data warehouse,Python

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. Explain BigQuery
  • Ans. 

    BigQuery is a fully managed, serverless data warehouse by Google Cloud for analyzing large datasets using SQL.

    • Fully managed and serverless data warehouse

    • Allows for analyzing large datasets using SQL

    • Integrates with other Google Cloud services like Data Studio and AI Platform

  • Answered by AI

Data Engineer Interview Questions & Answers

user image rajendra patil

posted on 4 Mar 2024

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Understanding about Redshift, SQL, Data Analysis, Data Modelling
  • Q2. Explain the types of Data Modelling and its concepts.
  • Ans. 

    Data Modelling involves creating a visual representation of data to understand relationships and patterns.

    • Types of Data Modelling include Conceptual, Logical, and Physical models

    • Conceptual model focuses on high-level business concepts and relationships

    • Logical model translates the conceptual model into a more detailed structure

    • Physical model represents how the data will be stored in a database system

    • Data Modelling conce...

  • Answered by AI

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 LTIMindtree
Q5. 1) If you are given a card with 1-1000 numbers and there are 4 bo ... read more

Interview questions from similar companies

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Ds algo questions
  • Q2. Js basics
  • Q3. React.js

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Data Structures and Algorithms questions were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Java Questions were asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA medium leetcode questions - easy to solve

Round 2 - Coding Test 

DSA medium 2 questions and core questions 1.5 hrs

Round 3 - HR 

(5 Questions)

  • Q1. Managerial round and company fit check
  • Q2. Tell about company
  • Q3. Why should we hire you?
  • Q4. Tell something not in your resume
  • Q5. How would you handle deadlines?
  • Ans. 

    I prioritize tasks, communicate with stakeholders, and adjust resources as needed to meet deadlines.

    • Prioritize tasks based on importance and urgency

    • Regularly communicate with stakeholders to provide updates and address any issues that may impact deadlines

    • Adjust resources or seek help from team members if necessary to meet deadlines

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and core concepts and be confident
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Increasing triple subsequence, rest is easy hashmap

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Avoid using too much corporate jargon in your CV. Sometimes keeping things simple will get your job done.
View all tips
Round 2 - Aptitude Test 

Reverse a binary tree

Round 3 - Technical 

(2 Questions)

  • Q1. Basics of Spring
  • Q2. Explain Spring MVC
  • Ans. 

    Spring MVC is a framework for building web applications in Java.

    • Spring MVC stands for Model-View-Controller

    • It provides a way to structure your web application

    • It uses annotations to define controllers, request mappings, etc.

    • It supports RESTful web services

    • It integrates with other Spring frameworks like Spring Boot

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python functions
  • Q2. Join on multiple tables
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • Answered by AI

Skills evaluated in this interview

Shaadi.com Interview FAQs

How many rounds are there in Shaadi.com Data Engineer interview?
Shaadi.com interview process usually has 1-2 rounds. The most common rounds in the Shaadi.com interview process are Technical and Aptitude Test.
How to prepare for Shaadi.com 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 Shaadi.com. The most common topics and skills that interviewers at Shaadi.com expect are Computer science, Analytical, Data Management, Data Modeling and Data Warehousing.
What are the top questions asked in Shaadi.com Data Engineer interview?

Some of the top questions asked at the Shaadi.com Data Engineer interview -

  1. Explain the types of Data Modelling and its concep...read more
  2. Explain OOPS conce...read more
  3. Explain BigQu...read more

Tell us how to improve this page.

Shaadi.com Data Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Uplers Interview Questions
4.0
 • 41 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Tokopedia Interview Questions
4.1
 • 25 Interviews
Nestaway Interview Questions
3.9
 • 17 Interviews
HungerBox Interview Questions
3.8
 • 16 Interviews
Chai Point Interview Questions
3.7
 • 14 Interviews
Priceline Interview Questions
3.8
 • 13 Interviews
Logo Infosoft Interview Questions
4.2
 • 12 Interviews
View all
Shaadi.com Data Engineer Salary
based on 6 salaries
₹11 L/yr - ₹15 L/yr
17% more than the average Data Engineer Salary in India
View more details

Shaadi.com Data Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

2.0

Salary

2.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Relationship Manager
82 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Product Advisor
75 salaries
unlock blur

₹1.6 L/yr - ₹4.5 L/yr

Senior Product Advisor
41 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Team Lead
34 salaries
unlock blur

₹3 L/yr - ₹8.7 L/yr

Sales Executive
33 salaries
unlock blur

₹1.8 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Shaadi.com with

Uplers

4.0
Compare

HungerBox

3.8
Compare

Nestaway

3.9
Compare

FoodPanda

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