Upload Button Icon Add office photos

Filter interviews by

Mahatma Gandhi Institute of Rural Energy and Development Interview Questions and Answers

Updated 6 Mar 2022

Mahatma Gandhi Institute of Rural Energy and Development Interview Experiences

1 interview found

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 - Assignment 

Video of the intern speaking about their experience on certain topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Take an active effort to do the due diligence. It's worth it

Resource Person Interview Questions asked at other Companies

Q1. how would you teach primary level mathematics to class 8 children along with other 35 children in 40 minutes period as a teacher? basically multi-level teaching
View answer (6)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Diesel Generator: A Reliable Power Source
A diesel generator is a self-contained power generating unit that combines a diesel engine with an electric generator (often an alternator). It's a versatile and widely used source of electricity, particularly in situations where a reliable power supply is crucial.
How Diesel Generators Work
* Diesel Engine: The diesel engine, fueled by diesel fuel, acts as the prime mover. It converts the chemical energy of the fuel into mechanical energy through combustion.
* Electric Generator: The mechanical energy from the engine is transferred to the generator, which converts it into electrical energy. This electrical energy can then be used to power various appliances and equipment.
Applications of Diesel Generators
* Backup Power: Diesel generators are commonly used as backup power sources for homes, businesses, hospitals, and critical infrastructure during power outages.
* Remote Locations: In areas with limited or no access to the grid, diesel generators provide a reliable source of electricity for various applications.
* Construction Sites: Diesel generators power tools and equipment on construction sites, ensuring work can continue even in remote locations.
* Off-Grid Living: Individuals living off the grid often rely on diesel generators for their electricity needs.
* Data Centers: Diesel generators provide backup power to ensure the continuous operation of critical data centers.
Advantages of Diesel Generators
* Reliability: Diesel engines are known for their durability and reliability, making them suitable for demanding applications.
* Fuel Efficiency: Modern diesel engines offer excellent fuel efficiency, reducing operating costs.
* Wide Power Range: Diesel generators are available in a wide range of sizes and power capacities, catering to various needs.
* Easy Maintenance: Diesel generators are relatively easy to maintain and service.
Disadvantages of Diesel Generators
* Noise: Diesel generators can be noisy, which may be a concern in certain settings.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Transformer & protection
  • Q2. Breaker & protection
  • Q3. Motor panel Feeder & protection
Round 3 - One-on-one 

(2 Questions)

  • Q1. Motor & Motor protection
  • Q2. All types panel & protection
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

The assessment focused on general aptitude, which was relatively easy and manageable to pass. However, the pseudo-code section may pose a greater challenge during the first round.

Round 2 - Group Discussion 

It is very easy; you just need to speak at least once to easily pass through this round. mostly they dont try to reject you unless you are very nervous and very low about confidence they want you to speak atleast once , even the point is valid or not.

Round 3 - Coding Test 

You will undergo a written test comprising three coding sections (either in Python or C) containing five or six questions each, along with ten multiple-choice questions on software testing, which are relatively easy. However, the most challenging section is networking, for which you will need to write theory responses; therefore, it is important to prepare thoroughly for that part.

Round 4 - One-on-one 

(2 Questions)

  • Q1. They first asked for self-introduction and then asked you to explain the programs that were assigned to you in a step-by-step manner.
  • Q2. Then the major part is networking, if you gone through by successfully explains your coding then you will be completely checked with networking which is really tough, like they asked me that to tell port n...
Round 5 - HR 

(1 Question)

  • Q1. Actually there is HR done in my process , whoever cleared technical all were selected. But the issue is the there is no stipend for internship , and the role is embedded testing which was told only in the ...

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy to clear first 2 round(aptitude ,gd) and round 3 and round 4 is written and technical panel ,written is in your hand but panel is based on your luck . Thank you
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(22 Questions)

  • Q1. API Gateway implementation
  • Ans. 

    API Gateway implementation is a centralized service that routes, manages, and secures API calls.

    • API Gateway acts as a single entry point for all API calls

    • It can handle authentication, rate limiting, caching, and request/response transformations

    • Examples include AWS API Gateway, Apigee, Kong

  • Answered by AI
  • Q2. Circuit breaker implementation
  • Ans. 

    Circuit breaker is a design pattern used to prevent system overload by temporarily stopping requests to a failing service.

    • Circuit breaker monitors requests to a service and opens when the service fails repeatedly.

    • It helps prevent cascading failures and allows the system to gracefully degrade.

    • Once the circuit breaker is open, it can periodically check if the service has recovered before allowing requests again.

  • Answered by AI
  • Q3. What is deadlock? How to avoid it?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Avoid circular wait by ensuring processes request resources in the same order.

    • Prevent hold and wait by requiring processes to request all needed resources at once.

    • Implement a timeout mechanism to break potential deadlocks.

    • Use resource allocation graphs to detect and prevent deadlocks.

    • ...

  • Answered by AI
  • Q4. Explain equals() method
  • Ans. 

    The equals() method is used to compare the contents of two objects for equality.

    • The equals() method is a method of the Object class in Java.

    • It is used to compare the contents of two objects for equality.

    • The default implementation of equals() in the Object class compares memory addresses, so it is often overridden in custom classes to compare content.

    • Example: String class overrides equals() method to compare the content

  • Answered by AI
  • Q5. How mongodb was integrated in your application?
  • Ans. 

    MongoDB was integrated in the application by using the official Java driver and configuring connection settings.

    • Used the official MongoDB Java driver to interact with the database

    • Configured connection settings such as host, port, database name, and authentication credentials

    • Implemented CRUD operations using MongoDB Java driver methods

    • Utilized MongoDB aggregation framework for complex queries

  • Answered by AI
  • Q6. What is hibernate?
  • Ans. 

    Hibernate is an open-source Java framework that simplifies the development of database interactions in Java applications.

    • Hibernate is an Object-Relational Mapping (ORM) tool that maps Java objects to database tables.

    • It provides a way to perform database operations using Java objects instead of writing SQL queries.

    • Hibernate handles the mapping of Java classes to database tables and vice versa, as well as the generation ...

  • Answered by AI
  • Q7. Runnable vs Callable interface
  • Ans. 

    Runnable is a functional interface with a single run() method, while Callable is a functional interface with a single call() method.

    • Runnable is used for tasks that do not return a result, while Callable is used for tasks that return a result.

    • Callable can throw checked exceptions, while Runnable cannot.

    • Callable returns a Future object, which can be used to retrieve the result of the computation.

    • Example: Runnable - execu...

  • Answered by AI
  • Q8. Which type of data is returned by Callable interface?
  • Ans. 

    The Callable interface in Java returns a Future object.

    • Callable interface returns a Future object which represents the result of a computation that may not be available yet.

    • The Future object can be used to retrieve the result of the computation, check if it is done, or cancel the computation.

    • Example: Callable<Integer> task = () -> { return 42; }

  • Answered by AI
  • Q9. HashMap internal working
  • Q10. Concurrent HashMap internal working
  • Q11. How to monitor health of your application?
  • Ans. 

    Monitor application health using metrics, logs, alerts, and performance monitoring tools.

    • Use monitoring tools like Prometheus, Grafana, or New Relic to track key metrics such as CPU usage, memory usage, response times, and error rates.

    • Implement logging to record important events and errors in your application. Use tools like ELK stack (Elasticsearch, Logstash, Kibana) for log analysis.

    • Set up alerts to notify you of any...

  • Answered by AI
  • Q12. How to call an API in a Microservice architecture?
  • Ans. 

    To call an API in a Microservice architecture, use HTTP requests or messaging protocols like gRPC.

    • Use HTTP requests to communicate between microservices

    • Implement RESTful APIs for easy integration

    • Leverage messaging protocols like gRPC for efficient communication

    • Consider using service discovery mechanisms for dynamic API calls

  • Answered by AI
  • Q13. Explain Profiles
  • Ans. 

    Profiles in Java are configurations that define the capabilities of a Java platform.

    • Profiles allow developers to target specific types of devices or applications.

    • They help in reducing the size of the Java runtime environment by including only the necessary APIs.

    • Examples include Java SE Embedded Profile for embedded devices and Java SE Compact Profile for resource-constrained environments.

  • Answered by AI
  • Q14. What is OpenFeign, and how is it used in microservices architecture?
  • Ans. 

    OpenFeign is a declarative web service client used to simplify the process of making HTTP requests in microservices architecture.

    • OpenFeign allows developers to define RESTful web services as interfaces and automatically generate the necessary implementation code.

    • It integrates seamlessly with Spring Cloud and other microservices frameworks to facilitate communication between services.

    • OpenFeign supports features like loa...

  • Answered by AI
  • Q15. What is the implementation process for service registry and discovery?
  • Ans. 

    Service registry and discovery involves registering services and allowing clients to discover and connect to them.

    • Implement a service registry where services can register themselves with metadata

    • Use a service discovery mechanism for clients to find and connect to services

    • Implement health checks to ensure services are available and healthy

    • Use a load balancer to distribute traffic among multiple instances of a service

  • Answered by AI
  • Q16. What are Spring boot actuators?
  • Ans. 

    Spring Boot Actuators are built-in tools that provide insight into the running application.

    • Actuators expose various endpoints to monitor and manage the application.

    • They can be used to check health, metrics, environment details, and more.

    • Examples include /actuator/health, /actuator/metrics, and /actuator/env.

  • Answered by AI
  • Q17. Synchronous vs Asynchronous communication
  • Ans. 

    Synchronous communication is blocking, while asynchronous communication is non-blocking.

    • Synchronous communication waits for a response before continuing, while asynchronous communication does not wait.

    • Examples of synchronous communication include traditional function calls, while examples of asynchronous communication include callbacks and promises.

    • Synchronous communication can lead to performance issues if there are d...

  • Answered by AI
  • Q18. Explain Synchronized keyword
  • Ans. 

    Synchronized keyword is used in Java to control access to shared resources by multiple threads.

    • Synchronized keyword can be applied to methods or code blocks to ensure only one thread can access the synchronized code at a time.

    • It prevents race conditions and ensures thread safety by creating a lock on the object or class.

    • Example: synchronized void myMethod() { // synchronized code block }

  • Answered by AI
  • Q19. What are the consequences of excessively using synchronized blocks and methods in Java?
  • Ans. 

    Excessive use of synchronized blocks and methods in Java can lead to performance issues and potential deadlocks.

    • Decreased performance due to increased contention for locks

    • Potential deadlocks if multiple threads are waiting for each other to release locks

    • Increased complexity and difficulty in debugging and maintaining code

    • Use synchronized sparingly and consider alternatives like ConcurrentHashMap or Lock interface

  • Answered by AI
  • Q20. How can you determine the number of threads needed for your application?
  • Ans. 

    The number of threads needed for an application can be determined based on factors like the type of tasks, hardware resources, and performance requirements.

    • Consider the type of tasks your application needs to perform - CPU-bound tasks may benefit from more threads, while I/O-bound tasks may not.

    • Take into account the hardware resources available - more threads may be beneficial on a multi-core processor compared to a si...

  • Answered by AI
  • Q21. Explain Executor framework
  • Ans. 

    Executor framework is a framework in Java that provides a way to manage and execute tasks asynchronously.

    • Allows for managing thread execution in a more efficient way

    • Provides a way to decouple task submission from task execution

    • Supports various types of executors like ThreadPoolExecutor and ScheduledExecutorService

    • Helps in handling tasks concurrently and asynchronously

  • Answered by AI
  • Q22. Explain BlockingQueue
  • Ans. 

    BlockingQueue is an interface in Java that represents a queue which supports operations that wait for the queue to become non-empty when retrieving an element and wait for space to become available in the queue when adding an element.

    • BlockingQueue is part of the java.util.concurrent package.

    • It is used for implementing producer-consumer scenarios where multiple threads are involved.

    • Methods like put() and take() are used...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why did you leave your previous company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or downsizing

    • Relocation to a new area

  • Answered by AI
  • Q2. Other basic questions asked regarding the relevant skills and technologies I have worked with.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Document verification
  • Q2. Personal details
  • Q3. Group discussion
  • Q4. Hr department discussion
  • Q5. Discussion salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Sir looking my details & requirement of your company.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. I am krishna murthy p
  • Q2. I am Instrested bmm ispat company one of the best company
  • Q3. One opportunity given sir
  • Q4. Electrical engineering
  • Q5. I am name krishna murthy p i am stady diploma electrical engineering I am experience totally 8 years

Interview Preparation Tips

Interview preparation tips for other job seekers - One chanse bmm ispat company I am working I am email ***** i am phone number XXXXX
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Bachelor of Commerce degree with a GPA of 6.79 and an accompanying resume.

Round 2 - Technical 

(5 Questions)

  • Q1. Location send Hyderabad komplly
  • Q2. Hardwark honest project
  • Q3. First introducedy
  • Q4. Salarypackge and times
  • Q5. Respect to office staff

Interview Preparation Tips

Interview preparation tips for other job seekers - Find a job that I would like.

Deputy Regional Planning Manager Interview Questions & Answers

Shapoorji Pallonji Group user image Anonymous

posted on 7 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Technical 

(10 Questions)

  • Q1. Brief about your education, career, previous projects handled, and role & responsibility in past organisations?
  • Q2. Current roles & responsibilities and value addition done by you and your team?
  • Q3. Process flow for planning throughout project life-cycle?
  • Q4. Critical/concerning areas to be monitored?
  • Q5. Productivity and permissible material wastage, process to prepare material reconciliation?
  • Q6. Understanding about claim and type of claim raised/supported to raise in past experience?
  • Q7. Experience of technical aspects and planning assessment required at tendering stage, capabilities to prepare tender submittals and proving insights to management on same?
  • Q8. Necessity of providing PMO support to management?
  • Q9. Understanding about role & responsibility of regional planning manager?
  • Q10. MIS and type of reports prepared in past and their significance for Top managemennt?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a technicaL + aptitude test with 60 minutes duration.

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions regarding the projects that i have done.
  • Q2. They asked me about my favourite subjects and then they asked some basic questions regarding those subjects.
Round 3 - HR 

(1 Question)

  • Q1. HR round in TCE is not an interview round rather it is a video assessment wherein we were given with two HR questions and we have to record a video answering the questions. maximum duration of the video sh...

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise the core subjects of your field as it will help you during your technical test or interview as well. Feel confident while answering the question during Technical/HR interview.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How much experience you have into froud management?
  • Q2. H uch money you can take from parents?
Round 2 - One-on-one 

(2 Questions)

  • Q1. State Head sis equal to Business Development Executive.
  • Q2. State Head is not aware about the product.

Mahatma Gandhi Institute of Rural Energy and Development Interview FAQs

How many rounds are there in Mahatma Gandhi Institute of Rural Energy and Development interview?
Mahatma Gandhi Institute of Rural Energy and Development interview process usually has 2 rounds. The most common rounds in the Mahatma Gandhi Institute of Rural Energy and Development interview process are Resume Shortlist and Assignment.
How to prepare for Mahatma Gandhi Institute of Rural Energy and Development 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 Mahatma Gandhi Institute of Rural Energy and Development. The most common topics and skills that interviewers at Mahatma Gandhi Institute of Rural Energy and Development expect are Bed, Education, English, Institutions and MR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Tata Steel Interview Questions
4.1
 • 827 Interviews
TCS iON Interview Questions
3.9
 • 364 Interviews
Whitehat jr Interview Questions
3.5
 • 311 Interviews
S&P Global Interview Questions
4.2
 • 271 Interviews
View all

Mahatma Gandhi Institute of Rural Energy and Development Reviews and Ratings

based on 3 reviews

4.8/5

Rating in categories

4.7

Skill development

4.7

Work-life balance

4.5

Salary

2.8

Job security

4.7

Company culture

3.0

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Program Coordinator
3 salaries
unlock blur

₹4.2 L/yr - ₹6.2 L/yr

Resource Person
3 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Hindi Translator
3 salaries
unlock blur

₹6 L/yr - ₹6 L/yr

Explore more salaries
Compare Mahatma Gandhi Institute of Rural Energy and Development with

TCS

3.7
Compare

HCLTech

3.5
Compare

Larsen & Toubro Limited

4.0
Compare

BYJU'S

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