Filter interviews by
Types of motors include AC motors, DC motors, stepper motors, and servo motors.
AC motors: Alternating current motors commonly used in household appliances and industrial machinery.
DC motors: Direct current motors used in applications such as electric vehicles and robotics.
Stepper motors: Motors that move in discrete steps and are used in printers, CNC machines, and robotics.
Servo motors: Motors that provide precis...
A DOL starter control and power circuit is used to start and stop a motor directly on full line voltage.
DOL stands for Direct-On-Line.
The control circuit consists of a start button, stop button, and overload relay.
The power circuit includes a contactor, motor, and power supply.
When the start button is pressed, the contactor closes and the motor starts.
The overload relay protects the motor from excessive current.
Th...
Controlling rejection involves identifying root causes, implementing corrective actions, and continuous monitoring.
Conduct regular quality checks to identify rejection trends
Analyze rejection data to determine root causes
Implement corrective actions to address identified issues
Train employees on proper procedures and quality standards
Monitor rejection rates to ensure effectiveness of corrective actions
PM analysis can be implemented by following a structured approach to identify, prioritize and address potential equipment failures.
Identify critical equipment and components
Collect data on equipment performance and maintenance history
Analyze data to identify patterns and potential failure modes
Prioritize actions based on risk and impact
Implement corrective actions and monitor effectiveness
Continuously improve the ...
A complex query is a query that involves multiple tables, conditions, and/or functions.
Start by identifying the tables involved in the query
Determine the conditions that need to be met using WHERE clause
Use JOIN to combine tables if necessary
Use aggregate functions like COUNT, SUM, AVG, etc. to perform calculations
Use subqueries to break down complex queries into smaller parts
Test the query and refine as necessary
SQL subquery is a query within another query used to retrieve data from one or more tables.
Subqueries are enclosed in parentheses and placed within the WHERE or HAVING clause of the outer query.
They can be used to filter, sort, or aggregate data based on the results of the subquery.
Subqueries can also be used in the SELECT statement to retrieve a single value or set of values.
Example: SELECT * FROM employees WHERE...
A constructor is a special method used to initialize objects in a class.
Constructors have the same name as the class they belong to.
They are called automatically when an object is created.
Constructors can take parameters to set initial values.
They can be overloaded to provide multiple ways of initializing objects.
Join queries are used to combine data from two or more tables based on a related column.
Use the JOIN keyword followed by the name of the table you want to join.
Specify the columns you want to select from each table.
Use the ON keyword to specify the column(s) that the tables should be joined on.
There are different types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.
Example: SELECT customers.name,...
JSP and Servlet are Java technologies used for creating dynamic web pages and handling HTTP requests and responses.
JSP stands for JavaServer Pages and is used for creating dynamic web pages that can interact with server-side data and logic.
Servlet is a Java program that runs on a web server and handles HTTP requests and responses.
JSP and Servlet work together to create dynamic web applications that can generate HT...
Multithreading is the ability of a CPU to execute multiple threads concurrently. Wait method is used to pause a thread.
Multithreading allows for better utilization of CPU resources
Wait method is used to pause a thread until a certain condition is met
Other methods like notify and notifyAll can be used to wake up waiting threads
Multithreading can improve performance in applications that require parallel processing
Ja...
PM analysis can be implemented by following a structured approach to identify, prioritize and address potential equipment failures.
Identify critical equipment and components
Collect data on equipment performance and maintenance history
Analyze data to identify patterns and potential failure modes
Prioritize actions based on risk and impact
Implement corrective actions and monitor effectiveness
Continuously improve the proce...
Controlling rejection involves identifying root causes, implementing corrective actions, and continuous monitoring.
Conduct regular quality checks to identify rejection trends
Analyze rejection data to determine root causes
Implement corrective actions to address identified issues
Train employees on proper procedures and quality standards
Monitor rejection rates to ensure effectiveness of corrective actions
I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.
Transformers are electrical devices that transfer electrical energy between two or more circuits through electromagnetic induction.
Transformers are used to step up or step down voltage levels in electrical power transmission and distribution systems.
They consist of two or more coils of wire, known as windings, that are wound around a core made of magnetic material.
The primary winding is connected to the input voltage s...
I applied via Referral and was interviewed before May 2022. There were 3 interview rounds.
Commercial and domestic voltage varies depending on the country and region.
Commercial voltage is typically higher than domestic voltage.
In the United States, commercial voltage is usually 120/208 volts or 277/480 volts.
In residential areas of the United States, domestic voltage is typically 120/240 volts.
In Europe, commercial voltage is often 230/400 volts, while domestic voltage is 230 volts.
Frequency of supply voltag...
AC can be converted to DC using a rectifier circuit. The circuit diagram includes a transformer, diodes, and a filter capacitor.
AC to DC conversion is achieved using a rectifier circuit.
A rectifier circuit consists of a transformer, diodes, and a filter capacitor.
The transformer steps down the AC voltage to a lower level.
Diodes are used to convert the AC voltage to pulsating DC.
The filter capacitor smoothens the pulsat...
Types of transformers include power transformers, distribution transformers, autotransformers, instrument transformers, and isolation transformers.
Power transformers are used in high voltage transmission systems to step up or step down voltage levels.
Distribution transformers are used to supply power to residential and commercial areas.
Autotransformers have a single winding and are used for voltage regulation.
Instrumen...
Types of motors include AC motors, DC motors, stepper motors, and servo motors.
AC motors: Alternating current motors commonly used in household appliances and industrial machinery.
DC motors: Direct current motors used in applications such as electric vehicles and robotics.
Stepper motors: Motors that move in discrete steps and are used in printers, CNC machines, and robotics.
Servo motors: Motors that provide precise con...
A DOL starter control and power circuit is used to start and stop a motor directly on full line voltage.
DOL stands for Direct-On-Line.
The control circuit consists of a start button, stop button, and overload relay.
The power circuit includes a contactor, motor, and power supply.
When the start button is pressed, the contactor closes and the motor starts.
The overload relay protects the motor from excessive current.
The sto...
Vernier calliper least count is the smallest measurement that can be read on the instrument.
It is the difference between the smallest division on the main scale and the smallest division on the vernier scale.
It is usually 0.1 mm or 0.02 mm for metric vernier callipers and 0.001 inch for imperial vernier callipers.
The least count determines the precision of the instrument and affects the accuracy of the measurements tak...
I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.
Java OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects to take on multiple forms and behave differently based on the context.
Encapsulation hides the implementation details of a class and only exposes necessary information.
Abstraction focuses on the essential features of an object and...
SQL aggregation functions perform calculations on multiple rows of a single column of a table.
Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.
They are used with the SELECT statement to retrieve data from a table.
Examples: SELECT COUNT(*) FROM customers; SELECT AVG(price) FROM products;
Aggregate functions can also be used with the GROUP BY clause to group data by one or more columns.
Join is a SQL operation that combines rows from two or more tables based on a related column between them.
Join is used to retrieve data from multiple tables in a single query.
Types of join include inner join, left join, right join, and full outer join.
Inner join returns only the matching rows from both tables.
Left join returns all the rows from the left table and matching rows from the right table.
Right join returns al...
Join queries are used to combine data from two or more tables based on a related column.
Use the JOIN keyword followed by the name of the table you want to join.
Specify the columns you want to select from each table.
Use the ON keyword to specify the column(s) that the tables should be joined on.
There are different types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.
Example: SELECT customers.name, orde...
SQL is a programming language used to manage and manipulate relational databases.
SQL stands for Structured Query Language
It is used to create, modify, and query databases
Common commands include SELECT, INSERT, UPDATE, and DELETE
Example: SELECT * FROM customers WHERE age > 18;
A constructor is a special method used to initialize objects in a class.
Constructors have the same name as the class they belong to.
They are called automatically when an object is created.
Constructors can take parameters to set initial values.
They can be overloaded to provide multiple ways of initializing objects.
Class and object are fundamental concepts in object-oriented programming. Method overloading and method overriding are two ways to achieve polymorphism.
A class is a blueprint or template for creating objects that encapsulate data and behavior.
An object is an instance of a class that has its own state and behavior.
Method overloading is when multiple methods in a class have the same name but different parameters.
Method o...
Exception handling is the process of handling errors and unexpected events in a program.
It involves identifying and anticipating potential errors
It provides a mechanism to handle these errors gracefully
It helps prevent program crashes and improves user experience
Examples include try-catch blocks, throw statements, and finally blocks
Multithreading is the ability of a CPU to execute multiple threads concurrently. Wait method is used to pause a thread.
Multithreading allows for better utilization of CPU resources
Wait method is used to pause a thread until a certain condition is met
Other methods like notify and notifyAll can be used to wake up waiting threads
Multithreading can improve performance in applications that require parallel processing
Java pr...
JSP and Servlet are Java technologies used for creating dynamic web pages and handling HTTP requests and responses.
JSP stands for JavaServer Pages and is used for creating dynamic web pages that can interact with server-side data and logic.
Servlet is a Java program that runs on a web server and handles HTTP requests and responses.
JSP and Servlet work together to create dynamic web applications that can generate HTML, p...
SQL subquery is a query within another query used to retrieve data from one or more tables.
Subqueries are enclosed in parentheses and placed within the WHERE or HAVING clause of the outer query.
They can be used to filter, sort, or aggregate data based on the results of the subquery.
Subqueries can also be used in the SELECT statement to retrieve a single value or set of values.
Example: SELECT * FROM employees WHERE depa...
A complex query is a query that involves multiple tables, conditions, and/or functions.
Start by identifying the tables involved in the query
Determine the conditions that need to be met using WHERE clause
Use JOIN to combine tables if necessary
Use aggregate functions like COUNT, SUM, AVG, etc. to perform calculations
Use subqueries to break down complex queries into smaller parts
Test the query and refine as necessary
I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.
Top trending discussions
posted on 11 Apr 2024
I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.
Control logic of a turbine involves regulating the flow of fuel and air to maintain desired speed and power output. Operation of a turbine includes starting, monitoring, and shutting down the turbine.
Control logic of a turbine involves adjusting fuel and air flow based on speed and power requirements
Operation of a turbine includes starting procedures such as pre-purge and ignition sequence
Monitoring turbine operation i...
I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 3 interview rounds.
Related to practical cases under different laws and daily working knowledge
posted on 15 Sep 2024
I applied via Campus Placement and was interviewed in Aug 2024. There was 1 interview round.
Some of the top questions asked at the Sigma Electric Manufacturing Corporation interview for freshers -
The duration of Sigma Electric Manufacturing Corporation interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 1 interview experience
Difficulty level
Duration
based on 1.2k reviews
Rating in categories
Diploma Trainee Engineer
340
salaries
| ₹1.1 L/yr - ₹3 L/yr |
Assistant Engineer
322
salaries
| ₹1.6 L/yr - ₹5 L/yr |
Quality Engineer
99
salaries
| ₹1.5 L/yr - ₹4.4 L/yr |
Senior Engineer
93
salaries
| ₹3.6 L/yr - ₹8.9 L/yr |
Production Engineer
79
salaries
| ₹1.5 L/yr - ₹4.5 L/yr |
John Deere
ABB
CNH ( Case New Holland)
Caterpillar Inc