Upload Button Icon Add office photos

Hindustan Petroleum

Compare button icon Compare button icon Compare

Filter interviews by

Hindustan Petroleum Trainee Interview Questions and Answers

Updated 15 Dec 2023

Hindustan Petroleum Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 15 Dec 2023

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

I applied via Newspaper Ad and was interviewed in Nov 2023. 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 - Telephonic Call 

(1 Question)

  • Q1. Where do you stay

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Java c c++

I applied via Company Website and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. - Steps to Create a Docker file - Types of firewall in AWS - How ELK Stack works.
  • Ans. 

    Answers to questions related to Docker, AWS firewall types, and ELK Stack

    • To create a Docker file, start with a base image and add necessary dependencies and configurations

    • AWS has two types of firewalls: Network ACLs and Security Groups

    • ELK Stack is a combination of Elasticsearch, Logstash, and Kibana used for log management and analysis

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong. Overall interview was smooth.

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and energetic.Speak fluently.Thats what they are seeking for

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What Challenges did you faced in Project? And how did you tackled those.
  • Ans. 

    Faced challenges in a project and how tackled them

    • One of the challenges was managing conflicting priorities among stakeholders. I tackled it by setting clear expectations and priorities, and communicating regularly with all parties involved.

    • Another challenge was dealing with unexpected technical issues. I tackled it by conducting thorough research, consulting with experts, and testing different solutions until the issu...

  • Answered by AI
  • Q2. What is Encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is a fundamental concept in object-oriented programming.

    • It helps in achieving data abstraction and information hiding.

    • It allows for better control over the data and prevents unauthorized access.

    • Encapsulation is implemented using access modifiers such as public, private, and protected.

    • For examp...

  • Answered by AI
  • Q3. What is Dailect in Hibernate?
  • Ans. 

    Dialect in Hibernate is a configuration setting that defines the type of database used.

    • Dialect is responsible for generating SQL statements specific to the database.

    • It handles the differences in SQL syntax and data types between different databases.

    • Examples of dialects include MySQLDialect, OracleDialect, and PostgreSQLDialect.

  • Answered by AI
  • Q4. Difference between interface and Abstraction.
  • Ans. 

    Interface defines the contract between two entities while Abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines the methods and properties that a class must implement.

    • Abstraction is a way of hiding the implementation details of a class and exposing only the necessary details to the user.

    • Interface is used for achieving multiple inheritance in Java.

    • Abstraction is used for achieving...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep the communication good with the Interviewer and listen carefully and you will find 50% of approch in the explanation only.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is tcs
  • Ans. 

    TCS stands for Tata Consultancy Services, a multinational IT services company based in India.

    • TCS is one of the largest IT services companies in the world.

    • It provides a wide range of services including consulting, software development, and business process outsourcing.

    • TCS has clients in various industries such as banking, healthcare, and retail.

    • The company has a strong focus on innovation and has several research and de...

  • Answered by AI

I applied via Campus Placement and was interviewed before Oct 2021. 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 - Aptitude Test 

English, mathematics, reasoning

Round 3 - Coding Test 

MCQ question asked in c and java

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • C
  • Java
Interview preparation tips for other job seekers - Good experience and be positive during the interview

Hindustan Petroleum Interview FAQs

How many rounds are there in Hindustan Petroleum Trainee interview?
Hindustan Petroleum interview process usually has 2 rounds. The most common rounds in the Hindustan Petroleum interview process are Resume Shortlist and Telephonic Call.

Tell us how to improve this page.

Hindustan Petroleum Trainee Interview Process

based on 3 interviews

Interview experience

5
  
Excellent
View more
Hindustan Petroleum Trainee Salary
based on 29 salaries
₹1 L/yr - ₹5 L/yr
7% more than the average Trainee Salary in India
View more details

Hindustan Petroleum Trainee Reviews and Ratings

based on 15 reviews

4.4/5

Rating in categories

4.8

Skill development

4.4

Work-life balance

4.4

Salary

4.8

Job security

4.6

Company culture

4.0

Promotions

4.6

Work satisfaction

Explore 15 Reviews and Ratings
Graduate Apprenticeship Trainee
229 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Field Engineer
217 salaries
unlock blur

₹3.5 L/yr - ₹5.2 L/yr

Graduate Apprentice Trainee
180 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Assistant Manager
146 salaries
unlock blur

₹12 L/yr - ₹31.5 L/yr

Project Associate
90 salaries
unlock blur

₹4.5 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Hindustan Petroleum with

Indian Oil Corporation

4.4
Compare

Bharat Petroleum

4.1
Compare

Reliance Industries

4.0
Compare

Oil And Natural Gas Corporation

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