Filter interviews by
Calculating wind load involves assessing wind speed, building height, and surface area to determine structural impact.
Determine Basic Wind Speed: Use local building codes to find the basic wind speed for the area, e.g., 90 mph in a hurricane-prone zone.
Calculate Exposure Category: Assess the terrain and surroundings (open, suburban, or urban) to classify the exposure category, affecting wind pressure.
Use the Heigh...
Installing a module over a shed involves structural considerations, ensuring stability and compliance with safety regulations.
Structural Assessment: Evaluate the shed's roof to ensure it can support the weight of the module, considering factors like material and design.
Permits and Regulations: Check local building codes and obtain necessary permits before installation to ensure compliance with safety standards.
Mou...
STAAD.Pro is a structural analysis and design software used for analyzing and designing structures like buildings and bridges.
Comprehensive Analysis: STAAD.Pro supports various types of analysis, including linear, nonlinear, dynamic, and stability analysis.
Multi-Material Design: It allows for the design of structures using different materials such as steel, concrete, and timber.
International Codes: STAAD.Pro compl...
Safety measures during installation work in a rooftop project
Ensure proper training and certification for working at heights
Use appropriate personal protective equipment (PPE) such as helmets, safety harnesses, and non-slip footwear
Secure the work area with barriers or guardrails to prevent falls
Inspect and maintain all equipment and tools regularly
Follow electrical safety protocols and use insulated tools when wo...
A grid substation's protection scheme ensures safety and reliability through various components and systems.
1. Circuit Breakers: Protect against overloads and short circuits, e.g., SF6 circuit breakers.
2. Relays: Detect faults and initiate circuit breaker operation, e.g., distance relays.
3. Transformers: Step up/down voltage levels; equipped with protection against overcurrent.
4. Surge Arresters: Protect equipment...
Various types of sheds are available, and solar module installations commonly use materials like aluminum, steel, and wood.
Types of Sheds: Common types include garden sheds, storage sheds, and utility sheds, each serving different purposes.
Materials for Sheds: Sheds can be made from wood, metal (like steel or aluminum), or plastic, depending on durability and aesthetics.
Solar Module Mounting: Solar panels are typi...
String inverters convert DC power from multiple solar panels in series, while central inverters convert DC power from multiple strings of panels in parallel.
String inverters are typically smaller and installed close to the panels, while central inverters are larger and installed in a central location.
String inverters are more modular and allow for individual panel monitoring, while central inverters have higher ef...
I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 2 interview rounds.
Safety measures during installation work in a rooftop project
Ensure proper training and certification for working at heights
Use appropriate personal protective equipment (PPE) such as helmets, safety harnesses, and non-slip footwear
Secure the work area with barriers or guardrails to prevent falls
Inspect and maintain all equipment and tools regularly
Follow electrical safety protocols and use insulated tools when working...
I applied via Company Website and was interviewed before May 2023. There was 1 interview round.
I appeared for an interview before May 2024, where I was asked the following questions.
STAAD.Pro is a structural analysis and design software used for analyzing and designing structures like buildings and bridges.
Comprehensive Analysis: STAAD.Pro supports various types of analysis, including linear, nonlinear, dynamic, and stability analysis.
Multi-Material Design: It allows for the design of structures using different materials such as steel, concrete, and timber.
International Codes: STAAD.Pro complies w...
Calculating wind load involves assessing wind speed, building height, and surface area to determine structural impact.
Determine Basic Wind Speed: Use local building codes to find the basic wind speed for the area, e.g., 90 mph in a hurricane-prone zone.
Calculate Exposure Category: Assess the terrain and surroundings (open, suburban, or urban) to classify the exposure category, affecting wind pressure.
Use the Height of ...
Installing a module over a shed involves structural considerations, ensuring stability and compliance with safety regulations.
Structural Assessment: Evaluate the shed's roof to ensure it can support the weight of the module, considering factors like material and design.
Permits and Regulations: Check local building codes and obtain necessary permits before installation to ensure compliance with safety standards.
Mounting...
Various types of sheds are available, and solar module installations commonly use materials like aluminum, steel, and wood.
Types of Sheds: Common types include garden sheds, storage sheds, and utility sheds, each serving different purposes.
Materials for Sheds: Sheds can be made from wood, metal (like steel or aluminum), or plastic, depending on durability and aesthetics.
Solar Module Mounting: Solar panels are typically...
I applied via LinkedIn and was interviewed before Nov 2022. There were 4 interview rounds.
In my previous role, I managed ground mount solar projects, overseeing planning, execution, and team coordination for successful delivery.
Led project planning and execution for multiple ground mount solar installations, ensuring adherence to timelines and budgets.
Coordinated with cross-functional teams, including engineering, procurement, and construction, to streamline project workflows.
Implemented quality control mea...
A grid substation's protection scheme ensures safety and reliability through various components and systems.
1. Circuit Breakers: Protect against overloads and short circuits, e.g., SF6 circuit breakers.
2. Relays: Detect faults and initiate circuit breaker operation, e.g., distance relays.
3. Transformers: Step up/down voltage levels; equipped with protection against overcurrent.
4. Surge Arresters: Protect equipment from...
I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.
String inverters convert DC power from multiple solar panels in series, while central inverters convert DC power from multiple strings of panels in parallel.
String inverters are typically smaller and installed close to the panels, while central inverters are larger and installed in a central location.
String inverters are more modular and allow for individual panel monitoring, while central inverters have higher efficie...
I applied via Approached by Company and was interviewed before Jul 2021. There were 3 interview rounds.
GD regarding Renewable energy and assessment
Top trending discussions
I applied via Approached by Company and was interviewed before Jul 2021. There were 2 interview rounds.
They given 2 program to to 1-2 hour
Queue can be implemented using two stacks by maintaining the order of elements in the stacks.
Create two stacks, let's call them stack1 and stack2
When an element is enqueued, push it to stack1
When an element is dequeued, pop all elements from stack1 and push them to stack2
Pop the top element from stack2 and return it as the dequeued element
If stack2 is empty, repeat step 3
To get the front element of the queue, peek the ...
Retrieve the 2nd highest and nth highest marks from a student table using SQL queries.
Use the DISTINCT keyword to avoid duplicate marks.
For the 2nd highest marks: SELECT DISTINCT Marks FROM student ORDER BY Marks DESC LIMIT 1 OFFSET 1;
For nth highest marks: SELECT DISTINCT Marks FROM student ORDER BY Marks DESC LIMIT 1 OFFSET n-1; (replace n with the desired number)
Example for 2nd highest: If Marks are 90, 85, 90, 80, ...
Left join returns all records from left table and matching records from right table. Full outer join returns all records from both tables.
Left join is used to combine two tables based on a common column.
In left join, all records from the left table are returned along with matching records from the right table.
If there is no match in the right table, NULL values are returned.
Example: SELECT * FROM table1 LEFT JOIN table...
Magic functions are special methods in PHP that start with __. Autoloading is a way to automatically load classes.
Magic functions are used to handle certain events in PHP, such as object creation or property access.
Autoloading allows PHP to automatically load classes when they are needed, without requiring manual includes.
Magic functions can be used in conjunction with autoloading to dynamically load classes or handle ...
Given three sorted arrays, find common elements.
Create three pointers to traverse each array
Compare the elements at the pointers and move the pointer of the smallest element
If all pointers point to the same element, add it to the result and move all pointers
Repeat until any pointer reaches the end of its array
Check if a number is a power of 2 or not.
A power of 2 has only one bit set in its binary representation.
Use bitwise AND operator to check if the number is a power of 2.
If n is a power of 2, then n & (n-1) will be 0.
Some of the top questions asked at the AMPLUS SOLAR interview -
The duration of AMPLUS SOLAR interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 6 interview experiences
Difficulty level
Duration
based on 148 reviews
Rating in categories
Assistant Manager
72
salaries
| ₹5.6 L/yr - ₹15.5 L/yr |
Manager
39
salaries
| ₹9.4 L/yr - ₹28 L/yr |
Senior Manager
33
salaries
| ₹17.3 L/yr - ₹31 L/yr |
Senior Engineer
23
salaries
| ₹4.6 L/yr - ₹12 L/yr |
Deputy General Manager
18
salaries
| ₹20 L/yr - ₹35 L/yr |
MagicBricks
ffreedom app
Videocon d2h
Netmeds.com