Upload Button Icon Add office photos

Filter interviews by

Shreeyam Power And Steel Industries Senior Manager Interview Questions and Answers

Updated 10 Oct 2023

Shreeyam Power And Steel Industries Senior Manager Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Sep 2023. 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 

(2 Questions)

  • Q1. Simple question related to work experience
  • Q2. Depends on work experience like mechanical electrical or production
Round 3 - One-on-one 

(1 Question)

  • Q1. Simple question related to work experience
Round 4 - Technical 

(1 Question)

  • Q1. Simple question related to work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company apply for job

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
6-8 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Projects contribution
  • Q2. Career transition from development(firmware to software), security(Product to system) etc.,
Round 2 - Coding Test 

Print 10 to 1 without using any loops in C
print the number by toggling a bit of a given position
virtual functions -> what would be the output of the code and vtable concept explain in detail
information security standards, protocols, regulations

Round 3 - One-on-one 

(3 Questions)

  • Q1. All scenario based questions such as you have to hire a candidate but the budget is restricted. You have identified the ideal candidate. how would you handle it.
  • Q2. Conflict management
  • Q3. Product security questions
Round 4 - One-on-one 

(4 Questions)

  • Q1. How to add security to a product which is nearing dev completion
  • Ans. 

    Implement security measures such as code reviews, penetration testing, and security training for developers.

    • Conduct thorough code reviews to identify and fix any security vulnerabilities

    • Perform penetration testing to simulate real-world attacks and identify weaknesses

    • Provide security training for developers to educate them on best practices and common security threats

  • Answered by AI
  • Q2. What is the right approach to bake in security
  • Ans. 

    The right approach to bake in security involves integrating security measures throughout the software development lifecycle.

    • Implementing security best practices from the beginning of the development process

    • Conducting regular security assessments and audits

    • Training developers on secure coding practices

    • Utilizing automated security testing tools

    • Implementing secure coding guidelines and standards

    • Incorporating security revi

  • Answered by AI
  • Q3. How do you address knowledge deficit in team on security areas to develop a product with optimal security
  • Ans. 

    Address knowledge deficit by providing training, resources, and mentorship to team members.

    • Conduct regular training sessions on security best practices and updates

    • Provide access to resources such as online courses, articles, and workshops

    • Assign mentors within the team to guide and support members in security areas

    • Encourage team members to ask questions and seek clarification on security topics

    • Implement peer review proc

  • Answered by AI
  • Q4. How do you identify the reasonable security for a product? Say for example, the products of enphase used by businesses or by end customers(home owners).
  • Ans. 

    Identifying reasonable security for products involves assessing potential risks, compliance requirements, industry standards, and customer expectations.

    • Conduct a thorough risk assessment to identify potential threats and vulnerabilities

    • Consider compliance requirements such as GDPR, HIPAA, or industry-specific regulations

    • Adhere to industry standards like ISO 27001 or NIST Cybersecurity Framework

    • Take into account custome...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Typical questions on why enphase, why x salary, do you undestand roles and responsibilities
  • Q2. Notice period negotiation, what are your career aspirations

Interview Preparation Tips

Interview preparation tips for other job seekers - L1-1 hr - by Senior Director
L2-2 hr by BLR team
L3-30mins by VP
L4-50mins by VP
L5-20mins by HR Manager

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Introduced your self
Round 2 - Technical 

(3 Questions)

  • Q1. Tell me how u came in chp
  • Q2. Till ur journey in chp which equipment u like most.
  • Ans. 

    I have always been fascinated by the versatility and efficiency of centrifugal pumps in the chemical process industry.

    • Centrifugal pumps are essential for transferring fluids in chemical plants

    • They are known for their simplicity, high flow rates, and smooth operation

    • An example of a centrifugal pump commonly used in chemical processes is the ANSI pump

  • Answered by AI
  • Q3. How you came to know whats the main reason getting belt off centered.
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
Round 1 - One-on-one 

(2 Questions)

  • Q1. Please tell me your 2 Development Area ?
  • Ans. 

    My two development areas are improving my data analysis skills and enhancing my project management abilities.

    • Taking advanced data analysis courses to improve my skills

    • Seeking mentorship from experienced data analysts

    • Practicing project management techniques through small projects

    • Attending workshops or seminars on project management

    • Setting specific goals for improvement in both areas

  • Answered by AI
  • Q2. Please tell me your 2 Strength with example?
Round 2 - One-on-one 

(1 Question)

  • Q1. 1)Case study of Prepaid Expense 2)What challenges you had face in your career and how you come up with solution?
  • Ans. 

    Prepaid expenses case study and challenges faced in career with solutions

    • Prepaid expenses refer to expenses paid in advance before they are incurred

    • Example: Rent paid for the upcoming month is a prepaid expense

    • Challenges faced in career may include budget constraints, forecasting accuracy, and tracking multiple prepaid expenses

    • Solution involves creating detailed budgets, regular monitoring of prepaid expenses, and adju

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

(1 Question)

  • Q1. Tell me if on the floor some one is talking some thing negative about you, then what you will do?
Round 4 - One-on-one 

(2 Questions)

  • Q1. Why you want to leave your current company?
  • Q2. Why you want to joined Eaton?

Senior Engineer Interview Questions & Answers

Suzlon Group user image Abhishek Bagwan (ABHI)

posted on 25 Dec 2024

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

I applied via Walk-in and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(22 Questions)

  • Q1. Can you provide an introduction about yourself?
  • Ans. 

    Experienced Senior Engineer with a strong background in software development and project management.

    • Over 10 years of experience in designing and implementing complex software solutions

    • Proficient in multiple programming languages such as Java, Python, and C++

    • Led cross-functional teams to successfully deliver projects on time and within budget

    • Strong problem-solving skills and ability to adapt to new technologies quickly

  • Answered by AI
  • Q2. Can you provide details about your work experience?
  • Ans. 

    I have over 10 years of experience in designing and implementing complex engineering solutions.

    • Designed and implemented various engineering solutions for different projects

    • Led a team of engineers to successfully complete a major project ahead of schedule

    • Collaborated with cross-functional teams to ensure project success

    • Utilized advanced engineering tools and techniques to optimize project outcomes

  • Answered by AI
  • Q3. What do you know about Doubly Fed Induction Generators?
  • Ans. 

    Doubly Fed Induction Generators (DFIGs) are commonly used in wind turbines to allow variable speed operation and improve efficiency.

    • DFIGs have two sets of windings - one on the stator and one on the rotor

    • The rotor windings are fed with variable frequency AC power through slip rings and brushes

    • DFIGs allow for control of both active and reactive power output

    • They are more efficient than fixed speed induction generators

    • DFI...

  • Answered by AI
  • Q4. What is the importance of circuit diagrams in electrical engineering?
  • Ans. 

    Circuit diagrams are essential in electrical engineering for visualizing and understanding complex circuits.

    • Circuit diagrams provide a visual representation of the connections and components in a circuit.

    • They help engineers analyze and troubleshoot circuits more efficiently.

    • Circuit diagrams aid in the design and construction of electrical systems.

    • They are crucial for documenting and communicating circuit designs to oth...

  • Answered by AI
  • Q5. What is the procedure for reading a wiring diagram?
  • Ans. 

    Reading a wiring diagram involves understanding symbols, following the flow of current, and identifying components.

    • Start by familiarizing yourself with the symbols used in the diagram.

    • Follow the flow of current from the power source to the components.

    • Identify the different components and their connections based on the diagram.

    • Pay attention to the color codes and labels for wires and components.

    • Refer to the legend or ke...

  • Answered by AI
  • Q6. What is an IGBT, how does it work, and what is the importance of diode capacitors in its functionality?
  • Ans. 

    IGBT stands for Insulated Gate Bipolar Transistor, a semiconductor device used for switching applications in power electronics.

    • IGBT is a type of power semiconductor device that combines the high efficiency of a MOSFET with the high current and low saturation voltage capability of a bipolar transistor.

    • It consists of three terminals: gate, collector, and emitter.

    • IGBT works by controlling the flow of current between the c...

  • Answered by AI
  • Q7. Can you provide training to your team?
  • Ans. 

    Yes, I have experience providing training to my team.

    • I have conducted training sessions on new technologies and tools for my team.

    • I have created training materials such as presentations, manuals, and hands-on exercises.

    • I have mentored junior team members to help them improve their skills.

    • I have received positive feedback from team members on the effectiveness of my training sessions.

  • Answered by AI
  • Q8. What are your computer skills?
  • Ans. 

    Proficient in various programming languages and software tools, with experience in database management and system administration.

    • Proficient in programming languages such as Java, Python, and C++

    • Experience with database management systems like MySQL and MongoDB

    • Skilled in system administration tasks including network configuration and troubleshooting

    • Familiar with software tools such as Git, Jenkins, and Docker

  • Answered by AI
  • Q9. How frequently are you able to climb towers as part of your job requirements?
  • Ans. 

    I climb towers as part of my job requirements on a regular basis.

    • I climb towers for routine maintenance checks

    • I climb towers to install or repair equipment

    • I climb towers to conduct inspections or surveys

    • On average, I climb towers at least once a month

  • Answered by AI
  • Q10. What is your understanding of the balance of plant (BOP)?
  • Ans. 

    BOP refers to the systems and equipment outside of the main power generating unit in a power plant.

    • BOP includes components like transformers, switchgear, cooling systems, and fuel systems.

    • It is essential for the overall functioning of the power plant.

    • BOP is responsible for supporting the main power generation unit and ensuring its efficient operation.

    • Examples of BOP components are water treatment systems, piping, and c

  • Answered by AI
  • Q11. What are SCADA (Supervisory Control and Data Acquisition) systems and PLC (Programmable Logic Controllers)?
  • Ans. 

    SCADA systems are used to monitor and control industrial processes, while PLCs are programmable devices used to automate machinery and processes.

    • SCADA systems gather and analyze real-time data from sensors and equipment in industrial settings.

    • SCADA systems allow operators to remotely monitor and control processes, alarms, and events.

    • PLCs are programmable devices used to automate machinery and processes based on input f...

  • Answered by AI
  • Q12. Can you create a controlling circuit diagram based on my specifications?
  • Ans. 

    Yes, I can create a controlling circuit diagram based on your specifications.

    • I will need detailed specifications including input/output requirements, components to be used, and any specific constraints.

    • I will create a schematic diagram using software like Eagle, Altium, or KiCad.

    • I will ensure the circuit meets safety standards and is optimized for performance.

    • I will provide documentation including a bill of materials a

  • Answered by AI
  • Q13. What is the difference between synchronous and asynchronous generators?
  • Ans. 

    Synchronous generators produce electricity at a constant frequency, while asynchronous generators do not require synchronization with the grid frequency.

    • Synchronous generators are connected to the grid and produce electricity at a fixed frequency, typically 50 or 60 Hz.

    • Asynchronous generators do not need to be synchronized with the grid frequency and can operate at variable speeds.

    • Synchronous generators are commonly us...

  • Answered by AI
  • Q14. What is the Standard Operating Procedure (SOP)?
  • Ans. 

    SOP is a set of step-by-step instructions compiled by an organization to help workers carry out routine operations.

    • SOP is a detailed document that outlines the procedures and processes to be followed in specific situations.

    • It ensures consistency and quality in the performance of tasks.

    • SOPs are used in various industries such as healthcare, manufacturing, and IT.

    • Examples include a SOP for handling customer complaints in...

  • Answered by AI
  • Q15. Are you familiar with DGR, MGR, or YGR?
  • Ans. 

    DGR, MGR, and YGR are commonly used acronyms in the engineering field.

    • DGR stands for Design Gross Rating, which is the maximum allowable weight for a designed structure.

    • MGR stands for Maximum Gross Rating, which is the maximum weight a vehicle can carry including its own weight.

    • YGR could refer to Yield Gross Rating, but context is needed to determine its specific meaning.

  • Answered by AI
  • Q16. Are you knowledgeable about Mean Time Between Failures (MTBF) and Mean Time To Repair (MTTR)?
  • Ans. 

    Yes, I am knowledgeable about MTBF and MTTR in the context of engineering.

    • MTBF refers to the average time between failures of a system or component.

    • MTTR is the average time it takes to repair a failed system or component.

    • Both metrics are important in assessing the reliability and maintenance needs of engineering systems.

    • For example, a server may have an MTBF of 10,000 hours and an MTTR of 2 hours.

  • Answered by AI
  • Q17. What is more important for system reliability, Mean Time Between Failures (MTBF) or Mean Time to Repair (MTTR)?
  • Ans. 

    MTTR is more important for system reliability as it directly impacts downtime and overall system availability.

    • MTTR directly impacts downtime and system availability

    • MTBF is important for predicting failures but does not address how quickly the system can be restored

    • Focusing on reducing MTTR can lead to improved system reliability and performance

  • Answered by AI
  • Q18. What is the function of a Doubly-Fed Induction Generator (DFIG) when used with an asynchronous generator?
  • Ans. 

    DFIG controls the active and reactive power independently, improving efficiency and stability in wind turbines.

    • DFIG allows for variable speed operation, improving efficiency in wind turbines.

    • It controls the active and reactive power independently, enhancing stability.

    • DFIG can provide grid support by injecting or absorbing reactive power as needed.

    • It is commonly used in wind turbines to improve power quality and grid in...

  • Answered by AI
  • Q19. What is slip in a generator?
  • Ans. 

    Slip in a generator refers to the difference between synchronous speed and actual rotor speed.

    • Slip is necessary for the generation of electrical power in a generator.

    • It is calculated as (Synchronous speed - Actual speed) / Synchronous speed.

    • Slip is typically expressed as a percentage.

    • Higher slip values indicate lower efficiency in the generator.

    • For example, in an induction generator, slip is essential for inducing curr

  • Answered by AI
  • Q20. What can you explain about sub-synchronous, synchronous, and super-synchronous speeds?
  • Ans. 

    Sub-synchronous, synchronous, and super-synchronous speeds refer to different speeds at which a rotating machine can operate in relation to the system frequency.

    • Sub-synchronous speed: When the machine speed is less than the synchronous speed, typically caused by a mechanical fault or system resonance.

    • Synchronous speed: When the machine speed matches the system frequency, commonly seen in normal operating conditions.

    • Sup...

  • Answered by AI
  • Q21. Importance of hub system, Nacelle system in wind turbine ?
  • Ans. 

    Hub system and Nacelle system are crucial components in a wind turbine for efficient energy generation.

    • The hub system connects the blades to the main shaft of the turbine, allowing for rotation and energy generation.

    • The Nacelle system houses the gearbox, generator, and other key components necessary for converting wind energy into electricity.

    • Proper maintenance and monitoring of these systems are essential for optimal ...

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

I applied via Naukri.com and was interviewed in Oct 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. Ask latest GST taxation rules
  • Q2. Ask latest income tax amendment
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 - One-on-one 

(1 Question)

  • Q1. Technical question related to your field
Round 3 - HR 

(1 Question)

  • Q1. CTC discussion , and reason why i want to join
Round 4 - HR 

(1 Question)

  • Q1. Nothing else just formal question
Round 1 - Technical 

(1 Question)

  • Q1. Solar pv cell knowledge and experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Proper knowledge of Renewable energy (Solar PV technology)

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Till me about your profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Best knowledge of your profile and communication skills is must

Shreeyam Power And Steel Industries Interview FAQs

How many rounds are there in Shreeyam Power And Steel Industries Senior Manager interview?
Shreeyam Power And Steel Industries interview process usually has 4 rounds. The most common rounds in the Shreeyam Power And Steel Industries interview process are Technical, Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Shreeyam Power And Steel Industries Senior Manager Salary
based on 4 salaries
₹12 L/yr - ₹16.6 L/yr
28% less than the average Senior Manager Salary in India
View more details
Assistant Engineer
27 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

Assistant Manager
19 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Mechanical Engineer
9 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Boiler DCS Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹5.4 L/yr

Engineer
8 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Explore more salaries
Compare Shreeyam Power And Steel Industries with

Tata Steel

4.1
Compare

JSW Steel

3.9
Compare

Steel Authority Of India

4.1
Compare

ArcelorMittal Nippon Steel

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