Filter interviews by
OEE calculation is done by multiplying Availability, Performance, and Quality percentages.
Calculate Availability: (Operating Time / Planned Production Time) * 100
Calculate Performance: (Ideal Cycle Time * Total Count) / Operating Time
Calculate Quality: Good Count / Total Count
Multiply Availability, Performance, and Quality percentages to get OEE
I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.
Colour code test, verbal meaning
I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.
Hydraulic valves control the flow and pressure of hydraulic fluid in a system. They can be operated manually or automatically.
Hydraulic valves are used to control the flow and pressure of hydraulic fluid in a system.
They are essential components in hydraulic systems, allowing for precise control and regulation.
Hydraulic valves can be operated manually using levers, knobs, or buttons.
They can also be operated automatica...
Kromberg & Schubert interview questions for popular designations
Top trending discussions
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.
OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.
OOPS focuses on creating objects that contain both data and methods to manipulate that data.
Encapsulation, inheritance, and polymorphism are key principles of OOPS.
Example: In a car simulation program, a 'Car' object can have properties like 'color' and 'speed', and methods like 'accelerate' and 'brake'.
Microservices are a software architecture design where applications are broken down into smaller, independent services that communicate with each other.
Microservices are small, independent services that focus on specific business functions.
Each microservice can be developed, deployed, and scaled independently.
Intercommunication between microservices is typically done through APIs or messaging queues.
Examples of interco...
Dependency injection is configured using a framework like Spring in Java projects.
Dependency injection is configured using annotations like @Autowired in Spring framework.
Beans are defined in configuration files like applicationContext.xml or using Java configuration classes.
Dependencies are injected into classes at runtime by the framework.
Constructor injection, setter injection, and field injection are common ways to
CQRS architecture separates read and write operations using Mediator pattern in .Net
CQRS stands for Command Query Responsibility Segregation
Mediator pattern helps in decoupling components by introducing a mediator object
.Net MediatR library is commonly used for implementing Mediator pattern in CQRS architecture
Object is a static entity with predefined structure, while dynamic can change at runtime.
Object is a class or data structure with fixed properties and methods
Dynamic can change its properties or behavior during runtime
Example: Object - Car class with properties like color, model. Dynamic - User input changing the color of a car object
Constant keyword is used for compile-time constants, while readonly keyword is used for runtime constants.
Constant keyword is used for values that are known at compile time and cannot be changed.
Readonly keyword is used for values that are known at runtime and cannot be changed after initialization.
Constants are implicitly static, while readonly fields are not.
Constants are defined at the class level, while readonly fi
Entity Framework is used as the ORM in the current project.
Entity Framework is a popular ORM framework for .NET applications
It provides a way to work with databases using .NET objects
Supports LINQ queries for database operations
An abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by its subclasses.
Cannot be instantiated directly
May contain abstract methods
Used as a blueprint for other classes
Abstraction is the process of hiding complex details and showing only the essential features of an object or system.
Abstraction allows us to focus on what an object does, rather than how it does it
It helps in simplifying complex systems by breaking them down into smaller, more manageable parts
Examples of abstraction include using a car without needing to understand its internal combustion engine, or using a smartphone
QuickSort is one of the best sorting algorithms with an average time complexity of O(n log n).
QuickSort is a divide and conquer algorithm that works by selecting a 'pivot' element and partitioning the array around the pivot.
It has an average time complexity of O(n log n) and a worst-case time complexity of O(n^2).
Example: ['apple', 'banana', 'cherry', 'date', 'fig'] can be sorted using QuickSort.
Example: ['3', '1', '4'...
Bubble sorting has a time complexity of O(n^2) for a sorted list.
Bubble sorting has a worst-case time complexity of O(n^2) for a sorted list.
The time complexity does not change even if the list is already sorted.
Example: If we have a sorted list of size n, bubble sorting will still take O(n^2) time.
Yes, I have been to multiple states other than Jharkhand.
I have traveled to states like Maharashtra, Karnataka, and Tamil Nadu for work and leisure.
I have visited tourist destinations in states like Rajasthan, Kerala, and Himachal Pradesh.
I have family in states like Uttar Pradesh, Bihar, and West Bengal, which I have visited multiple times.
Sabre Commands to Check Availability
Blocking and Booking Tickets
Commands to Check Fare rules
Checking Availability
Infant and Child title
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.
ETL stands for Extract, Transform, Load. It is a process used to extract data from various sources, transform it into a consistent format, and load it into a target database or data warehouse.
Extract: Involves extracting data from different sources such as databases, files, APIs, etc.
Transform: Data is cleaned, validated, and transformed into a consistent format suitable for analysis.
Load: The transformed data is loade...
The correct structure of a DBMS diagram includes entities, attributes, relationships, and keys.
Entities represent the main objects in the database (e.g. Customer, Product).
Attributes are characteristics of entities (e.g. CustomerID, ProductName).
Relationships show how entities are related to each other (e.g. one-to-many, many-to-many).
Keys uniquely identify each record in a table (e.g. Primary Key, Foreign Key).
I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.
QAP stands for Quality Assurance Plan and ITP stands for Inspection and Test Plan.
QAP outlines the quality control procedures and processes to be followed during a project.
ITP details the specific inspections and tests that will be conducted to ensure quality standards are met.
Both documents are essential for ensuring quality and compliance in projects.
Total stations are electronic/optical instruments used in surveying and construction to measure angles and distances.
Total stations combine a theodolite for measuring angles with a distance meter to calculate distances.
They use a laser beam to measure distances to objects.
Total stations are commonly used in construction, civil engineering, and land surveying.
They provide accurate measurements for mapping, setting out b...
Soil compaction is done to increase soil density, improve load-bearing capacity, reduce water infiltration, and enhance root growth.
Increase soil density to improve stability and reduce settling
Improve load-bearing capacity for construction projects
Reduce water infiltration to prevent erosion and improve drainage
Enhance root growth by providing a stable environment for plants
Common methods include using heavy machinery
HDPE liner is used for its durability, chemical resistance, and flexibility in various applications.
HDPE liner is chosen for its high durability, able to withstand harsh environmental conditions.
It is chemically resistant, making it ideal for use in containment systems for hazardous materials.
HDPE liner is flexible, allowing it to conform to the shape of the surface it is being applied to.
Common applications include la...
FDD tests are carried out by following a structured approach to identify defects in software development.
FDD tests involve creating test cases based on functional requirements
Tests are executed to verify if the software functions as expected
Defects found during testing are logged and prioritized for resolution
Regression testing is performed to ensure that fixes do not introduce new issues
posted on 16 Nov 2024
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.
Dependency injection helps in achieving loose coupling between classes.
It allows for easier testing by providing a way to mock dependencies.
There are three types of dependency injection - constructor injection, setter injection, and interface injection.
SOLID principles are a set of five design principles that help make software more maintainable, flexible, and scalable.
Single Responsibility Principle (SRP) - a class should have only one reason to change
Open/Closed Principle (OCP) - classes should be open for extension but closed for modification
Liskov Substitution Principle (LSP) - objects of a superclass should be replaceable with objects of its subclasses without a...
based on 6 interviews
Interview experience
based on 59 reviews
Rating in categories
Industrial Engineer
17
salaries
| ₹10 L/yr - ₹25 L/yr |
Technical Assistant
13
salaries
| ₹2 L/yr - ₹5 L/yr |
Maintenance Engineer
11
salaries
| ₹6 L/yr - ₹10 L/yr |
Technical Worker
10
salaries
| ₹1.2 L/yr - ₹5.4 L/yr |
Technician
7
salaries
| ₹2 L/yr - ₹8 L/yr |
Bosch
Siemens
Mahindra & Mahindra
Tata Motors