Upload Button Icon Add office photos

Filter interviews by

Petronas Data Engineer Interview Questions and Answers

Updated 16 Nov 2024

Petronas Data Engineer Interview Experiences

1 interview found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about AWS services
  • Q2. Data manipulation using Python
  • Ans. 

    Python is commonly used for data manipulation tasks due to its powerful libraries like Pandas and NumPy.

    • Use Pandas library for data manipulation tasks in Python

    • Pandas provides data structures like DataFrame for easy manipulation

    • Use NumPy for numerical operations on data arrays

    • Example: df['new_column'] = df['column1'] + df['column2']

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. What is the purpose of using Common Table Expressions (CTE) in SQL?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. SQL table distributions.
  • Q2. ADF switching questions?
  • Q3. How do you optimize the performance?
  • Ans. 

    Performance optimization in data engineering involves tuning queries, indexing, partitioning, and utilizing appropriate hardware.

    • Tune queries by optimizing SQL code, using appropriate joins, and avoiding unnecessary operations.

    • Utilize indexing to speed up data retrieval by creating indexes on frequently queried columns.

    • Partition data to distribute it across multiple nodes or servers for parallel processing.

    • Utilize appr...

  • Answered by AI
  • Q4. What is stored procedure?
  • Ans. 

    A stored procedure is a set of SQL statements that can be saved and reused in a database management system.

    • Stored procedures are used to perform a specific task or set of tasks in a database.

    • They can accept input parameters and return output parameters.

    • Stored procedures can improve performance by reducing the amount of data sent between the database and the application.

    • They can also enhance security by controlling acce...

  • Answered by AI
  • Q5. Ranking functions in SQL?
  • Ans. 

    Ranking functions in SQL are used to assign a rank to each row based on a specific criteria.

    • Ranking functions include RANK(), DENSE_RANK(), and ROW_NUMBER()

    • RANK() assigns a unique rank to each distinct row

    • DENSE_RANK() assigns a unique rank to each distinct row without gaps

    • ROW_NUMBER() assigns a unique sequential integer to each row

  • Answered by AI
  • Q6. Modelling questions.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2023. There were 4 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 - Case Study 

Asked Real Time Scenario to create Microservice for Train and Station information. The interviewer asked what are the properties needs to be considered for evaluating service.

Core Java 11 questions: Webservices, Improvement in JVM, Threads

Java 8: Asked to write a program based on Group By Scenario.

The interview lasts around 2 hrs.

Round 3 - Technical 

(1 Question)

  • Q1. Managerical round: Asked about current project details, The reason to join BH, Scenario based question on LinkedList vs ArrayList
Round 4 - HR 

(1 Question)

  • Q1. It was easy. The HR told about company policies

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Cover Spring Boot, MySQL more
2. Go to BH page to know more, This will help u to answer questions will be asked in Manager Round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LRU Cache Implementation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Reverse a binary tree and few other technical questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Data structure and Oops concepts were asked
Round 3 - Technical 

(1 Question)

  • Q1. Technical round on projects that we have worked on and questions around that
Round 4 - HR 

(1 Question)

  • Q1. General HR questions
Round 5 - Behavioral 

(1 Question)

  • Q1. More of like a general conversation with the center manager
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Feb 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. What is oops, explain them?
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • OOP is based on the concept of classes and objects.

    • It allows for encapsulation, inheritance, and polymorphism.

    • Encapsulation hides the internal details of an object and provides a public interface.

    • Inheritance allows classes to inherit properties and methods from other classes.

    • Polymorphism allows objects of diff...

  • Answered by AI
  • Q2. What is difference between interface and abstract class?
  • Ans. 

    Interface defines only method signatures while abstract class can have method implementations.

    • An interface can be implemented by multiple classes while a class can extend only one abstract class.

    • An abstract class can have instance variables while an interface cannot.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can provide default implementations for some methods while an interface...

  • Answered by AI
  • Q3. What is difference between docker and kubernet?
  • Ans. 

    Docker is a containerization platform while Kubernetes is a container orchestration tool.

    • Docker is used to create, deploy, and run applications in containers.

    • Kubernetes is used to manage and orchestrate multiple containers in a cluster.

    • Docker provides a way to package and distribute applications in a portable manner.

    • Kubernetes provides features like automatic scaling, load balancing, and self-healing.

    • Docker is a lower-...

  • Answered by AI
  • Q4. What is event emitter in angular?
  • Ans. 

    Event emitter is a class in Angular that allows communication between components.

    • Event emitter is used to emit custom events in Angular.

    • It allows communication between parent and child components.

    • It can be used to pass data from child to parent component.

    • It is a part of the @angular/core package.

    • Example: @Output() eventEmitter = new EventEmitter();

  • Answered by AI
  • Q5. What is view encapsulation in angular?
  • Ans. 

    View encapsulation is a feature in Angular that allows for the creation of isolated components.

    • View encapsulation ensures that styles defined in a component do not affect other components.

    • There are three types of view encapsulation: Emulated, Native, and None.

    • Emulated is the default and uses CSS to emulate shadow DOM.

    • Native uses the browser's native shadow DOM implementation.

    • None does not provide any view encapsulation

  • Answered by AI
  • Q6. How to communicate with components in angular?
  • Ans. 

    Components in Angular can communicate with each other using @Input, @Output, and services.

    • Use @Input to pass data from parent to child component

    • Use @Output to emit events from child to parent component

    • Use services to share data between components that are not directly related

    • Use RxJS subjects to create a shared data stream between components

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basic ready but it luck is equally important.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 question :

1. Find the longest common subsequence in 2 strings
2. find the 5th highest revenue from the table in last 28 days in a particular region

Round 2 - Coding Test 

I was given a list of book, genre of books and books and rating of books . All list was of equal length n.

There were 2 methods which need to be implemented
1. get highest rating of book by genre . if rating are same then in lexographical order
2. update book rating by book name

Round 3 - HR 

(2 Questions)

  • Q1. These questions were basic
  • Q2. There were lots of imaginative situation given and then I was asked to say what I would do in those situation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your DSA and SQL throughly
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Question as per my skill set from SQL, Unix, Power Center Mappings.
Round 3 - Technical 

(1 Question)

  • Q1. In detail questions on skill sets and writing logic and flow diagram for one of the problem statement
Round 4 - HR 

(1 Question)

  • Q1. General discussion on expectations and the requirments
Round 5 - Behavioral 

(1 Question)

  • Q1. Don't remember the exact questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

First round was online assessment test with programming and aptitude games

Round 3 - Technical 

(2 Questions)

  • Q1. Group Anagram question
  • Q2. SQL question to get name of employee whose salary is greater than average salary of the department
  • Ans. 

    SQL query to retrieve name of employee with salary greater than department average.

    • Calculate average salary of department using GROUP BY clause

    • Join employee and department tables using department ID

    • Filter employees with salary greater than department average

    • Select employee name

  • Answered by AI

Interview Preparation Tips

Topics to prepare for British Petroleum Data Engineer interview:
  • Spark
  • Cloud
  • Programming
  • SQL
Interview preparation tips for other job seekers - I solved all question in technical round 1 with optimal time complexity still they rejected me to get next rounds.

Skills evaluated in this interview

Petronas Interview FAQs

How many rounds are there in Petronas Data Engineer interview?
Petronas interview process usually has 1 rounds. The most common rounds in the Petronas interview process are One-on-one Round.
What are the top questions asked in Petronas Data Engineer interview?

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

  1. Data manipulation using Pyt...read more
  2. Questions about AWS servi...read more

Tell us how to improve this page.

Petronas Data Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Data Engineer Interview Questions from Similar Companies

View all

Petronas Data Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Data Scientist
6 salaries
unlock blur

₹20.5 L/yr - ₹93 L/yr

Logistics and Supply Chain Management Executive
5 salaries
unlock blur

₹7.3 L/yr - ₹7.3 L/yr

FMR
5 salaries
unlock blur

₹2.5 L/yr - ₹3.6 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹9.5 L/yr - ₹18.6 L/yr

Company Secretary
5 salaries
unlock blur

₹14 L/yr - ₹15 L/yr

Explore more salaries
Compare Petronas with

Reliance Industries

4.0
Compare

Indian Oil Corporation

4.4
Compare

Bharat Petroleum

4.2
Compare

Hindustan Petroleum

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