Upload Button Icon Add office photos

Filter interviews by

Indian Energy Exchange Senior Software Developer Interview Questions and Answers

Updated 10 Aug 2024

Indian Energy Exchange Senior Software Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic. Netquestion
  • Q2. Seenario based questions
Round 2 - Technical 

(2 Questions)

  • Q1. With Vise presideny scanrio based questions
  • Q2. Scenario based qedtions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Method Overloading and Method Overriding
  • Q2. Excel Presentation

Interview Preparation Tips

Interview preparation tips for other job seekers - Work with business team and on excel presentation.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is MVP architecture?
  • Ans. 

    MVP architecture stands for Model-View-Presenter architecture, a design pattern that separates the presentation layer from the business logic.

    • MVP divides the application into three components: Model (data), View (UI), and Presenter (logic).

    • Model represents the data and business logic, View represents the UI, and Presenter acts as an intermediary that communicates between Model and View.

    • MVP helps in achieving separation...

  • Answered by AI
  • Q2. How to structure a database for a amazon like application
  • Ans. 

    Use relational database with tables for users, products, orders, etc. Utilize indexes for fast querying.

    • Create a table for users with columns like user_id, name, email, etc.

    • Create a table for products with columns like product_id, name, price, etc.

    • Create a table for orders with columns like order_id, user_id, product_id, quantity, etc.

    • Utilize indexes on commonly queried columns like user_id, product_id for faster retri...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. System level design
  • Q2. Network layer optimization
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 Sep 2022. 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 

(2 Questions)

  • Q1. Puzzles were asked and one coding question was asked.
  • Q2. Coding question was based on prime numbers.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and patient. Think before you answer. Don't panic and give wrong answer.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Just half hour interview Oops concept
  • Q2. . Net and angular basics
  • Q3. Project in details
Round 2 - Behavior 

(3 Questions)

  • Q1. What if team is not supporting you
  • Q2. Manager is not agree
  • Q3. 5 year your goals
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. What is node js?
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript code outside of a web browser.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • Node.js is commonly used for building server-side applications.

    • It has a large ecosystem of open-source libraries and frameworks like Express.js.

  • Answered by AI
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism that allows a program to efficiently handle multiple events or tasks concurrently.

    • Event loop is commonly used in asynchronous programming to manage tasks that may take varying amounts of time to complete.

    • It continuously checks for events or tasks in a queue and executes them one by one.

    • Event loop helps prevent blocking of the main thread by allowing non-blocking execution of tasks.

    • Popular exam...

  • Answered by AI
  • Q3. Difference between callback and promise?
  • Ans. 

    Callback is a function passed as an argument to another function to be executed later, while a promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Callback is used in traditional asynchronous programming, while promises are used in modern asynchronous programming.

    • Callbacks can lead to callback hell or pyramid of doom, while promises provide better readability and error hand...

  • Answered by AI
  • Q4. What is middlewares in node js?
  • Ans. 

    Middlewares in Node.js are functions that have access to the request and response objects, and can modify or terminate the request-response cycle.

    • Middlewares are functions that are executed in the middle of the request-response cycle.

    • They can perform tasks like parsing request data, logging, authentication, etc.

    • Middlewares can be added using app.use() method in Express framework.

    • Example: app.use(bodyParser.json()) to p

  • Answered by AI
  • Q5. What is event emitter?
  • Ans. 

    Event emitter is a pattern used to handle and respond to events in software development.

    • Event emitter is a design pattern commonly used in Node.js for handling events.

    • It allows objects to subscribe to events and be notified when those events occur.

    • Event emitter is often used for asynchronous programming and decoupling components.

    • Example: EventEmitter class in Node.js can be used to create custom events and handle them.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Qualifications and current status
Round 2 - Technical 

(3 Questions)

  • Q1. Core and Advance Java questions
  • Q2. Situational questions
  • Q3. Questions related to spring and different frameworks
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Object oriented programming concept.
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to be treated as instances of their parent class or as instances of their own class

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Mar 2022. 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 - HR 

(2 Questions)

  • Q1. What are your interests?
  • Q2. Why do you want to do internship?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume properly. Study about general questions that are asked in HR round.

Indian Energy Exchange Interview FAQs

How many rounds are there in Indian Energy Exchange Senior Software Developer interview?
Indian Energy Exchange interview process usually has 3 rounds. The most common rounds in the Indian Energy Exchange interview process are Technical and HR.
What are the top questions asked in Indian Energy Exchange Senior Software Developer interview?

Some of the top questions asked at the Indian Energy Exchange Senior Software Developer interview -

  1. With Vise presideny scanrio based questi...read more
  2. Seenario based questi...read more
  3. Scenario based qedti...read more

Tell us how to improve this page.

Indian Energy Exchange Senior Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Adani Power Interview Questions
3.9
 • 226 Interviews
Adani Group Interview Questions
3.9
 • 196 Interviews
Tata Power Interview Questions
3.9
 • 164 Interviews
Torrent Power Interview Questions
3.7
 • 131 Interviews
Suzlon Group Interview Questions
4.1
 • 130 Interviews
Eaton Interview Questions
3.9
 • 122 Interviews
Reliance Power Interview Questions
4.1
 • 47 Interviews
Enphase Energy Interview Questions
2.9
 • 42 Interviews
Inox Wind Interview Questions
3.7
 • 38 Interviews
View all
Indian Energy Exchange Senior Software Developer Salary
based on 4 salaries
₹4.7 L/yr - ₹13.2 L/yr
36% less than the average Senior Software Developer Salary in India
View more details

Indian Energy Exchange Senior Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

2.0

Salary

4.0

Job security

3.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Executive
52 salaries
unlock blur

₹5 L/yr - ₹8.1 L/yr

Assistant Manager
40 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

Deputy Manager
32 salaries
unlock blur

₹7.3 L/yr - ₹19.5 L/yr

Software Engineer
17 salaries
unlock blur

₹4 L/yr - ₹5.5 L/yr

Manager
17 salaries
unlock blur

₹13 L/yr - ₹20.6 L/yr

Explore more salaries
Compare Indian Energy Exchange with

Suzlon Group

4.1
Compare

Adani Power

3.9
Compare

Adani Group

3.9
Compare

Torrent Power

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