Upload Button Icon Add office photos

Filter interviews by

Priceline Data Engineer Interview Questions and Answers

Updated 7 Mar 2024

Priceline Data Engineer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

1.Basic SQL
2. Python based question
3.Data modelling
4. Spark
5. Cloud based questions

Round 2 - Coding Test 

Sql,Python,Data Modeling and Project based questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion and cultural fit.
  • Q2. Basic cultural fit.

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. SQL question to return the shortest duration of flight to travel from NY to HND
  • Ans. 

    Use SQL query to find shortest flight duration from NY to HND

    • Use SQL query with MIN function to find shortest duration

    • Filter flights from NY to HND using WHERE clause

    • Calculate duration by subtracting arrival time from departure time

  • Answered by AI
  • Q2. Pyspark question to read data from a CSV file
  • Q3. There was no question 3
Round 2 - One-on-one 

(3 Questions)

  • Q1. Mostly discussions on Projects at my current company, Design choices and spark related concepts used for optimisations.
  • Q2. SQL question to test syntax knowledge
  • Q3. HRM typical questions like: Why join Grab?

Interview Preparation Tips

Topics to prepare for Grab Greco Data Engineer interview:
  • MySQL
  • Python
  • Spark

Skills evaluated in this interview

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
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Object oriented programming questions

Round 2 - Assignment 

React native component build pagination

Round 3 - HR 

(2 Questions)

  • Q1. Basics of profile
  • Q2. Basics of profile one
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on basis of elastic search
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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design pattern experience
  • Ans. 

    I have extensive experience with various design patterns such as Singleton, Factory, Observer, and MVC.

    • Implemented Singleton pattern to ensure only one instance of a class exists

    • Utilized Factory pattern to create objects without specifying the exact class

    • Implemented Observer pattern for event handling and notifications

    • Utilized MVC pattern for separating concerns in a software application

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

GD COMMON TOPIC WAS DISCUSSED

Round 2 - One-on-one 

(1 Question)

  • Q1. TELL ABOUT YOURSELF , SKILLSETS YOU BRING TO THE TABLE
Round 3 - HR 

(1 Question)

  • Q1. EXPECTED INCOME , RELOCATION PREFERENCE

Interview Preparation Tips

Interview preparation tips for other job seekers - BE CONFIDENT

Priceline Interview FAQs

How many rounds are there in Priceline Data Engineer interview?
Priceline interview process usually has 3 rounds. The most common rounds in the Priceline interview process are Coding Test and HR.
How to prepare for Priceline 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 Priceline. The most common topics and skills that interviewers at Priceline expect are Customer Acquisition, Analytical, Analytics, Cloud Computing and Computer science.

Tell us how to improve this page.

Priceline Data Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
Uber Interview Questions
4.2
 • 167 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Expedia Group Interview Questions
3.8
 • 81 Interviews
LinkedIn Interview Questions
4.3
 • 80 Interviews
Facebook Interview Questions
4.4
 • 70 Interviews
Uplers Interview Questions
4.1
 • 41 Interviews
FabHotels Interview Questions
3.0
 • 33 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
View all
Priceline Data Engineer Salary
based on 10 salaries
₹15 L/yr - ₹36.4 L/yr
184% more than the average Data Engineer Salary in India
View more details

Priceline Data Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
40 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Senior Software Engineer
22 salaries
unlock blur

₹25 L/yr - ₹46 L/yr

Software Engineer II
17 salaries
unlock blur

₹18.5 L/yr - ₹32 L/yr

Software Engineer2
14 salaries
unlock blur

₹23.4 L/yr - ₹35 L/yr

Senior Analyst
11 salaries
unlock blur

₹16 L/yr - ₹35 L/yr

Explore more salaries
Compare Priceline with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

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