Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Thakur Prasad Sao & Sons Team. If you also belong to the team, you can get access from here

Thakur Prasad Sao & Sons Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Thakur Prasad Sao & Sons Electrical Engineer Interview Questions and Answers

Updated 23 Jan 2023

Thakur Prasad Sao & Sons Electrical Engineer Interview Experiences

1 interview found

Electrical Engineer Interview Questions & Answers

user image PARMANAND SAH

posted on 23 Jan 2023

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jan 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 

(5 Questions)

  • Q1. Proper knowledge of thermal powerplant
  • Q2. Proper knowledge of AFBC , WHRB , TG auxiliary its power supply & operation of TG.
  • Q3. Motor, Transformer, VCB, ACB, Feeder and synchronizing of TG with GRID power.
  • Q4. ESP, CHP & DM plant maintenance work knowledge.
  • Q5. Power distribution should be known. SMS and rolling mill are working so they provide power from powerplant.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be working in thermal powerplant to succeed.

Interview questions from similar companies

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Java logical question
  • Q2. Webdriver architecture
  • Q3. Framework, file and folder structure
  • Q4. Your approach to tackle dynamic objects
  • Ans. 

    I approach dynamic objects by analyzing their behavior and adapting my approach accordingly.

    • I start by understanding the nature of the dynamic object and its expected behavior

    • I then analyze its movement patterns and any potential obstacles or hazards

    • Based on this analysis, I adapt my approach to ensure safe and efficient interaction with the dynamic object

    • For example, when working with a moving conveyor belt, I would e...

  • Answered by AI
  • Q5. Implicit and explicit wait in selenium
  • Ans. 

    Implicit and explicit wait are two types of wait in Selenium used to synchronize the test execution with the application.

    • Implicit wait is used to set a default waiting time for the web elements to load before throwing an exception.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the test execution.

    • Implicit wait is set globally for the entire test script while explicit wait is set f...

  • Answered by AI
  • Q6. Java oops concepts
  • Q7. Sql queries related to joins
  • Q8. Basic Unix commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to connect yours answers with some example of your project.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a system like youtube
  • Ans. 

    Design a system similar to YouTube for video sharing and streaming

    • Implement user authentication and authorization for uploading and viewing videos

    • Create a database to store video metadata, user information, and comments

    • Develop a recommendation algorithm based on user preferences and viewing history

    • Utilize a content delivery network (CDN) for efficient video streaming

    • Include features like video monetization, live stream

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Project related
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question on kafka
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Multi threading print odd even with 2 threads but output should be in sync
  • Ans. 

    Use two threads to print odd and even numbers in sync

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure output is in sync

    • Example: Thread 1 prints odd numbers (1, 3, 5, ...) and Thread 2 prints even numbers (2, 4, 6, ...)

  • Answered by AI
  • Q2. Largest common prefix in string array
  • Ans. 

    Find the largest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of any string.

    • Return the prefix found so far.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Saga pattern in microservice
  • Ans. 

    Saga pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • Saga pattern breaks down a transaction into a series of smaller, independent steps.

    • Each step in the saga is a separate transaction that can be rolled back if needed.

    • If one step fails, compensating transactions can be executed to undo the changes made by previous steps.

    • Saga pattern helps maintain data consistency in a ...

  • Answered by AI
  • Q2. API validation and security
Round 3 - Technical 

(2 Questions)

  • Q1. Micro service inter communication
  • Q2. Hash map hash set implementation
  • Ans. 

    Hash map and hash set are data structures that use hashing to store key-value pairs and unique values respectively.

    • Hash map uses key-value pairs where keys are hashed to find the corresponding value

    • Hash set stores unique values using hashing to quickly check for duplicates

    • Example: HashMap<String, Integer> map = new HashMap<>(); HashSet<Integer> set = new HashSet<>();

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

(3 Questions)

  • Q1. Validation frame work .
  • Q2. Design pattern , .
  • Q3. Singleton pattern and how to break
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Singleton pattern involves a private constructor, a static method to access the instance, and a static variable to hold the instance.

    • To break the singleton pattern, one can use reflection to access the private constructor and create multiple instances.

    • Another way to break the singleton pattern is by using serialization a

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Negotiation on package .
  • Q2. Why to join here
  • Ans. 

    I am excited about the innovative projects and collaborative team environment at this company.

    • Opportunity to work on cutting-edge projects

    • Collaborative team environment

    • Strong company culture and values

    • Room for growth and advancement

    • Positive reputation in the industry

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Java 8 features with examples
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and concise code.

    • Streams provide a way to process collections of data in a parallel and functional manner.

    • Default methods allow for adding new functionality to interfaces without breaking existing implementations.

    • Method references provide a way to refer to methods without...

  • Answered by AI
  • Q2. How to write Customised immutable java class
  • Ans. 

    Customised immutable java class can be written by declaring all fields as final and not providing any setters.

    • Declare all fields as final

    • Do not provide any setters

    • Provide a constructor to initialize all fields

    • Override equals() and hashCode() methods

    • Make the class final

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Ssis, sql server, power bi
  • Q2. Dml, ddl, dcl

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for technical question. Specifically fot technology

I applied via Recruitment Consultant and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Java concepts . Basic DSA
  • Q2. Stack questions and project related

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your resume and projects. Basic problem solving is enough

I applied via Referral and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding job role,location and product

Interview Preparation Tips

Interview preparation tips for other job seekers - As per candidates experience.

I applied via Campus Placement and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. How to Salas credit card ???
  • Ans. 

    Sales of credit cards can be done through various channels such as online, in-person, or over the phone.

    • Credit card sales require knowledge of the product and its benefits

    • Identify potential customers and their needs

    • Offer incentives such as sign-up bonuses or rewards programs

    • Provide clear and concise information about fees and interest rates

    • Ensure compliance with regulations and company policies

    • Follow up with customers ...

  • Answered by AI
  • Q2. How to handal customer ?
  • Ans. 

    Handling customers requires active listening, empathy, and problem-solving skills.

    • Listen actively to understand their needs and concerns

    • Show empathy and understanding towards their situation

    • Provide solutions to their problems and offer alternatives

    • Maintain a positive attitude and be patient

    • Follow up with them to ensure their satisfaction

  • Answered by AI
  • Q3. How to usde credit card??
  • Ans. 

    Using a credit card is simple and convenient.

    • Swipe or insert the card into the card reader

    • Enter the amount to be charged

    • Sign the receipt or enter your PIN

    • Make sure to pay off the balance on time to avoid interest charges

    • Protect your card and personal information from fraud

  • Answered by AI
  • Q4. How to take benifit on customer ??
  • Ans. 

    Taking benefit from customers is unethical and not recommended in sales.

    • Sales should focus on providing value to customers

    • Building long-term relationships with customers is more important than short-term gains

    • Offering personalized solutions to customers can increase their satisfaction and loyalty

    • Providing excellent customer service can lead to positive word-of-mouth and referrals

    • Being transparent and honest with custom...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Positive thinking and tell to answer

Thakur Prasad Sao & Sons Interview FAQs

How many rounds are there in Thakur Prasad Sao & Sons Electrical Engineer interview?
Thakur Prasad Sao & Sons interview process usually has 2 rounds. The most common rounds in the Thakur Prasad Sao & Sons interview process are Resume Shortlist and Technical.
What are the top questions asked in Thakur Prasad Sao & Sons Electrical Engineer interview?

Some of the top questions asked at the Thakur Prasad Sao & Sons Electrical Engineer interview -

  1. Power distribution should be known. SMS and rolling mill are working so they pr...read more
  2. Motor, Transformer, VCB, ACB, Feeder and synchronizing of TG with GRID pow...read more
  3. Proper knowledge of AFBC , WHRB , TG auxiliary its power supply & operation of ...read more

Tell us how to improve this page.

Thakur Prasad Sao & Sons Electrical Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 573 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
Morningstar Interview Questions
3.9
 • 244 Interviews
FactSet Interview Questions
3.9
 • 208 Interviews
View all
Thakur Prasad Sao & Sons Electrical Engineer Salary
based on 4 salaries
₹2.8 L/yr - ₹3.6 L/yr
31% less than the average Electrical Engineer Salary in India
View more details
Assistant Manager
7 salaries
unlock blur

₹3.6 L/yr - ₹5.5 L/yr

Assistant General Manager
5 salaries
unlock blur

₹12 L/yr - ₹16 L/yr

Assistant Engineer
5 salaries
unlock blur

₹2.3 L/yr - ₹2.4 L/yr

Accounts Manager
5 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Graduate Engineer Trainee (Get)
4 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Explore more salaries
Compare Thakur Prasad Sao & Sons with

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare

Citicorp

3.7
Compare

BNY

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