Filter interviews by
I applied via Referral and was interviewed before Sep 2022. There were 2 interview rounds.
There are two main types of ejection molding: ejector pin and ejector sleeve.
Ejector pin ejection molding involves using pins to push the molded part out of the mold.
Ejector sleeve ejection molding involves using sleeves to push the molded part out of the mold.
Other types may include stripper plate ejection and air ejection.
Each type of ejection molding has its own advantages and disadvantages.
I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.
Gas is a state of matter that is characterized by its ability to expand and fill any container it is placed in.
Gas is one of the three fundamental states of matter, along with solid and liquid.
It consists of particles that are widely spaced and move freely in all directions.
Gases have no definite shape or volume, and they can be compressed or expanded easily.
Examples of gases include oxygen, nitrogen, carbon dioxide, a
The question is unclear and lacks context. Please provide more information.
Please provide more information about the fuel in question
What was the use of the fuel?
What effect are you referring to?
Without more information, it is impossible to answer this question
The gas flow equation is used to calculate the flow rate of gas through a pipe or channel.
The equation is based on the principle of conservation of mass.
It takes into account the pressure, temperature, and density of the gas.
The most commonly used gas flow equation is the Bernoulli's equation.
Other equations include the Darcy-Weisbach equation and the Hazen-Williams equation.
Gas flow equations are important in industri
The question is unclear and requires clarification.
Please provide more context or information about what is being asked.
It is unclear what 'pE' refers to and how it relates to the numbers 800 and 100.
Without more information, it is difficult to provide a meaningful answer.
DRS stands for Design Review Service and MRS stands for Manufacturing Review Service.
DRS is a service that reviews the design of a product to ensure it meets the required standards.
MRS is a service that reviews the manufacturing process of a product to ensure it meets the required standards.
Both services are commonly used in the oil and gas industry to ensure safety and quality of equipment.
DRS and MRS are often conduc...
DRS is Document Review Service while MRS is Material Review Service.
DRS involves reviewing documents related to the product or project.
MRS involves reviewing the materials used in the product or project.
DRS is focused on ensuring compliance with regulations and standards.
MRS is focused on ensuring the quality and suitability of materials.
DRS is typically done before production or construction begins.
MRS is typically do...
MDPE pipes are medium-density polyethylene pipes used for gas and water supply systems.
MDPE pipes have a higher pressure rating than LDPE pipes.
They are resistant to corrosion and chemicals.
MDPE pipes are flexible and easy to install.
Examples of MDPE pipes include Alkathene, Polypipe, and Philmac.
They are commonly used in gas and water supply systems.
A service regulator is a device that regulates the pressure of a gas or liquid in a pipeline or system.
It is used to maintain a constant pressure in a pipeline or system.
It can be used for various gases and liquids such as natural gas, propane, oxygen, and nitrogen.
It is commonly used in industrial and commercial applications such as in gas pipelines, HVAC systems, and welding equipment.
It works by reducing the pressur...
Various fittings are used in GI installation including elbows, tees, couplings, reducers, and flanges.
Elbows are used to change the direction of the pipe.
Tees are used to split the flow of the pipe into two directions.
Couplings are used to connect two pipes together.
Reducers are used to connect pipes of different sizes together.
Flanges are used to connect pipes to valves or other equipment.
Other fittings may include un
I was interviewed before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
This was MCQ+Coding round.
Check if two strings are anagrams by comparing the sorted versions of the strings.
Sort both strings and compare if they are equal.
Use a hashmap to store the frequency of characters in each string and compare the maps.
Ignore spaces and punctuation when comparing the strings.
Round duration - 90 minutes
Round difficulty - Easy
This was face to face interview round.
Round duration - 90 minutes
Round difficulty - Easy
This was face to face interview round.
Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.
Add projects and Internships if you have done any and add only those things which you really know.
Final outcome of the interviewSelectedI was interviewed before Sep 2020.
Round duration - 90 Minutes
Round difficulty - Medium
Interview started at 11:00 am. It was an online round. During the coding round I submitted optimized solution and got full acceptance of the solutions.
You are provided with a directed graph composed of 'N' nodes. You have a matrix called 'EDGES' with dimensions M x 2, which specifies the 'M' edges in the graph. Each edge...
Detect cycle in a directed graph using depth-first search (DFS) algorithm.
Use DFS to traverse the graph and detect back edges indicating a cycle.
Maintain a visited array to keep track of visited nodes during traversal.
If a node is visited again during traversal and it is not the parent node, then a cycle exists.
Return true if a cycle is detected, false otherwise.
Round duration - 80 Minutes
Round difficulty - Medium
Interview started at 10:00 am. Interview went well, I was able to connect with the interviewer and enjoyed the whole interview
Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'.
You are given a number in string format, a...
Find the next smallest palindrome greater than a given number represented as a string.
Convert the string to an integer, find the next greater palindrome, and convert it back to a string.
Handle cases where the number is a palindrome or has all digits as '9'.
Consider both odd and even length numbers when finding the next palindrome.
Round duration - 80 Minutes
Round difficulty - Medium
Interview started at 11:00 am. Interview went well.
Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.
The first line ...
Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.
Traverse the left boundary nodes in a top-down manner
Traverse the leaf nodes from left to right
Traverse the right boundary nodes in a bottom-up manner
Handle cases where duplicates occur in the boundary nodes
Implement the function without printing as printing is already managed
Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. Learn them by heart.
Tip 2 : For Web.Development Try to learn full stack development. See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers. By doing this 1-2 projects will increase and cover all the major things which one should learn in their career/college.
Tip 1 : Always try to make it a single page
Tip 2 : Always make resume company specific. eg. Data Structures part more if you are applying for MNC's eg. Amazon, Google, DE Shaw, browserstack.
I was interviewed in Aug 2017.
Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.
Divide the array into two halves
Recursively sort the two halves
Merge the sorted halves
Find pairs of integers in a BST whose sum is equal to a given number.
Traverse the BST and store the values in a hash set.
For each node, check if (X - node.value) exists in the hash set.
If yes, add the pair (node.value, X - node.value) to the result.
Continue traversal until all nodes are processed.
Merge overlapping time intervals into mutually exclusive intervals.
Sort the intervals based on their start time.
Iterate through the intervals and merge overlapping intervals.
Output the mutually exclusive intervals.
Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]
Different types of hashing and alternative for Linear Chaining
Different types of hashing include division, multiplication, and universal hashing
Alternative for Linear Chaining is Open Addressing
Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing
An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.
AVL tree is a binary search tree with additional balance factor for each node.
The balance factor is the difference between the heights of the left and right subtrees.
Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.
Rotations are performed ...
Find the minimum number of squares whose sum equals to a given number n.
Use dynamic programming to solve the problem efficiently.
Start with finding the square root of n and check if it is a perfect square.
If not, then try to find the minimum number of squares required for the remaining number.
Repeat the process until the remaining number becomes 0.
Return the minimum number of squares required for the given number n.
Insertion sort for a singly linked list.
Traverse the list and compare each node with the previous nodes
If the current node is smaller, swap it with the previous node
Repeat until the end of the list is reached
Time complexity is O(n^2)
I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.
I applied via Company Website and was interviewed in May 2019. There were 5 interview rounds.
I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.
Implemented a new customer feedback system that increased customer satisfaction by 20%
Implemented a new customer feedback system to gather insights and improve customer experience
Analyzed feedback data to identify common issues and areas for improvement
Implemented changes based on feedback to address customer concerns and enhance overall satisfaction
Trained team members on how to effectively use the new system and inte...
I applied via Naukri.com
based on 1 interview
Interview experience
based on 69 reviews
Rating in categories
Inspection Engineer
14
salaries
| ₹0 L/yr - ₹0 L/yr |
Executive
13
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
9
salaries
| ₹0 L/yr - ₹0 L/yr |
QC Inspector
7
salaries
| ₹0 L/yr - ₹0 L/yr |
IT Executive
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Amazon
Flipkart
Mahindra & Mahindra
Asian Paints