Filter interviews by
I applied via Walk-in and was interviewed in Nov 2020. There were 3 interview rounds.
There are various types of welding and different operation machines used in welding processes.
Types of welding include MIG, TIG, Stick, and Flux-Cored welding.
Different operation machines used in welding include welding guns, welding torches, and welding electrodes.
The type of welding and operation machine used depends on the material being welded and the desired outcome.
8D problem solving is a method used to identify, correct and prevent recurring problems in a systematic way.
The 8D process involves eight steps, including defining the problem, establishing a team, identifying the root cause, implementing corrective actions, and preventing recurrence.
It is a structured approach to problem-solving that emphasizes teamwork, data analysis, and continuous improvement.
Examples of tools used...
Micrometers can be of various types such as outside micrometer, inside micrometer, depth micrometer, etc. Vernier calipers can be of two types - metric and imperial.
Types of micrometers include outside micrometer, inside micrometer, depth micrometer, etc.
Vernier calipers can be of two types - metric and imperial.
The type of micrometer or vernier used depends on the specific measurement requirements.
It is important to u...
Thread gauges are used to measure the pitch diameter and thread angle of screws, nuts, and bolts.
Thread gauges come in different types such as ring gauges, plug gauges, and snap gauges.
Ring gauges are used to check the external threads of screws, nuts, and bolts.
Plug gauges are used to check the internal threads of nuts and tapped holes.
Snap gauges are used to check the pitch diameter of screws.
Thread gauges are made o...
Micrometer least count is the smallest measurement that can be read on a micrometer.
Micrometer least count is determined by the number of divisions on the thimble and the pitch of the screw.
It is usually expressed in microns or thousandths of an inch.
For example, if a micrometer has 50 divisions on the thimble and a pitch of 0.5 mm, the least count would be 0.01 mm or 10 microns.
Air plug gauge least count is the smallest measurement that can be read by the gauge.
Least count is determined by the smallest division on the gauge scale
For example, if the smallest division on the scale is 0.001 inches, the least count of the gauge is 0.001 inches
The least count is important in determining the accuracy of the gauge
A long vernier least count refers to the smallest measurement that can be made using a long vernier scale.
A long vernier scale has more divisions than a short vernier scale, allowing for more precise measurements.
The least count of a long vernier scale is calculated by dividing the smallest division on the main scale by the number of divisions on the vernier scale.
For example, if the smallest division on the main scale...
Micrometers can be of various types such as outside, inside, depth, and screw thread micrometers. Snap gauges can be of various types such as adjustable snap gauges and fixed snap gauges.
Micrometers are used to measure the thickness, diameter, and depth of objects with high accuracy.
Outside micrometers are used to measure the outer diameter of objects, while inside micrometers are used to measure the inner diameter of ...
I applied via Walk-in and was interviewed before Nov 2021. There were 2 interview rounds.
A piston is a component of an engine that moves up and down within a cylinder, converting pressure into mechanical motion.
The piston is connected to a crankshaft via a connecting rod.
Fuel and air are compressed by the piston in the cylinder, which creates energy.
The energy created by the piston is transferred to the crankshaft, which turns the wheels of the vehicle.
Pistons are typically made of aluminum alloy and have ...
Micrometers are precision measuring tools used to measure small distances with high accuracy.
There are several types of micrometers, including outside micrometers, inside micrometers, depth micrometers, and screw thread micrometers.
Outside micrometers are used to measure the diameter of objects, while inside micrometers are used to measure the internal diameter of objects.
Depth micrometers are used to measure the depth...
I appeared for an interview before Mar 2021.
Round duration - 120 Minutes
Round difficulty - Medium
This was an online MCQ + coding round where we had 1 hour to solve the MCQ's and another 1 hour to solve 2 coding
questions. The MCQ's were related to both General and Technical Aptitude.
You are provided with the root node of a binary tree containing 'N' nodes and an integer value 'TARGET'. Your task is to determine the number of leaf nodes for which the sum of the no...
Calculate the number of leaf nodes in a binary tree with a path sum equal to a given target.
Traverse the binary tree from root to leaf nodes while keeping track of the sum along the path.
Recursively check if the current node is a leaf node and if the sum equals the target.
Increment a counter if the conditions are met and return the counter as the result.
Determine if two given numbers 'a' and 'b' are coprime, meaning they have no common divisors other than 1.
t
a_1 b_1
a_2 b_2
...
a_t b_t
true / false
...
Check if two numbers are coprime by finding their greatest common divisor (GCD) and determining if it is 1.
Calculate the GCD of the two numbers using Euclidean algorithm.
If GCD is 1, the numbers are coprime; otherwise, they are not.
Iterate through all pairs of numbers provided in the input.
Return true if GCD is 1, false otherwise.
Round duration - 50 Minutes
Round difficulty - Medium
This was a standard DSA round where I was given 2 coding questions - the first one was related to DP and the second one was of Linked List. I first explained my approach and then coded the solutions in a production ready manner by applying proper coding principles.
You are provided with 'N' pairs of integers such that in any given pair (a, b), the first number is always smaller than the second number, i.e., a < b. A pai...
Find the length of the longest pair chain that can be formed using given pairs.
Sort the pairs based on the second element in increasing order.
Iterate through the sorted pairs and keep track of the maximum chain length.
Update the chain length if the current pair can be added to the chain.
Return the maximum chain length at the end.
You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true
if it is a pali...
Check if a given singly linked list is a palindrome or not.
Use two pointers approach to find the middle of the linked list.
Reverse the second half of the linked list.
Compare the first half with the reversed second half to determine if it's a palindrome.
Round duration - 60 Minutes
Round difficulty - Medium
This round started with 2 preety decent coding questions - one from DP and the other one was from Binary Search. This was followed by some questions from OOPS and then the interview ended with the interviewer asking me the famous 3-Ants and the Triangle Puzzle.
Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.
Provide true
if such a subset exists, otherwise r...
Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.
Use dynamic programming to solve this problem efficiently
Create a 2D array to store if a subset sum is possible for each element and each sum value
Iterate through the array and update the 2D array accordingly
Check if the value at the last element and K is true to determine if a subset sum equals K
Given a rotated sorted array ARR
of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.
1. If 'K' is not present...
Given a rotated sorted array, find the index of a given integer 'K'.
Use binary search to find the pivot point where the array is rotated.
Based on the pivot point, perform binary search on the appropriate half of the array to find 'K'.
Handle cases where 'K' is not present in the array by returning -1.
Static polymorphism is resolved at compile time, while dynamic polymorphism is resolved at runtime.
Static polymorphism is achieved through function overloading and operator overloading.
Dynamic polymorphism is achieved through virtual functions and function overriding.
Example of static polymorphism: function overloading in C++.
Example of dynamic polymorphism: virtual functions in C++.
Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features to the outside world.
Abstraction allows us to focus on what an object does rather than how it does it.
It helps in reducing complexity and improving maintainability of code.
Example: In a car, we don't need to know the internal working of the engine to drive it. We just need to know how to operate the pedals
Round duration - 30 Minutes
Round difficulty - Easy
This was a Technical Cum HR round where I was first asked some basic OOPS related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Naukri.com
posted on 30 Jul 2021
posted on 13 Aug 2020
I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.
Sorting and searching are fundamental data structure algorithms used to organize and retrieve data efficiently.
Sorting algorithms include bubble sort, insertion sort, merge sort, quicksort, and heapsort.
Searching algorithms include linear search, binary search, and interpolation search.
The choice of algorithm depends on the size and type of data being sorted or searched.
Efficient sorting and searching are critical for
posted on 19 Aug 2015
I am excited to join the company because of its reputation for innovation and commitment to excellence.
I am impressed by the company's track record of developing cutting-edge technology.
I am drawn to the company's culture of collaboration and teamwork.
I am excited about the opportunity to work with a talented and experienced team of engineers.
I believe that the company's focus on quality and customer satisfaction align...
In 10 years, I see myself as a highly experienced engineer leading a team of talented individuals towards innovative solutions.
Leading a team of engineers towards successful project completion
Continuing to learn and stay up-to-date with new technologies
Mentoring and guiding junior engineers
Contributing to the growth and success of the company
Exploring opportunities for professional development and growth
I have had both failures and successes in my career as a Senior Engineer.
One of my biggest successes was leading a team that developed a new software system that increased efficiency by 50%.
I also had a failure when I underestimated the complexity of a project and it ended up being delayed by several months.
Another success was implementing a new process that reduced errors by 75%.
I learned from a failure when I didn't ...
based on 45 reviews
Rating in categories
Assistant Engineer
22
salaries
| ₹1.9 L/yr - ₹4.5 L/yr |
Junior Engineer
12
salaries
| ₹1.7 L/yr - ₹4.5 L/yr |
Assistant Manager
9
salaries
| ₹3 L/yr - ₹4.5 L/yr |
Production Supervisor
6
salaries
| ₹1.8 L/yr - ₹3 L/yr |
Senior Engineer
5
salaries
| ₹3.5 L/yr - ₹5.5 L/yr |
Siemens
Johnson Controls
Honeywell Automation
TMEIC