Filter interviews by
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
CSV deliverables refer to the specific outputs or results that are expected to be produced in a CSV (Comma-Separated Values) format.
CSV deliverables are typically data files that contain structured information separated by commas.
Examples of CSV deliverables include reports, spreadsheets, and databases exported in CSV format.
CSV deliverables are commonly used for data interchange between different systems or applicatio
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.
Independent Contractor Services interview questions for popular designations
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.
I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.
Top trending discussions
I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.
I appeared for an interview before Sep 2020.
Round duration - 120 minutes
Round difficulty - Medium
10 min for debugging
40 min for problems(coding)
40 min for pyschometric
30 min for aptitude
You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...
The task is to calculate the total number of unique paths from the top-left to bottom-right corner of an M x N matrix by moving only right or down.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store the number of unique paths for each cell in the matrix.
Initialize the first row and first column with 1 as there is only one way to reach each cell in the first row and column.
For each cell ...
You are given two strings 'A' and 'B' composed of words separated by spaces. Your task is to determine the most frequent and lexicographically smallest word in string ...
Find the most frequent and lexicographically smallest word in string 'A' that is not present in string 'B'.
Split strings 'A' and 'B' into words
Count frequency of each word in 'A'
Check if word is not in 'B' and is the most frequent and lexicographically smallest
Return the word or -1 if no such word exists
Round duration - 90 Minutes
Round difficulty - Easy
timing was 4 pm . we connected on amazon chime. Initially he asked me a few things from resume then moved on to problem solving.
You are provided with a 2-dimensional matrix having N
rows and M
columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...
Count the number of islands in a 2D matrix of 1s and 0s.
Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and identify connected groups of 1s.
Maintain a visited array to keep track of visited cells to avoid redundant traversal.
Increment the island count each time a new island is encountered.
Consider all eight possible directions for connectivity while traversing the matrix.
Handle edge ca...
You are given an array/list HEIGHTS
of length N
, where each element represents the height of a histogram bar. The width of each bar is considered to be 1.
Find the area of the largest rectangle that can be formed within the bounds of a given histogram.
Iterate through the histogram bars and maintain a stack to keep track of increasing heights.
Calculate the area of the rectangle formed by each bar as the smallest height in the stack times the width.
Update the maximum area found so far and return it as the result.
Tip 1 : be confident since interviewer is looking at how confident you are with your skills
Tip 2 : dont learn the algorithms but try to understand them
Tip 3 : focus on trees and graphs since amazon asks more of that
Tip 1 : KEEP RESUME SHORT(1 PAGE)
Tip 2 : DONT BLUFF IN RESUME SINCE MY INTERVIEWER ASKED ME LOOKING FROM IT
I applied via Company Website and was interviewed in Aug 2021. There were 2 interview rounds.
E-commerce
I appeared for an interview before Sep 2020.
Round duration - 60 minutes
Round difficulty - Easy
There was 2 coding questions
Based on ds and algorithms
Ninja, who loves playing with numbers, sets out to arrange numbers within 'N' rows. The unique arrangement follows these rules: the first row contains 1 number, the second...
Generate a pattern of numbers in rows following a specific sequence based on powers of 2.
Start with 1 number in the first row, 2 numbers in the second row, 4 numbers in the third row, and so on based on powers of 2.
Fill the pattern with numbers in increasing sequence from 1 to 9, recycling back to 1 after reaching 9.
Output the pattern for a given number 'N' of rows.
Example: For N = 4, the pattern would be 1, 23, 4567,
You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).
A Binary Search Tr...
Validate if a given binary tree is a Binary Search Tree (BST) or not.
Check if the left subtree of a node contains only nodes with data less than the node's data.
Check if the right subtree of a node contains only nodes with data greater than the node's data.
Recursively check if both the left and right subtrees are also binary search trees.
Example: For a node with data 4, left subtree nodes (2, 1, 3) are smaller and righ
Round duration - 60 minutes
Round difficulty - Easy
There was 2 coding questions based on ds and algorithms
You are provided with an array of distinct elements, and your task is to rearrange the array elements in a zig-zag manner. Specifically, for every odd index i
, the element ARR[...
Rearrange array elements in a zig-zag manner where every odd index element is greater than its neighbors.
Iterate through the array and swap elements to satisfy the zig-zag condition.
Ensure that for every odd index i, ARR[i] > ARR[i-1] and ARR[i] > ARR[i+1].
Multiple correct answers may exist for a given array.
You are provided with a linked list of 'N' nodes. Each node contains two pointers: NEXT
, pointing to the next node in the list, and CHILD
, pointing to a linked list. Each child linke...
Flatten a linked list of sorted child linked lists into a single sorted linked list.
Traverse the linked list and maintain a priority queue to keep track of the next smallest element.
Merge the child linked lists into the priority queue while traversing the main linked list.
Pop elements from the priority queue to create the final flattened linked list.
Round duration - 45 Minutes
Round difficulty - Medium
My interview started at 9:30 and it took around 45 minutes to complete my interview.This was held on Amazon Chime and the interview lasted for 1 hour. Firstly the interviewer asked to introduce about myself, later asked regarding the projects I have mentioned in my resume. Then started displaying the coding question. The first question is number of islands in a matrix.
You are provided with a 2-dimensional matrix having N
rows and M
columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...
Count the number of islands in a 2D matrix of 1s and 0s.
Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and identify connected groups of 1s.
Maintain a visited array to keep track of visited cells to avoid redundant traversal.
Increment the island count each time a new island is encountered.
Consider edge cases like when the matrix is empty or all cells are water (0s).
Tip 1 : Be enough confident, don't be nervous. Maintain atleast 2 projects in your resume.
Tip 2 : You should be able to answer each and every thing present in your resume. Don't lie in your resume.
Tip 3 : Prepare Data Structures and Algorithms well. They mostly check our Problem Solving ability to find the solutions for the real world problems
Tip 1 : Mention your skills in which you are perfect
Tip 2 : Mention atleast two projects
based on 3 interviews
Interview experience
based on 73 reviews
Rating in categories
Executive
15
salaries
| ₹1.3 L/yr - ₹4.5 L/yr |
Inspection Engineer
14
salaries
| ₹1.8 L/yr - ₹4.9 L/yr |
Software Engineer
9
salaries
| ₹4.5 L/yr - ₹14 L/yr |
IT Executive
7
salaries
| ₹2.8 L/yr - ₹4.5 L/yr |
Surveyor
7
salaries
| ₹2.4 L/yr - ₹5 L/yr |
Amazon
Flipkart
Mahindra & Mahindra
Asian Paints