Filter interviews by
Be the first one to contribute and help others!
I appeared for an interview before Feb 2024.
The seven quality control tools are essential for process improvement and problem-solving in engineering.
Check sheet: Used to collect and analyze data in a systematic way, such as tracking defects in a manufacturing process.
Pareto chart: Helps identify the most significant factors contributing to a problem by displaying them in descending order of frequency or impact.
Cause-and-effect diagram (Fishbone diagram): Visuali...
Autonomous maintenance is a key pillar of Total Productive Maintenance (TPM) and involves seven steps to empower operators to take care of their equipment.
Step 1: Initial Cleaning - Operators clean the equipment and surrounding area to identify abnormalities.
Step 2: Eliminate Sources of Contamination - Remove dirt, dust, and debris that can lead to breakdowns.
Step 3: General Inspection - Operators visually inspect the ...
OEE calculations involve Availability, Performance, and Quality factors to measure equipment efficiency.
Calculate Availability by dividing Operating Time by Planned Production Time.
Calculate Performance by dividing Actual Production by Maximum Possible Production.
Calculate Quality by dividing Good Units Produced by Total Units Started.
Implementing lean practices is mandatory for organizations to improve efficiency, reduce waste, and increase productivity.
Lean practices help organizations identify and eliminate waste in processes, leading to cost savings and improved efficiency.
By implementing lean practices, organizations can improve quality control and reduce defects in products or services.
Lean practices promote continuous improvement and empower ...
Downstream team members can be motivated through recognition, clear communication, opportunities for growth, and fostering a positive work environment.
Provide recognition for their hard work and achievements
Communicate clearly about goals, expectations, and feedback
Offer opportunities for growth and development, such as training or mentorship programs
Create a positive work environment through team-building activities a
Pareto analysis is a technique used to identify the most important factors contributing to a problem or situation.
Pareto analysis is based on the Pareto Principle, also known as the 80/20 rule, which states that roughly 80% of effects come from 20% of causes.
It involves identifying and prioritizing the factors that have the most significant impact on a particular outcome.
By focusing on addressing the most critical fact...
A Gemba walk is a Lean management technique where managers go to the actual workplace to observe operations and engage with employees.
Gemba walks involve observing processes, asking questions, and identifying opportunities for improvement.
Managers should focus on understanding the work being done and the challenges faced by employees.
Gemba walks help in building relationships with employees and fostering a culture of c...
Steps involved in performing safety risk assessments
Identify hazards and potential risks
Assess the likelihood and severity of each risk
Implement control measures to mitigate risks
Monitor and review the effectiveness of control measures
Document findings and recommendations
Communicate risks to relevant stakeholders
TPM stands for Total Productive Maintenance, a proactive approach to maintenance that aims to maximize equipment effectiveness.
TPM focuses on preventing equipment breakdowns through regular maintenance and employee involvement.
It involves autonomous maintenance, planned maintenance, and focused improvement activities.
TPM aims to improve overall equipment effectiveness (OEE) by reducing downtime, improving quality, and ...
I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.
Experienced business analyst with a background in data analysis and process improvement.
Over 5 years of experience in analyzing business processes and identifying areas for improvement
Skilled in data analysis tools such as Excel, SQL, and Tableau
Strong communication and problem-solving skills
Led a project to streamline inventory management processes, resulting in a 20% reduction in costs
I applied via Walk-in and was interviewed before Dec 2020. There were 5 interview rounds.
The neutral axis is the line where the stress is zero in a reinforced concrete structure.
The neutral axis divides the cross-section of the structure into two parts: the compression zone and the tension zone.
The depth of the neutral axis depends on the moment of resistance of the section and the bending moment applied.
The position of the neutral axis affects the amount of reinforcement required in the tension zone.
The n...
I applied via Monster and was interviewed before Apr 2023. There were 3 interview rounds.
Question are hard in panel
I am currently earning a salary of $60,000 per year.
My current annual salary is $60,000
I am earning $5,000 per month
My total compensation package is $60,000
The company name is XYZ Corporation, a leading data analytics firm specializing in providing insights for businesses.
XYZ Corporation is a data analytics firm
Specializes in providing insights for businesses
It is very good in study for
Further studies.
System implementation process involves planning, designing, testing, and deploying new software or hardware systems.
Planning phase involves defining project scope, setting goals, and creating a timeline.
Design phase includes creating system architecture, database design, and user interface.
Testing phase involves conducting various tests to ensure system functionality and performance.
Deployment phase includes installing...
Monitoring performance involves setting clear expectations, providing feedback, tracking progress, and addressing any issues that arise.
Set clear performance expectations for team members
Provide regular feedback on performance
Track progress towards goals and objectives
Address any performance issues promptly and constructively
Good level question. I have qualified for the next round
Basic to intermediate question, Cleared the test
Queue can be implemented using two stacks by maintaining the order of elements in the stacks.
Create two stacks, let's call them stack1 and stack2
When an element is enqueued, push it to stack1
When an element is dequeued, pop all elements from stack1 and push them to stack2
Pop the top element from stack2 and return it as the dequeued element
If stack2 is empty, repeat step 3
To get the front element of the queue, peek the
Left join returns all records from left table and matching records from right table. Full outer join returns all records from both tables.
Left join is used to combine two tables based on a common column.
In left join, all records from the left table are returned along with matching records from the right table.
If there is no match in the right table, NULL values are returned.
Example: SELECT * FROM table1 LEFT JOIN table...
Magic functions are special methods in PHP that start with __. Autoloading is a way to automatically load classes.
Magic functions are used to handle certain events in PHP, such as object creation or property access.
Autoloading allows PHP to automatically load classes when they are needed, without requiring manual includes.
Magic functions can be used in conjunction with autoloading to dynamically load classes or handle
Given three sorted arrays, find common elements.
Create three pointers to traverse each array
Compare the elements at the pointers and move the pointer of the smallest element
If all pointers point to the same element, add it to the result and move all pointers
Repeat until any pointer reaches the end of its array
Check if a number is a power of 2 or not.
A power of 2 has only one bit set in its binary representation.
Use bitwise AND operator to check if the number is a power of 2.
If n is a power of 2, then n & (n-1) will be 0.
I applied via Referral
Event bubbling is the propagation of an event from the innermost child element to the outermost parent element.
Events triggered on a child element will also trigger on its parent elements
The event travels up the DOM tree until it reaches the document object
Can be stopped using event.stopPropagation()
Can be useful for event delegation
The .on('click',function() is a more flexible method than .click(function())
The .on() method can handle multiple events and selectors
The .click() method can only handle one event and one selector
The .on() method can also handle dynamically added elements
The .click() method cannot handle dynamically added elements
Function to check if two strings are anagram or not
Create two character arrays from the strings
Sort the arrays
Compare the sorted arrays
Function to determine the order of integers in an array.
Check first and last element to determine if increasing or decreasing
Check for inflection point to determine if order changes
Return order type as string
Optimize images, minify code, reduce HTTP requests, use caching, and lazy loading.
Optimize images using compression and appropriate file formats
Minify code to reduce file size and improve load times
Reduce HTTP requests by combining files and using sprites
Use caching to store frequently accessed data locally
Implement lazy loading to defer loading of non-critical resources
Design a database schema for a movie site with user ratings and recommendations.
Create tables for movies, users, ratings, and recommendations
Use foreign keys to link tables
Include columns for movie genre and user watch history
Algorithm for recommendations can use user watch history and ratings to suggest similar movies
Function to simulate dice roll with equal probability without using random function
Use a toss function that returns either 0 or 1 with equal probability
Call the toss function 3 times and convert the result to a binary number
If the binary number is greater than 0 and less than or equal to 6, return it
If the binary number is greater than 6, repeat the process
Query to fetch duplicate email from table
Use GROUP BY and HAVING clause to filter out duplicates
SELECT email, COUNT(*) FROM table_name GROUP BY email HAVING COUNT(*) > 1;
This will return all the duplicate emails in the table
based on 5 reviews
Rating in categories
Graphic Designer
7
salaries
| ₹3 L/yr - ₹3.6 L/yr |
Embedded Developer
4
salaries
| ₹3 L/yr - ₹4.8 L/yr |
Testing Support Engineer
4
salaries
| ₹3 L/yr - ₹3.6 L/yr |
Executive Accountant
3
salaries
| ₹2.4 L/yr - ₹2.6 L/yr |
Softwaretest Engineer
3
salaries
| ₹2.6 L/yr - ₹6 L/yr |
Amazon Sellers Services
Primus Global Technologies
GAMMON INDIA
Practo