Upload Button Icon Add office photos

Bharat Electronics

Compare button icon Compare button icon Compare

Filter interviews by

Bharat Electronics Deputy Engineer Interview Questions and Answers

Updated 4 Oct 2024

6 Interview questions

A Deputy Engineer was asked
Q. If a current is transmitted and Ic is the transmitter at zero modulation index, what will the transmitted current be at a modulation index of m?
Ans. 

At zero modulation index, the transmitted current will be zero. At modulation index m, the transmitted current will be proportional to m.

  • At zero modulation index, Ic is the transmitter and the transmitted current is zero.

  • At modulation index m, the transmitted current will be proportional to m.

  • The relationship between modulation index and transmitted current can be expressed as: I_transmitted = m * Ic.

A Deputy Engineer was asked
Q. What is the difference between pressure and stress?
Ans. 

Pressure is the force applied on a surface, while stress is the internal resistance of a material to deformation.

  • Pressure is an external force per unit area, while stress is an internal force per unit area.

  • Pressure can be measured using instruments like pressure gauges, while stress is calculated using formulas.

  • Pressure is typically exerted on fluids or gases, while stress is experienced by solid materials.

  • Example...

Deputy Engineer Interview Questions Asked at Other Companies

asked in Wabtec
Q1. What is the role of the diesel engine, alternator, rectifier, and ... read more
Q2. If a current is transmitted and Ic is the transmitter at zero mod ... read more
Q3. How do you ensure clear communication and understanding with your ... read more
asked in Wabtec
Q4. What components are involved in a locomotive and how do they work ... read more
Q5. What is your plan for job planning, spares availability, and manp ... read more
A Deputy Engineer was asked
Q. Write a function that implements the merge sort algorithm to sort an array of numbers in descending order.
Ans. 

Merge sort algorithm can be modified to sort an array of strings in descending order.

  • Modify the comparison function to sort in descending order

  • Use the standard merge sort algorithm

  • Ensure that the merge function is also modified to merge in descending order

A Deputy Engineer was asked
Q. Given an array of integers, find two numbers in the array that add up to a specific target value. Optimize for time complexity.
Ans. 

Optimized code for finding pairs in an array that sum up to a given value

  • Use a hash table to store the difference between the target value and each element in the array

  • Iterate through the array and check if the current element is in the hash table

  • If it is, then a pair with the target sum has been found

  • Time complexity can be reduced to O(n) using this approach

A Deputy Engineer was asked
Q. Unit of pressure, what is stress
Ans. 

Stress is a measure of the internal force experienced by a material due to external factors.

  • Stress is the force per unit area exerted on a material.

  • It is a measure of the internal resistance of a material to deformation.

  • Stress can be caused by external factors such as applied forces, temperature changes, or pressure.

  • The unit of stress is typically expressed in pascals (Pa) or pounds per square inch (psi).

  • For examp...

A Deputy Engineer was asked 9mo ago
Q. Block diagram of Communication system
Ans. 

A block diagram of a communication system shows the components and their connections for transmitting and receiving information.

  • Components include transmitter, channel, receiver, and noise source

  • Transmitter converts message signal into a form suitable for transmission

  • Channel carries the signal from transmitter to receiver

  • Receiver converts the received signal back into the original message signal

  • Noise source introd...

Bharat Electronics HR Interview Questions

24 questions and answers

Q. Can you describe your past work life experiences?
Q. How should you handle project situations?
Q. Why did you choose to pursue a degree in civil engineering?

Bharat Electronics Deputy Engineer Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. If it is transmitted current and Ic is the transmitter at zero modulation index and the transmitted current at a modulation index of m will
  • Ans. 

    At zero modulation index, the transmitted current will be zero. At modulation index m, the transmitted current will be proportional to m.

    • At zero modulation index, Ic is the transmitter and the transmitted current is zero.

    • At modulation index m, the transmitted current will be proportional to m.

    • The relationship between modulation index and transmitted current can be expressed as: I_transmitted = m * Ic.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What do you think as your failure and how did you managed ?
  • Ans. I didn't clear JEE Advanced and that was my only failure in life till now. After being disheartened, I accepted my luck and joined a CFTI (Central Funded Technical Institute). There I studied so hard that, I cracked one of the toughest exams in India i.e. GATE with an AIR of 492.
  • Answered Anonymously
Are these interview questions helpful?

Deputy Engineer Interview Questions & Answers

user image keshav kant Saraf

posted on 4 Oct 2024

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

I appeared for an interview before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Block diagram of Communication system
  • Ans. 

    A block diagram of a communication system shows the components and their connections for transmitting and receiving information.

    • Components include transmitter, channel, receiver, and noise source

    • Transmitter converts message signal into a form suitable for transmission

    • Channel carries the signal from transmitter to receiver

    • Receiver converts the received signal back into the original message signal

    • Noise source introduces ...

  • Answered by AI
  • Q2. Network base question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basic strong with its applicability

Deputy Engineer Interview Questions & Answers

user image shubham kumar

posted on 28 Jun 2022

I applied via Company Website and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between pressure and stress
  • Ans. 

    Pressure is the force applied on a surface, while stress is the internal resistance of a material to deformation.

    • Pressure is an external force per unit area, while stress is an internal force per unit area.

    • Pressure can be measured using instruments like pressure gauges, while stress is calculated using formulas.

    • Pressure is typically exerted on fluids or gases, while stress is experienced by solid materials.

    • Examples of ...

  • Answered by AI
  • Q2. Unit of pressure, what is stress
  • Ans. 

    Stress is a measure of the internal force experienced by a material due to external factors.

    • Stress is the force per unit area exerted on a material.

    • It is a measure of the internal resistance of a material to deformation.

    • Stress can be caused by external factors such as applied forces, temperature changes, or pressure.

    • The unit of stress is typically expressed in pascals (Pa) or pounds per square inch (psi).

    • For example, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic domain wise questions will be asked

I applied via Campus Placement and was interviewed before May 2021. 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 

(4 Questions)

  • Q1. Merge sort in descending order
  • Q2. Pair Sum Code in optimized manner
  • Ans. 

    Optimized code for finding pairs in an array that sum up to a given value

    • Use a hash table to store the difference between the target value and each element in the array

    • Iterate through the array and check if the current element is in the hash table

    • If it is, then a pair with the target sum has been found

    • Time complexity can be reduced to O(n) using this approach

  • Answered by AI
  • Q3. Project explanation ,Networking Questions on Network Layer and Data Link Layer
  • Q4. Multicast Unicast Broadcast

Interview Preparation Tips

Interview preparation tips for other job seekers - Algorithms,Threads,Interprocess Communication,Networking, OS

Skills evaluated in this interview

Deputy Engineer Interview Questions & Answers

user image Tejkiran Patil

posted on 14 Sep 2021

I applied via Walk-in and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Intro., work background, on field and high pressure compatibility(To check whether candidate will join or not.). For me all questions were related to rf engg. And system engineering and fault finding based...

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly selection is depending on how you clear a written test. To clear BEL interview you just have to be little focused why and what question interviewer is asking. To be simple and honest is a key to get BEL position.

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Bharat Electronics?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Other and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How to react in a critical situation to customer. Need to explain about the issue or give solution for the issue?
  • Ans. 

    In critical situations, prioritize clear communication, empathy, and a focus on solutions to maintain customer trust.

    • Acknowledge the issue promptly to show the customer you are aware and concerned.

    • Provide a clear explanation of the problem, avoiding technical jargon that may confuse the customer.

    • Offer a solution or a plan of action, detailing the steps you will take to resolve the issue.

    • Keep the customer updated on pro...

  • Answered by AI
  • Q2. How are you going to handle a 5 member team
  • Ans. 

    I will foster collaboration, set clear goals, and support individual growth to effectively manage a 5-member team.

    • Establish clear communication channels, such as weekly check-ins, to ensure everyone is aligned on project goals.

    • Encourage collaboration by assigning team projects that require input from all members, enhancing teamwork.

    • Set individual and team goals, using SMART criteria, to provide direction and measure pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare in management level as well

I applied via Company Website and was interviewed before Apr 2021. 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 - Technical 

(1 Question)

  • Q1. Electrical fundamental and AC thoery
Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. Why should we hire you?
  • Q4. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak truth about privious job
Clear basic concepts of electrical

Interview Questionnaire 

1 Question

  • Q1. About experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and stick to your professional background topic communicate clearly

I applied via Referral and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. About line balancing
  • Q2. Kaizen
  • Q3. Manpower handling
  • Q4. Productivity achievement

Interview Preparation Tips

Interview preparation tips for other job seekers - Was good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Technical related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Joining details

Bharat Electronics Interview FAQs

How many rounds are there in Bharat Electronics Deputy Engineer interview?
Bharat Electronics interview process usually has 1-2 rounds. The most common rounds in the Bharat Electronics interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Bharat Electronics Deputy Engineer interview?

Some of the top questions asked at the Bharat Electronics Deputy Engineer interview -

  1. If it is transmitted current and Ic is the transmitter at zero modulation index...read more
  2. What is difference between pressure and str...read more
  3. Unit of pressure, what is str...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.7/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Bharat Electronics Deputy Engineer Salary
based on 247 salaries
₹10 L/yr - ₹16 L/yr
121% more than the average Deputy Engineer Salary in India
View more details

Bharat Electronics Deputy Engineer Reviews and Ratings

based on 66 reviews

3.1/5

Rating in categories

2.7

Skill development

3.9

Work-life balance

3.5

Salary

4.3

Job security

2.6

Company culture

2.7

Promotions

2.7

Work satisfaction

Explore 66 Reviews and Ratings
Project Engineer
1.7k salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Engineer Trainee
779 salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Deputy Manager
283 salaries
unlock blur

₹15 L/yr - ₹25 L/yr

Senior Engineer
276 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Trainee
255 salaries
unlock blur

₹1.4 L/yr - ₹4.6 L/yr

Explore more salaries
Compare Bharat Electronics with

Flex

3.9
Compare

Foxconn

3.8
Compare

TE Connectivity

4.1
Compare

ECIL

4.3
Compare
write
Share an Interview