Filter interviews by
Be the first one to contribute and help others!
posted on 9 Oct 2024
I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.
The main reason for belt joint failure is usually due to improper installation or maintenance.
Improper installation of the belt joint, such as incorrect alignment or tensioning
Lack of proper maintenance, leading to wear and tear of the joint
Use of low-quality materials for the joint
Excessive load or stress on the belt joint
Environmental factors like temperature or humidity affecting the joint
The alignment maximum tolerance refers to the maximum allowable deviation from the specified alignment.
Alignment maximum tolerance is the maximum allowable deviation from the specified alignment.
It is typically expressed in terms of a percentage or a specific measurement unit.
For example, a machine part may have an alignment maximum tolerance of +/- 0.005 inches.
Exceeding the alignment maximum tolerance can lead to per
To replace the bucket wheel reclaimer luffing cylinder, follow these steps.
1. Shut down the machine and ensure all power sources are disconnected.
2. Remove any surrounding components that may obstruct access to the luffing cylinder.
3. Use appropriate tools to disconnect the hydraulic hoses and fittings from the cylinder.
4. Support the weight of the cylinder as it is removed to prevent damage to surrounding components.
5...
JSA stands for Job Safety Analysis, focusing on specific job tasks, while HIRA stands for Hazard Identification and Risk Assessment, focusing on overall workplace hazards.
JSA is task-specific, focusing on individual job tasks and potential hazards
HIRA is broader, looking at overall workplace hazards and assessing risks
JSA involves breaking down a job into steps and identifying potential hazards for each step
HIRA involv...
To create a PR in SAP, you can use transaction code ME51N or ME21N.
Use transaction code ME51N to create a purchase requisition in SAP.
Enter the necessary details such as material, quantity, delivery date, etc.
Save the purchase requisition and it will be created in the system.
Alternatively, you can also use transaction code ME21N to create a purchase order directly.
The procedure of pulley replacement involves identifying the faulty pulley, removing the old pulley, installing the new pulley, and testing the system.
Identify the faulty pulley by checking for any signs of wear or damage.
Use appropriate tools to remove the old pulley, such as a pulley puller or wrench.
Install the new pulley by aligning it properly and securing it in place.
Test the system to ensure the new pulley is fu...
PTW stands for Permit to Work, a procedure used to ensure that work is carried out safely in potentially hazardous environments.
PTW is a formal written system used to control certain types of work that are identified as potentially hazardous.
Before starting work, a permit must be obtained from a designated authority.
The permit outlines the work to be done, the hazards involved, and the necessary precautions to be taken...
I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.
I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.
I applied via campus placement at College of Engineering ( Formerly Pune Instiute of Enginering and Technology ), Pune and was interviewed in Sep 2024. There were 2 interview rounds.
If everyone is cheating you should also do it?
Linear regression is used for continuous variables, while logistic regression is used for binary outcomes.
Linear regression is used to predict a continuous outcome based on one or more input variables.
Logistic regression is used to predict the probability of a binary outcome based on one or more input variables.
Linear regression assumes a linear relationship between the independent and dependent variables, while logist...
Normalization in DBMS is the process of organizing data in a database to reduce redundancy and improve data integrity.
Normalization involves breaking down data into smaller, more manageable tables and establishing relationships between them.
It helps in reducing data redundancy, minimizing data anomalies, and improving data consistency.
There are different normal forms such as 1NF, 2NF, 3NF, BCNF, and 4NF, each with spec...
Array difference is finding the elements that are present in one array but not in another.
Use set operations like difference to find elements in one array but not in another.
Example: arr1 = ['a', 'b', 'c'], arr2 = ['b', 'c', 'd'], arr_diff = set(arr1) - set(arr2) = ['a']
A medium python program
Optimizing code for better performance and efficiency
Use built-in functions and libraries for faster execution
Minimize unnecessary loops and conditions
Avoid redundant code and optimize data structures
Implement caching or memoization for repetitive computations
Optimizing Python code involves improving efficiency and performance.
Use built-in functions and libraries instead of writing custom code
Avoid unnecessary loops and nested loops for better performance
Optimize data structures and algorithms for faster execution
Numpy is a powerful library for numerical operations in Python, with efficient array operations and mathematical functions.
Use vectorized operations instead of loops for better performance.
Avoid unnecessary copying of arrays to save memory.
Utilize broadcasting to perform operations on arrays of different shapes.
Use numpy functions like np.sum(), np.mean(), np.max(), etc. for efficient calculations.
Optimize code by prof
posted on 22 Dec 2024
I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.
ASTM standard for Block works is ASTM C90.
ASTM C90 is the standard specification for loadbearing concrete masonry units.
It covers hollow and solid loadbearing concrete masonry units made from portland cement, water, and aggregates.
The standard specifies the compressive strength, absorption, dimensions, and tolerances for concrete blocks.
ASTM C90 also includes requirements for moisture content, density, and surface fini
Standard grout strength in PSI is typically around 2,000 to 5,000 PSI.
Standard grout strength is usually between 2,000 to 5,000 PSI
Higher strength grouts can have strengths up to 10,000 PSI or more
Grout strength can vary depending on the mix design and curing conditions
posted on 2 Oct 2024
I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.
Costing for laying pipelines involves calculating material costs, labor costs, equipment costs, and overhead expenses.
Calculate the length of the pipeline needed
Determine the type and size of pipes required
Estimate the cost of materials including pipes, fittings, and valves
Factor in labor costs for installation
Consider equipment costs such as machinery and tools
Include overhead expenses like permits, insurance, and pro...
I am a trainee at XYZ Company, currently working on various projects under the guidance of senior team members.
Trainee at XYZ Company
Working on various projects
Under the guidance of senior team members
I am a dedicated and hardworking individual with a passion for learning and growth.
I have a strong work ethic and am always eager to take on new challenges.
I am a quick learner and adapt well to new environments.
I am detail-oriented and strive for excellence in everything I do.
posted on 29 Apr 2024
I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.
Verbal Reasoning Test,evaluates the ability to comprehend written information, analyze arguments, and draw logical conclusions. It's useful for roles that require strong communication and critical thinking skills.
Procedural programming focuses on procedures and functions, while OOP focuses on objects and classes.
Procedural programming uses a top-down approach, breaking down tasks into smaller procedures/functions.
OOP focuses on creating objects that contain both data and methods to manipulate that data.
In procedural programming, data and functions are separate entities, while in OOP, they are encapsulated within objects.
Example...
Function in Python that takes a list of integers as input and returns the sum of all the even numbers in the list.
# Input
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# Output
# Sum of even numbers: 2 + 4 + 6 + 8 + 10 = 30
print(sum_even_numbers(numbers)) # Output: 30
Solution:
def sum_even_numbers(numbers):
"""
Calculate the sum of all even numbers in a list.
Args:
numbers (list of int): List of integers.
Returns:
int: Sum of all even numbers in the list.
"""
return sum(num for num in numbers if num % 2 == 0)
# Test the function
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
print(sum_even_numbers(numbers)) # Output: 30
NDT Technician
6
salaries
| ₹2.3 L/yr - ₹6 L/yr |
Draughtsman Mechanical
4
salaries
| ₹0.7 L/yr - ₹0.8 L/yr |
Petrofac
Schlumberger
Baker Hughes
NBTC GROUP