Filter interviews by
VLOOKUP is an Excel function used to search for a value in the first column of a range and return a value in the same row from a specified column.
Syntax: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Example: =VLOOKUP(A2, B2:D10, 3, FALSE) looks for the value in A2 within the range B2:D10 and returns the corresponding value from the 3rd column.
The 'lookup_value' is the value you want to find, 't...
7QC tools are a set of basic quality tools used for process improvement and problem-solving.
The tools include: Pareto chart, cause-and-effect diagram, check sheet, control chart, histogram, scatter diagram, and flowchart.
They help identify and analyze problems, prioritize issues, and monitor progress.
For example, a Pareto chart can be used to identify the most common causes of defects, while a control chart can be...
Measuring instruments are used in quality to ensure products meet specifications and standards.
Measuring instruments help to accurately measure and monitor product characteristics such as dimensions, weight, and strength.
They are used to ensure products meet specifications and standards set by regulatory bodies and customers.
Examples of measuring instruments include calipers, micrometers, gauges, and spectrophotom...
To control the defect problem, use 7QC tools and TQM.
Identify the problem and gather data using tools like Pareto chart, Ishikawa diagram, etc.
Analyze the data to find the root cause of the problem.
Develop and implement a solution using Total Quality Management principles.
Monitor and control the process to ensure the problem does not recur.
Continuously improve the process to prevent future defects.
Defect control can be achieved through various methods such as statistical process control, root cause analysis, and continuous improvement.
Implement statistical process control to monitor and control the production process
Conduct root cause analysis to identify the underlying causes of defects and implement corrective actions
Implement continuous improvement initiatives to prevent defects from occurring in the fir...
Quality refers to the degree of excellence or superiority of a product or service.
Quality is a measure of how well a product or service meets customer expectations and requirements.
It involves ensuring that the product or service is free from defects or errors.
Quality also includes aspects such as reliability, durability, performance, and customer satisfaction.
Quality can be achieved through various processes like...
PDCA stands for Plan-Do-Check-Act, a four-step management method used for continuous improvement of processes and products.
Plan: Identify the problem and plan a solution
Do: Implement the plan
Check: Evaluate the results and compare them to the expected outcomes
Act: Take corrective action and make necessary adjustments for improvement
Example: Using PDCA to improve a manufacturing process by identifying the problem, ...
Various quality tools can be used to solve problems in product checksheet, pareto diagram, fishbone diagram, histogram, scatter diagram, process flow diagram, and control chart.
Checksheet can be used to collect data and identify patterns.
Pareto diagram can help identify the most frequent problems.
Fishbone diagram can be used to identify the root cause of a problem.
Histogram can help identify the distribution of da...
VLOOKUP is an Excel function used to search for a value in the first column of a range and return a value in the same row from a specified column.
Syntax: VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Example: =VLOOKUP(A2, B2:D10, 3, FALSE) looks for the value in A2 within the range B2:D10 and returns the corresponding value from the 3rd column.
The 'lookup_value' is the value you want to find, 'table_...
Quality refers to the degree of excellence or superiority of a product or service.
Quality is a measure of how well a product or service meets customer expectations and requirements.
It involves ensuring that the product or service is free from defects or errors.
Quality also includes aspects such as reliability, durability, performance, and customer satisfaction.
Quality can be achieved through various processes like qual...
Defect control can be achieved through various methods such as statistical process control, root cause analysis, and continuous improvement.
Implement statistical process control to monitor and control the production process
Conduct root cause analysis to identify the underlying causes of defects and implement corrective actions
Implement continuous improvement initiatives to prevent defects from occurring in the first pl...
To control the defect problem, use 7QC tools and TQM.
Identify the problem and gather data using tools like Pareto chart, Ishikawa diagram, etc.
Analyze the data to find the root cause of the problem.
Develop and implement a solution using Total Quality Management principles.
Monitor and control the process to ensure the problem does not recur.
Continuously improve the process to prevent future defects.
PDCA stands for Plan-Do-Check-Act, a four-step management method used for continuous improvement of processes and products.
Plan: Identify the problem and plan a solution
Do: Implement the plan
Check: Evaluate the results and compare them to the expected outcomes
Act: Take corrective action and make necessary adjustments for improvement
Example: Using PDCA to improve a manufacturing process by identifying the problem, imple...
7QC tools are a set of basic quality tools used for process improvement and problem-solving.
The tools include: Pareto chart, cause-and-effect diagram, check sheet, control chart, histogram, scatter diagram, and flowchart.
They help identify and analyze problems, prioritize issues, and monitor progress.
For example, a Pareto chart can be used to identify the most common causes of defects, while a control chart can be used...
Various quality tools can be used to solve problems in product checksheet, pareto diagram, fishbone diagram, histogram, scatter diagram, process flow diagram, and control chart.
Checksheet can be used to collect data and identify patterns.
Pareto diagram can help identify the most frequent problems.
Fishbone diagram can be used to identify the root cause of a problem.
Histogram can help identify the distribution of data.
Sc...
Measuring instruments are used in quality to ensure products meet specifications and standards.
Measuring instruments help to accurately measure and monitor product characteristics such as dimensions, weight, and strength.
They are used to ensure products meet specifications and standards set by regulatory bodies and customers.
Examples of measuring instruments include calipers, micrometers, gauges, and spectrophotometers...
Top trending discussions
I applied via Naukri.com and was interviewed before Jul 2019. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Jun 2020. There were 4 interview rounds.
I applied via Referral and was interviewed in Oct 2020. There were 5 interview rounds.
Handling an impatient customer requires active listening, empathy, and clear communication.
Listen actively to the customer's concerns and acknowledge their frustration.
Show empathy by putting yourself in their shoes and understanding their perspective.
Communicate clearly and honestly about the situation and what steps can be taken to resolve it.
Offer solutions or alternatives to help alleviate their frustration.
Follow ...
Communicate with the customer and provide regular updates on the progress of the issue.
Request an update from the engineers and communicate the same to the customer.
Provide an estimated timeline based on the severity of the issue and the resources available.
Ensure that the customer is aware of any potential delays or roadblocks.
Offer alternative solutions or workarounds if possible.
I applied via Company Website and was interviewed in Nov 2020. There were 5 interview rounds.
To check if a directed graph is cyclic or not
Use Depth First Search (DFS) algorithm to traverse the graph
Maintain a visited set to keep track of visited nodes
Maintain a recursion stack to keep track of nodes in the current DFS traversal
If a node is visited and is already in the recursion stack, then the graph is cyclic
If DFS traversal completes without finding a cycle, then the graph is acyclic
Return a random byte from a stream of bytes with equal probability.
Create a variable to store the count of bytes read
Create a variable to store the current random byte
For each byte read, generate a random number between 0 and the count of bytes read
If the random number is 0, store the current byte as the random byte
Return the random byte
Check if a binary tree is a binary search tree or not.
Traverse the tree in-order and check if the values are in ascending order.
For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.
Use recursion to check if all nodes in the tree satisfy the above condition.
Algorithm to find Nth-to-Last element in a singly linked list of unknown length
Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning
Move both pointers simultaneously until the second pointer reaches the end of the list
The first pointer will be pointing to the Nth-to-Last element
If N=0, return the last element
Parse the list only once
Print all possible permutations of an array of integers
Use recursion to swap elements and generate permutations
Start with the first element and swap it with each subsequent element
Repeat the process for the remaining elements
Stop when all elements have been swapped with the first element
Print each permutation as it is generated
Design a stack that prints the minimum element pushed in O(1)
Use two stacks, one for storing elements and another for storing minimums
When pushing an element, compare it with the top of minimum stack and push the smaller one
When popping an element, pop from both stacks
To get the minimum element, just return the top of minimum stack
To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.
Use two pointers, one moving at twice the speed of the other.
When they meet, move one pointer to the head of the list and keep the other at the meeting point.
Move both pointers one step at a time until they meet again, which is the starting point of the loop.
To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.
Use binary search to find the number in each row and column
Start from the top-right corner or bottom-left corner to optimize search
Time complexity: O(m log n) or O(n log m) depending on the starting corner
I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.
based on 41 reviews
Rating in categories
7-15 Yrs
Not Disclosed
5-12 Yrs
Not Disclosed
5-10 Yrs
Not Disclosed
Senior Associate
22
salaries
| ₹4.4 L/yr - ₹15.8 L/yr |
Senior Software Engineer
9
salaries
| ₹19.8 L/yr - ₹35 L/yr |
Associate
9
salaries
| ₹4.2 L/yr - ₹7.3 L/yr |
Team Lead
7
salaries
| ₹10 L/yr - ₹18.1 L/yr |
Billing Executive
7
salaries
| ₹3 L/yr - ₹4 L/yr |
Yodlee
Fingent
Bravura Solutions
CloudMoyo