Upload Button Icon Add office photos

Bharat Petroleum

Compare button icon Compare button icon Compare

Filter interviews by

Bharat Petroleum Electrical Engineer Interview Questions and Answers

Updated 3 Dec 2020

Bharat Petroleum Electrical Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Besic questions

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. What is your strength programming language?
  • Ans. 

    My strength programming language is C++. I have extensive experience in developing software and solving complex problems using C++.

    • Proficient in object-oriented programming with C++

    • Strong knowledge of data structures and algorithms

    • Experience in developing efficient and scalable code

    • Familiarity with C++ libraries and frameworks

    • Ability to debug and optimize code for performance

    • Experience in multi-threading and parallel p...

  • Answered by AI
  • Q2. Differences between C and Java?
  • Ans. 

    C is a low-level programming language while Java is a high-level object-oriented language.

    • C is a procedural language while Java is an object-oriented language.

    • C has manual memory management while Java has automatic garbage collection.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C is typically used for system-level programming while Java is used for application devel

  • Answered by AI
  • Q3. What is data structure?
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and manipulated efficiently.

    • Data structures define the way data is organized and stored in memory.

    • They provide efficient algorithms for accessing, inserting, and deleting data.

    • Examples of data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • Answered by AI
  • Q4. Where do u see yourself after 5 years?
  • Ans. 

    In 5 years, I see myself as a senior electrical engineer leading a team on innovative projects and contributing to the growth of the company.

    • Leading a team on innovative projects

    • Contributing to the growth of the company

    • Possibly pursuing further education or certifications

    • Mentoring junior engineers

    • Attending industry conferences and staying updated on latest technologies

  • Answered by AI
  • Q5. If you got selected in CAT examination, what would u prefer job or further studies?
  • Ans. 

    I would prefer a job to gain practical experience and apply my knowledge in a real-world setting.

    • Prefer job for practical experience

    • Apply knowledge in real-world setting

    • Gain industry exposure

    • Financial independence

    • Opportunity for career growth

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: On that day huge strength of students was attended, including our university. The criteria are 60% in 10th,12th, and current degree without standing arrears. However I qualified for this round. It was simple.
Tips: 1. Command over the vocabulary.
2. Reading of newspaper and novels regularly.

Duration: 1 hour
Total Questions: 50

Round: Group Discussion
Experience: There were 7 groups which consisted 10 members each. Each person had given the time seperately to talk about the topic and later HR was asking a general question.
Tips: 1. Fluency should be good.
2. Clarity in voice.
3. Knowledge about the topic
Duration: 11 hours 20 minutes

Round: Technical + HR Interview
Experience: There was panel of 4 people who were asking questions. They went through all my resume and asked the questions.
Tips: 1.Confidence
2. Knowledge about languages
3. Proper resume
3. Inflencial technical skills


College Name: Ajay Kumar Garg Engineering College, Ghaziabad

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Nov 2018. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Any requirement for electrical engineer....
  • Q2. I am motivate doing like this job
  • Q3. I want a good job

Interview Preparation Tips

Interview preparation tips for other job seekers - When did call u sir for me interview....

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coming to AEM,Interviewer has covered all the topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join in TechMahindra.Especially for AEM Folks.Because there are no projects at all.They force you to learn and work in other domain.Then your AEM knowledge will vanish.Worst Company.

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?
  • Ans. 

    Name mangling is a technique used by compilers to give unique names to functions and variables to avoid naming conflicts.

    • Name mangling is used in C++ to support function overloading.

    • It is also used in Python to avoid naming conflicts in modules.

    • Name mangling can make it difficult to access variables and functions from outside the class in which they are defined.

    • In C++, name mangling can be seen by using the 'nm' comman

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Past experience and communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Electrical Engineer Interview Questions & Answers

TCS user image Ganesh Chandurkar

posted on 24 Oct 2017

Interview Questionnaire 

1 Question

  • Q1. About Transformer

Interview Preparation Tips

Round: Test
Duration: 10 hours 5 minutes
Total Questions: 10

I applied via Approached by Company and was interviewed in Oct 2018. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical questions like transformer & transmission and distribution system
  • Q2. Salary discussion.

Interview Preparation Tips

Round: Test
Experience: Aptitude, 60 questions 60 minutes

General Tips: Nice interview
This interview was a technical one but was majorly a stress test. It lasted for about 1 hour 10 minutes. The interviewer wanted to test both my knowledge and communication skills.
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: 1-4 weeks

Senior Engineer Interview Questions & Answers

HCLTech user image raja reddy duggi reddy

posted on 27 Apr 2021

Interview Questionnaire 

2 Questions

  • Q1. Engineering Technical
  • Q2. Mainly on Engineering Design

Interview Questionnaire 

6 Questions

  • Q1. Explain abstract factory design pattern ?
  • Ans. 

    Abstract Factory is a creational design pattern that provides an interface for creating families of related objects.

    • Abstract Factory is used when we need to create families of related objects without specifying their concrete classes.

    • It provides an interface for creating objects of related classes without specifying their concrete classes.

    • It encapsulates a group of factories that have a common theme.

    • It promotes loose c...

  • Answered by AI
  • Q2. How do you do range based map iteration
  • Ans. 

    Range based map iteration can be done using a for-each loop or iterators.

    • Use a for-each loop to iterate over the map elements.

    • Alternatively, use iterators to traverse the map.

    • The range-based for loop is preferred for its simplicity and readability.

    • Example: for(auto const& [key, value] : myMap) { //do something with key and value }

  • Answered by AI
  • Q3. What are detached and joined threads
  • Ans. 

    Detached threads are independent threads that run separately from the main thread. Joined threads are threads that wait for the main thread to finish.

    • Detached threads are created using pthread_detach() function

    • Joined threads are created using pthread_join() function

    • Detached threads do not need to be explicitly terminated

    • Joined threads must be explicitly terminated using pthread_exit() or return statement

    • Detached thread...

  • Answered by AI
  • Q4. What are static code analysis tools
  • Ans. 

    Static code analysis tools are software programs that analyze source code to find potential issues and improve code quality.

    • Static code analysis tools scan code without executing it

    • They can detect issues such as security vulnerabilities, coding errors, and performance problems

    • Examples of static code analysis tools include SonarQube, ESLint, and Checkstyle

  • Answered by AI
  • Q5. Command to list currently running threads in linux
  • Ans. 

    Command to list currently running threads in linux

    • Use the 'ps' command with the 'H' option to display threads in a hierarchy

    • Use the 'top' command to display threads in real-time

    • Use the 'htop' command for an interactive display of threads

  • Answered by AI
  • Q6. Can we perform arithmetic operation on Unique pointer
  • Ans. 

    No, arithmetic operations cannot be performed on unique pointers.

    • Unique pointers are used to manage the lifetime of dynamically allocated objects.

    • They cannot be copied or assigned, only moved.

    • Arithmetic operations are not defined for pointers, including unique pointers.

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Bharat Petroleum Electrical Engineer Salary
based on 38 salaries
₹1.8 L/yr - ₹5.1 L/yr
27% less than the average Electrical Engineer Salary in India
View more details

Bharat Petroleum Electrical Engineer Reviews and Ratings

based on 6 reviews

3.7/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

3.4

Salary

2.7

Job security

3.4

Company culture

3.1

Promotions

3.0

Work satisfaction

Explore 6 Reviews and Ratings
Graduate Apprentice Trainee
238 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graduate Apprenticeship Trainee
124 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graduate Engineer Trainee (Get)
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Bharat Petroleum with

Indian Oil Corporation

4.4
Compare

Hindustan Petroleum

4.2
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