Upload Button Icon Add office photos

BEML

Compare button icon Compare button icon Compare

Filter interviews by

BEML L2 Engineer Interview Questions and Answers

Updated 14 Sep 2023

BEML L2 Engineer Interview Experiences

1 interview found

L2 Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Sep 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, Surathkal and was interviewed before Sep 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 - One-on-one 

(2 Questions)

  • Q1. You do you check teh quality of mesh in FEM
  • Ans. 

    Quality of mesh in FEM is checked by examining element shapes, aspect ratios, and convergence of results.

    • Check element shapes to ensure they are not distorted or skewed

    • Evaluate aspect ratios to ensure they are within acceptable limits

    • Verify convergence of results by refining the mesh and comparing results

  • Answered by AI
  • Q2. How do you slect which type of bearing is required for your machine drive?
  • Ans. 

    The type of bearing required for a machine drive is selected based on factors such as load, speed, lubrication, and operating conditions.

    • Consider the load and speed requirements of the machine drive

    • Choose between ball bearings, roller bearings, or plain bearings based on the application

    • Take into account the lubrication method and maintenance requirements

    • Consider the operating conditions such as temperature, vibration,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the questions asked were from my electives and my academic projects mentioned in my resume.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is your role in your previous organization?
  • Q2. Describe some of the challenges faced on your existing projects?
  • Q3. Elaborate your projects?
  • Q4. Technical questions. For eg : SFD, BMD, thin and thick cylinder, bolt calculation, GD&T

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your genuine answers as per your projects. Brush up your technical knowledge- SOM, manufacturing, materials knowledge. Get knowledge in GD&T, Welding, standards like API 17D.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Can you explain the difference between a stack and a queue and provide a real-world example where each would be used.
  • Ans. 

    A stack is a Last In First Out (LIFO) data structure, while a queue is a First In First Out (FIFO) data structure.

    • Stack: LIFO - Last In First Out. Example: browser history where the last page visited is the first to be accessed.

    • Queue: FIFO - First In First Out. Example: a line at a grocery store where the first person in line is the first to be served.

  • Answered by AI
  • Q2. Given an array of integers, write a function to find the two numbers that add up to a specific target. How would you optimize this solution?
  • Ans. 

    Function to find two numbers in array that add up to target. Optimize solution.

    • Use a hash map to store each number and its index as you iterate through the array.

    • For each number, check if the difference between the target and the number exists in the hash map.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with coding challenges, especially related to arrays, linked lists, and trees.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. It was an algorithm question which I had to code in 30 minutes
  • Q2. Java/Spring related questions were asked
Round 2 - Case Study 

They asked me about my current project and asked me to design a system similar to that

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Aptitute with cs fundamental questions (MCQ)

Round 2 - Technical 

(2 Questions)

  • Q1. Explanation of project
  • Ans. 

    Developed a web application for tracking inventory in a warehouse

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js for back-end

    • Utilized PostgreSQL database for storing inventory data

  • Answered by AI
  • Q2. Sql query to fetch specific column
  • Ans. 

    Use SELECT statement in SQL to fetch specific column from a table.

    • Use SELECT column_name FROM table_name;

    • Replace column_name with the name of the column you want to fetch.

    • Replace table_name with the name of the table where the column is located.

  • Answered by AI

Skills evaluated in this interview

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

Logic quants apti core

Round 2 - Coding Test 

Problem solving using programming language

Round 3 - HR 

(2 Questions)

  • Q1. Explain about project
  • Ans. 

    The project is a web-based application for managing inventory and sales for a retail store.

    • Developed using Java Spring framework

    • Utilized MySQL database for storing data

    • Implemented RESTful APIs for communication between frontend and backend

    • Included features such as user authentication, product management, and sales tracking

  • Answered by AI
  • Q2. What all technologies you know
  • Ans. 

    I am proficient in technologies such as Java, Selenium, JUnit, TestNG, SQL, Git, Jenkins, and Agile methodologies.

    • Java

    • Selenium

    • JUnit

    • TestNG

    • SQL

    • Git

    • Jenkins

    • Agile methodologies

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

(6 Questions)

  • Q1. Normalization in SQL, What is Cursor in SQL
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity. A cursor in SQL is a database object used to retrieve and manipulate data row by row.

    • Normalization in SQL involves breaking down a large table into smaller tables and defining relationships between them to reduce redundancy.

    • Cursors in SQL are used to fetch and process individual rows returned by a query...

  • Answered by AI
  • Q2. .Net Core and API based questions
  • Q3. Abstract and interface difference
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods along with abstract methods

    • Interfaces can only have abstract methods and constants

    • A class can implement multiple interfaces but can only inherit from one abstract class

  • Answered by AI
  • Q4. Const and read only difference in C#
  • Ans. 

    Const keyword is used to declare constants at compile time, while read-only keyword is used to create immutable fields that can only be assigned a value at runtime.

    • Const values are determined at compile time and cannot be changed, while read-only values can only be assigned a value once at runtime.

    • Const fields are implicitly static, while read-only fields are not.

    • Example: const int x = 5; read-only int y = 10;

  • Answered by AI
  • Q5. Azure basic fundamental questions
  • Q6. Sample query to join tables using SQL
  • Ans. 

    Sample query to join tables using SQL

    • Use the JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to be selected from each table

    • Use the ON keyword to specify the join condition

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is polymorphism in OOPS
  • Ans. 

    Polymorphism in OOPS refers to the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance allows a child class to override a method of its parent class, providing different implem

  • Answered by AI
  • Q2. How SQL Performance Can Be Optimized
  • Ans. 

    SQL performance can be optimized by using indexes, optimizing queries, minimizing network round trips, and using proper data types.

    • Use indexes on columns frequently used in WHERE clauses to speed up data retrieval.

    • Optimize queries by avoiding unnecessary joins, using WHERE clauses effectively, and limiting the number of rows returned.

    • Minimize network round trips by batching multiple queries into a single request.

    • Use pr...

  • Answered by AI
Round 2 - Manegerial 

(2 Questions)

  • Q1. Salary Expectation as per Your Role
  • Ans. 

    My salary expectation as a Senior Software Engineer is based on industry standards, my experience, and the responsibilities of the role.

    • Research industry standards for Senior Software Engineer salaries

    • Consider my years of experience and expertise in software development

    • Factor in the specific responsibilities and requirements of the role

    • Negotiate based on the company's budget and benefits package

    • Be open to discussing sa

  • Answered by AI
  • Q2. How will manage If you see the application is crashed
  • Ans. 

    I will investigate the root cause, analyze logs, and work on fixing the issue to prevent future crashes.

    • Investigate the crash logs to identify the root cause

    • Analyze the code to understand the issue

    • Implement a fix for the crash

    • Test the fix thoroughly before deploying it

    • Implement monitoring and alerting to catch similar issues in the future

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

MCQ of programming languages - c/c++/Python , basic DS and OS questions

Round 2 - Technical 

(1 Question)

  • Q1. DS and programming language questions
Round 3 - Technical 

(1 Question)

  • Q1. Project level discussion and questions

Interview Questionnaire 

3 Questions

  • Q1. 2 Technical round L2 skill required on VMware
  • Q2. 0365 Administrator, Veeam backup
  • Q3. Patch management using Sccm
  • Ans. 

    SCCM is a powerful tool for patch management, allowing for centralized control and automation.

    • SCCM can automate the patching process for Windows operating systems and other Microsoft products.

    • It can also be used to deploy third-party patches and updates.

    • SCCM provides a centralized console for managing patches and monitoring compliance.

    • It allows for scheduling of patch deployments and provides reporting on patch status.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need infrastructure knowledge to work
With server level 2 team

BEML Interview FAQs

How many rounds are there in BEML L2 Engineer interview?
BEML interview process usually has 2 rounds. The most common rounds in the BEML interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in BEML L2 Engineer interview?

Some of the top questions asked at the BEML L2 Engineer interview -

  1. How do you slect which type of bearing is required for your machine dri...read more
  2. You do you check teh quality of mesh in ...read more

Tell us how to improve this page.

BEML L2 Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Tata Motors Interview Questions
4.2
 • 1k Interviews
Tata Steel Interview Questions
4.1
 • 836 Interviews
Thermax Limited Interview Questions
4.1
 • 249 Interviews
Ashok Leyland Interview Questions
4.1
 • 239 Interviews
Cummins Interview Questions
4.3
 • 231 Interviews
John Deere Interview Questions
4.1
 • 228 Interviews
Adani Group Interview Questions
3.9
 • 186 Interviews
View all

BEML L2 Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

5.0

Job security

2.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Manager
106 salaries
unlock blur

₹9 L/yr - ₹22.9 L/yr

Assistant Manager
56 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Senior Manager
50 salaries
unlock blur

₹13 L/yr - ₹25 L/yr

Graduate Apprentice Trainee
47 salaries
unlock blur

₹1 L/yr - ₹4.2 L/yr

Graduate Engineer Trainee (Get)
47 salaries
unlock blur

₹0.6 L/yr - ₹3.4 L/yr

Explore more salaries
Compare BEML with

Hindustan Aeronautics

4.3
Compare

Tata Motors

4.2
Compare

Ashok Leyland

4.1
Compare

Larsen & Toubro Limited

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