Upload Button Icon Add office photos

Filter interviews by

Odisha Power Generation Corporation Software Engineer Interview Questions and Answers

Updated 2 Jul 2024

Odisha Power Generation Corporation Software Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What is MVC architecture
  • Ans. 

    MVC architecture is a software design pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly

  • Answered by AI
  • Q2. Explain lifecycle of Javascript
  • Ans. 

    JavaScript lifecycle involves initialization, execution, and cleanup phases.

    • Initialization phase: variables are declared and functions are defined.

    • Execution phase: code is executed line by line.

    • Cleanup phase: resources are released and memory is freed.

    • Example: var x = 5; function foo() { return x; } foo();

  • Answered by AI
Round 2 - Coding Test 

System Design on Payments Platform

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2022. 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 - Technical 

(1 Question)

  • Q1. Core Java, spring jpa, relationship like one to one, one to many, many to oneetc, composit key. More important many questions come from your cv like what you did in your project
Round 3 - Behavioral 

(1 Question)

  • Q1. Just basic behaviour questions, also be ready with some technical questions as well
Round 4 - HR 

(1 Question)

  • Q1. Only joining discussion and formalities 😃😃

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick with your core java basics, your project details
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 que was asked regading linked list , little bit complex

Round 2 - Technical 

(1 Question)

  • Q1. One que on LRU cache, not simple one
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Analysis , graph , dp , recursion

Round 2 - Coding Test 

Array, string, graph

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

I applied via LinkedIn and was interviewed before Nov 2022. 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 - Coding Test 

Asked basic C++ Qs, tree and linked list Qs

Round 3 - One-on-one 

(2 Questions)

  • Q1. Manager related Qs
  • Q2. Future plans, how to maintain team , how do you work with others in the team etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in communication skills,

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

Interview Questionnaire 

1 Question

  • Q1. The HR round was very pathetic. Sreethala took my HR round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't waste your precious time in giving the interview for Baker Hughes, Powai
Mumbai location. They will take all the interview rounds. The HR will ask you to submit all documents and last moment they will cancel your candidature without giving you any specific reason.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1st round is technical , 2nd is values & behaviors , 3rd is assessment road
  • Q2. Be clear on values & behaviours , practice assement round offline before attempting

Interview Preparation Tips

Interview preparation tips for other job seekers - its a long process may take 2-3 months , there is internal & external assement before selectioon is finalized . Good luck
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

Question on stock prices

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

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

Round 1 - Group Discussion 

Behavioral questions and resume delve

Round 2 - Case Study 

Pmi - product management information

Interview Preparation Tips

Interview preparation tips for other job seekers - study supply chain, product management information and presentation
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:
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 - 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

Odisha Power Generation Corporation Interview FAQs

How many rounds are there in Odisha Power Generation Corporation Software Engineer interview?
Odisha Power Generation Corporation interview process usually has 2 rounds. The most common rounds in the Odisha Power Generation Corporation interview process are One-on-one Round and Coding Test.
What are the top questions asked in Odisha Power Generation Corporation Software Engineer interview?

Some of the top questions asked at the Odisha Power Generation Corporation Software Engineer interview -

  1. What is MVC architect...read more
  2. Explain lifecycle of Javascr...read more

Tell us how to improve this page.

Odisha Power Generation Corporation Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Bharat Petroleum Interview Questions
4.1
 • 150 Interviews
GAIL Interview Questions
4.4
 • 67 Interviews
ExxonMobil Interview Questions
3.8
 • 65 Interviews
bp Interview Questions
3.8
 • 62 Interviews
Saudi Aramco Interview Questions
4.5
 • 56 Interviews
Baker Hughes Interview Questions
4.0
 • 55 Interviews
Petrofac Interview Questions
4.3
 • 41 Interviews
Cairn Energy Interview Questions
3.7
 • 30 Interviews
TotalEnergies Interview Questions
3.8
 • 29 Interviews
View all
Assistant Manager
50 salaries
unlock blur

₹4.2 L/yr - ₹14.5 L/yr

Manager
42 salaries
unlock blur

₹12.4 L/yr - ₹24 L/yr

Senior Assistant Manager
38 salaries
unlock blur

₹7.5 L/yr - ₹18 L/yr

Deputy Manager
38 salaries
unlock blur

₹8.3 L/yr - ₹18.8 L/yr

Safety Specialist
12 salaries
unlock blur

₹7.8 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Odisha Power Generation Corporation with

Indian Oil Corporation

4.4
Compare

Bharat Petroleum

4.1
Compare

GAIL

4.4
Compare

Petrofac

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