Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Greenovative Energy Team. If you also belong to the team, you can get access from here

Greenovative Energy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Greenovative Energy Interview Questions and Answers

Updated 17 Feb 2025
Popular Designations

8 Interview questions

An Angular Frontend Developer was asked 5mo ago
Q. How do you implement Angular Services?
Ans. 

Angular services are used to create reusable code that can be shared across components.

  • Create a service using the Angular CLI command 'ng generate service serviceName'

  • Inject the service into components by adding it to the providers array in the component's metadata

  • Services can be used to share data between components, perform HTTP requests, or handle business logic

  • Services are singleton instances, meaning there is...

View all Angular Frontend Developer interview questions
An Angular Frontend Developer was asked 5mo ago
Q. What are the methods for communication between components in Angular? Please elaborate.
Ans. 

Methods for communication between components in Angular include Input and Output properties, ViewChild, Services, and EventEmitters.

  • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

  • Using ViewChild to access child components and their properties directly from the parent component.

  • Using Services to create a shared service that can be injec...

View all Angular Frontend Developer interview questions
A Full Stack Software Developer was asked
Q. Explain the new Angular feature that doesn't use @NgModule.
Ans. 

The new Angular feature that doesn't use @NgModule is called Ivy.

  • Ivy is the new rendering engine in Angular that doesn't rely on @NgModule for compilation.

  • It allows for faster compilation times and smaller bundle sizes.

  • Ivy enables features like improved tree shaking and better debugging capabilities.

  • Example: Angular 9 introduced Ivy as the default rendering engine.

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked
Q. What are the types of directives in Angular?
Ans. 

Types of directives in Angular include structural directives, attribute directives, and component directives.

  • Structural directives are used to add or remove elements from the DOM based on conditions (e.g. *ngIf, *ngFor)

  • Attribute directives are used to change the appearance or behavior of an element (e.g. ngStyle, ngClass)

  • Component directives are custom directives that are components themselves (e.g. @Component)

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked
Q. Can a service file have more than one instance? If yes, how?
Ans. 

Yes, a service file can have more than one instance by creating multiple instances of the service class.

  • Multiple instances of a service class can be created by instantiating the class multiple times.

  • Each instance will have its own state and can be used independently.

  • This can be useful for scenarios where multiple instances of the same service are needed to handle different tasks.

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked
Q. How do you make an application scalable?
Ans. 

To make an application scalable, consider using cloud services, optimizing database queries, caching frequently accessed data, and using microservices architecture.

  • Utilize cloud services like AWS or Azure for scalability on demand

  • Optimize database queries to improve performance

  • Implement caching mechanisms for frequently accessed data to reduce load on servers

  • Use microservices architecture to break down the applica...

View all Full Stack Software Developer interview questions
A Full Stack Software Developer was asked
Q. What are pipes in Angular?
Ans. 

Pipes in Angular are used for transforming data in templates.

  • Pipes are used to format data before displaying it in the view.

  • They can be used to filter, sort, or transform data in various ways.

  • Examples include currency, date, uppercase, and lowercase pipes.

View all Full Stack Software Developer interview questions
Are these interview questions helpful?
A Full Stack Software Developer was asked
Q. How would the application work without @NgModule?
Ans. 

The application would not work properly without @NgModule as it is required to bootstrap the application and configure dependencies.

  • Without @NgModule, the application would not be able to bootstrap and start properly.

  • NgModule is used to configure dependencies, such as components, directives, and services.

  • NgModule also helps in organizing the application into modules for better maintainability and reusability.

View all Full Stack Software Developer interview questions

Greenovative Energy Interview Experiences

8 interviews found

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

A table must be created using Angular Material or another UI library to demonstrate CRUD operations.

Round 2 - Technical 

(3 Questions)

  • Q1. Angular performance questions? Which one is faster react or angular?
  • Q2. Angular Services how to implement it ?
  • Ans. 

    Angular services are used to create reusable code that can be shared across components.

    • Create a service using the Angular CLI command 'ng generate service serviceName'

    • Inject the service into components by adding it to the providers array in the component's metadata

    • Services can be used to share data between components, perform HTTP requests, or handle business logic

    • Services are singleton instances, meaning there is only...

  • Answered by AI
  • Q3. What are the methods for communication between components in Angular? Please elaborate.
  • Ans. 

    Methods for communication between components in Angular include Input and Output properties, ViewChild, Services, and EventEmitters.

    • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

    • Using ViewChild to access child components and their properties directly from the parent component.

    • Using Services to create a shared service that can be injected i...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic Aptitude questions testing logic

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about SQL
  • Q2. Questions about Python
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was good and simple test

Round 2 - Assignment 

Took me 1 hour to complete and anther 1 hour for explanation and Q/A

Round 3 - HR 

(3 Questions)

  • Q1. About my family and why i don't want to work in foreign country
  • Q2. My expectation on salary
  • Q3. Long term goal regarding my career

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not go here. They only show me what i lack in tech stack so that i can agree on there offer. I answer all of there question with long explanation still they though i lack tech stack.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2023. 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 - Coding Test 

There was a machine test organised as the 1st round of the interview process. The machine test was on Angular

Round 3 - Technical 

(6 Questions)

  • Q1. Throw some light on the new angular feature that doesn't use @NgModule
  • Ans. 

    The new Angular feature that doesn't use @NgModule is called Ivy.

    • Ivy is the new rendering engine in Angular that doesn't rely on @NgModule for compilation.

    • It allows for faster compilation times and smaller bundle sizes.

    • Ivy enables features like improved tree shaking and better debugging capabilities.

    • Example: Angular 9 introduced Ivy as the default rendering engine.

  • Answered by AI
  • Q2. How would the application work without @NgModule
  • Ans. 

    The application would not work properly without @NgModule as it is required to bootstrap the application and configure dependencies.

    • Without @NgModule, the application would not be able to bootstrap and start properly.

    • NgModule is used to configure dependencies, such as components, directives, and services.

    • NgModule also helps in organizing the application into modules for better maintainability and reusability.

  • Answered by AI
  • Q3. Mid level Angular interview questions
  • Q4. What are types of directives in angular
  • Ans. 

    Types of directives in Angular include structural directives, attribute directives, and component directives.

    • Structural directives are used to add or remove elements from the DOM based on conditions (e.g. *ngIf, *ngFor)

    • Attribute directives are used to change the appearance or behavior of an element (e.g. ngStyle, ngClass)

    • Component directives are custom directives that are components themselves (e.g. @Component)

  • Answered by AI
  • Q5. Can a service file have more than one instance? If yes how?
  • Ans. 

    Yes, a service file can have more than one instance by creating multiple instances of the service class.

    • Multiple instances of a service class can be created by instantiating the class multiple times.

    • Each instance will have its own state and can be used independently.

    • This can be useful for scenarios where multiple instances of the same service are needed to handle different tasks.

  • Answered by AI
  • Q6. What are pipes in angular?
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or transform data in various ways.

    • Examples include currency, date, uppercase, and lowercase pipes.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. How to make an application scalable?
  • Ans. 

    To make an application scalable, consider using cloud services, optimizing database queries, caching frequently accessed data, and using microservices architecture.

    • Utilize cloud services like AWS or Azure for scalability on demand

    • Optimize database queries to improve performance

    • Implement caching mechanisms for frequently accessed data to reduce load on servers

    • Use microservices architecture to break down the application ...

  • Answered by AI
  • Q2. Interview questions based on architecture of project and less of technical aspects
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation, polices discussion, company norms and some basic HR questions.

Interview Preparation Tips

Topics to prepare for Greenovative Energy Full Stack Software Developer interview:
  • Angular
  • HTML
  • CSS
  • Angular Material

Skills evaluated in this interview

HR Executive Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

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

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

Round 1 - HR 

(3 Questions)

  • Q1. Initial screening about my skills and experience.
  • Q2. Why i am looking for a change ?
  • Q3. Why HR is an important function of any organization ?
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(3 Questions)

  • Q1. They asked whatever i did after my education completed.
  • Q2. Asked about family nothing else
  • Q3. About past experiences and why you want to work here?
Round 3 - Technical 

(2 Questions)

  • Q1. Technical questiin based interview
  • Q2. Basic engineeeing related questiins

Interview Preparation Tips

Interview preparation tips for other job seekers - First up all think what kind of job you are trying to do. Then decide to go. Because you will lost every happy momment after joining this company.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(1 Question)

  • Q1. Generic Questions with personal background & experience
Round 2 - Case Study 

Based on Sales Experience few case studies on revenue generations & executing the whole sales cycle.

Round 3 - Technical 

(1 Question)

  • Q1. Product Knowledge & Core Engineering knowledge relevant to company profile.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2022. There were 4 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 - Aptitude Test 

Based on logical reasoning and thinking

Round 3 - Coding Test 

Machine test Based on coding and development

Round 4 - One-on-one 

(2 Questions)

  • Q1. Related to machine test questions were more technical and then general questions to understand attitude and approach.
  • Q2. It was bit long interview but they focus more to understand candidates profile in all aspects.

Interview Preparation Tips

Topics to prepare for Greenovative Energy Software Engineer interview:
  • SQL
  • Python
  • Visual Studio
  • Coding
Interview preparation tips for other job seekers - Good and transparent process to evaluate skills. Gets feedback to improvise.

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Greenovative Energy ?
Ask anonymously on communities.

Interview questions from similar companies

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. About my knowledge in Next js
  • Q2. How do I have my career planned

I applied via Company Website and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Supply Chain action on inter location transfer
  • Ans. 

    Inter location transfer in supply chain involves movement of goods between different locations within the supply chain network.

    • Inter location transfer helps in optimizing inventory levels and reducing lead times.

    • It requires coordination between different locations and proper documentation.

    • Examples include transfer of raw materials from warehouse to production facility, transfer of finished goods from manufacturing plan...

  • Answered by AI
  • Q2. Order action if items are not in stock
  • Ans. 

    Order alternative items or notify customer if items are not in stock.

    • Check inventory levels regularly

    • Identify alternative products that can be offered to customers

    • Notify customers of out-of-stock items and provide estimated restock dates

  • Answered by AI
  • Q3. Which ERPs do you have experience in implementing?
  • Ans. 

    I have experience in implementing SAP and Oracle ERPs.

    • Implemented SAP ERP for a manufacturing company

    • Implemented Oracle ERP for a retail company

    • Experience in customizing ERP modules to meet business requirements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the ERP modules overview and action

Skills evaluated in this interview

Greenovative Energy Interview FAQs

How many rounds are there in Greenovative Energy interview?
Greenovative Energy interview process usually has 2-3 rounds. The most common rounds in the Greenovative Energy interview process are HR, Technical and Resume Shortlist.
How to prepare for Greenovative Energy interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Greenovative Energy . The most common topics and skills that interviewers at Greenovative Energy expect are Industrial Automation, Python, C#, B2B Sales and Javascript.
What are the top questions asked in Greenovative Energy interview?

Some of the top questions asked at the Greenovative Energy interview -

  1. Can a service file have more than one instance? If yes h...read more
  2. Throw some light on the new angular feature that doesn't use @NgMod...read more
  3. How would the application work without @NgMod...read more
How long is the Greenovative Energy interview process?

The duration of Greenovative Energy interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 10 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

Apptunix Interview Questions
4.1
 • 39 Interviews
Odoo Interview Questions
3.3
 • 28 Interviews
Anywhere Interview Questions
4.6
 • 16 Interviews
Seceon Inc. Interview Questions
4.7
 • 13 Interviews
ThrivePass Interview Questions
4.6
 • 10 Interviews
View all

Greenovative Energy Reviews and Ratings

based on 24 reviews

4.0/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.8

Salary

3.6

Job security

3.9

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 24 Reviews and Ratings
Sales Executive

Pune

1-4 Yrs

Not Disclosed

Senior Software Engineer

Pune

5-7 Yrs

Not Disclosed

Marketing Specialist

Pune

7-9 Yrs

Not Disclosed

Explore more jobs
Technical Support Engineer
5 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Software Engineer
4 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Applications Engineer
4 salaries
unlock blur

₹3.3 L/yr - ₹4.2 L/yr

Business Development Manager
4 salaries
unlock blur

₹5.3 L/yr - ₹10.5 L/yr

Software Developer
3 salaries
unlock blur

₹4 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Greenovative Energy with

Bhash Software Labs

4.3
Compare

QR Crypher

4.2
Compare

Apptunix

4.1
Compare

HirePro Consulting

3.7
Compare
write
Share an Interview