Filter interviews by
posted on 14 Apr 2021
I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.
Top trending discussions
posted on 24 Jul 2021
Fuselage station refers to a specific location on an aircraft's fuselage.
Fuselage station is a measurement of distance along the fuselage, typically measured in inches or millimeters.
It is used as a reference point for various components and systems on the aircraft.
For example, an aircraft's doors, windows, wings, and tail are all located at specific fuselage stations.
Fuselage station 0 is usually defined as the refere...
Butt line is not a commonly used term. It could refer to the line where the buttocks meet the thighs.
Butt line is not a medical term.
It could refer to the line where the buttocks meet the thighs.
It is not a commonly used term and may have different interpretations depending on the context.
Water line refers to the pipe or tubing that carries water from the main supply to a building or property.
Water line is an essential component of a plumbing system.
It can be made of various materials such as copper, PVC, or galvanized steel.
The size of the water line depends on the water demand of the building or property.
Water lines can be underground or above ground.
A water line break or leak can cause significant da
The question is unclear and seems to contain errors.
The question may be referring to 'fast angle' and 'third angle projection' in technical drawing.
Fast angle refers to a type of projection where the object is viewed from an angle that is not perpendicular to any of its faces.
Third angle projection is a method of drawing 3D objects in which the object is placed in a box with three sides and projected onto a plane.
Witho...
A rivet is a metal fastener used to join two or more pieces of material together permanently.
Rivets are commonly used in construction, automotive, and aerospace industries.
They are inserted into pre-drilled holes and then deformed to hold the materials together.
Rivets can be made of various materials including aluminum, steel, and copper.
They are often used in place of screws or bolts when a permanent joint is required...
The number of cutting angles in a reamer varies depending on the type and size of the reamer.
The number of cutting angles can range from 2 to 6.
The cutting angles are designed to remove material from the workpiece as the reamer rotates.
The cutting angles can be straight or spiral, and can be symmetrical or asymmetrical.
The number and angle of the cutting edges can affect the surface finish and accuracy of the hole.
Exam...
Drill bits can have various cutting angles depending on their purpose and material.
The most common cutting angle for general purpose drill bits is 118 degrees.
Drill bits for harder materials like metal may have a sharper angle of 135 degrees.
Masonry drill bits have a flatter angle of 90 degrees to prevent cracking of the material.
The cutting angle affects the efficiency and precision of the drilling process.
Drill bits are made by various manufacturers using different materials and designs.
Drill bits can be made from high-speed steel, cobalt, carbide, or diamond.
Manufacturers include DeWalt, Bosch, Milwaukee, and Irwin.
The design of the drill bit can vary depending on the intended use, such as twist bits, spade bits, or hole saws.
The number of cutting files depends on the project requirements and design complexity.
The number of cutting files can range from a few to hundreds or even thousands.
It also depends on the type of cutting machine being used.
For example, a laser cutting machine may require different files than a CNC router.
The number of cutting files can also vary based on the material being cut and its thickness.
It is important to have ...
posted on 18 Dec 2024
I applied via Company Website and was interviewed before Dec 2023. There was 1 interview round.
My professional goal is to become a certified System Engineer and work on complex projects that challenge me to continuously learn and grow.
Obtain certification as a System Engineer
Work on complex projects to enhance skills
Continuously learn and grow in the field
Seek opportunities for advancement and leadership roles
I have extensive experience with system engineering processes in various industries.
Led cross-functional teams to design and implement complex systems
Utilized tools such as requirements management software and system modeling tools
Performed system integration and testing to ensure functionality and performance
Collaborated with stakeholders to gather and analyze requirements
Implemented system engineering best practices
I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.
Create a program for string manipulation using an array of strings.
Use built-in string manipulation functions like substring, replace, and concat.
Iterate through the array of strings to perform different manipulations.
Consider edge cases like empty strings or null values.
Example: Reverse each string in the array and concatenate them together.
HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.
HashMap internally uses an array of linked lists to store key-value pairs.
When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.
If multiple keys hash to the same index, a linked list is used to handle collisions.
To retrieve a value, the key is hashed again to fi...
I applied via Job Portal and was interviewed before Apr 2023. There was 1 interview round.
I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.
Detailed understanding of Spring Framework and Java Concepts.
Questions on Stream API
Questions on Concurrency
2 Coding questions first on String manipulation and second based on Tree.
Overall prepare good for Java concepts.
I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.
I was interviewed before Sep 2020.
Round duration - 90 minutes
Round difficulty - Medium
It was in the afternoon. I have to switch on my webcam during test. 1 person taking the test and 3 people were monitoring me. they ask many questions apart from the test as well. He give me some situations and ask me to give solution for the problem by writing algorithm and code.
You are given an array/list of strings called inputStr
. Your task is to return the strings as groups of anagrams such that strings belonging to the same group are anagrams of ea...
Given an array of strings, group the strings that are anagrams of each other.
Iterate through the array of strings and sort each string alphabetically to create a key for grouping.
Use a hashmap to store the sorted string as key and the list of anagrams as value.
Return the values of the hashmap as the grouped anagrams.
Round duration - 90 minutes
Round difficulty - Medium
It was in the evening. I have to switch on my webcam during test. 1 person taking the test and 3 people were monitoring me. They asked many questions apart from the test as well.
Round duration - 30 minutes
Round difficulty - Medium
It was in the evening. There was total 3 persons in the meeting. They asked me many questions regarding my projects and my previous experience too. The interviewer were very friendly.
Round duration - 90 minutes
Round difficulty - Medium
It was in the morning. It was a one to one conversation. He asked me questions regarding my lifestyle, interests and work experience too. He asked me to tell me about myself for about 5 minutes. Then we talk a lot about current affairs too. Then we talked about package too. The interviewer was very nice and friendly in nature.
Tip 1 : You should know each and everything about your current project and your role and responsibilities.
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges.
Tip 3 : Study everyday complete online courses on platform like Udemy.
Tip 1: Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2: First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3: Make it short and direct.
I was interviewed before Mar 2021.
Round duration - 90 Minutes
Round difficulty - Medium
Mainly mcqs and some coding questions
Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2)
, with initial conditions F(1) = F(2) = 1
.
Calculate the Nth Fibonacci number efficiently using dynamic programming.
Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.
Start with base cases F(1) and F(2) as 1, then iterate to calculate subsequent Fibonacci numbers.
Optimize the solution to have a time complexity of O(N) by storing and reusing calculated values.
Round duration - 60 Minutes
Round difficulty - Easy
Introduction and some Python Questions
Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.
The input is a single string without any leading or trailing...
Check if a given string is a palindrome considering only alphanumeric characters.
Remove non-alphanumeric characters from the input string before checking for palindrome.
Use two pointers approach to compare characters from start and end of the string.
Convert all characters to lowercase for case-insensitive comparison.
Return true if the string is a palindrome, false otherwise.
Round duration - 60 Minutes
Round difficulty - Easy
Questions related to cloud deployments and all
My approach to project scaling in AWS involves utilizing auto-scaling groups, load balancers, and monitoring tools.
Utilize auto-scaling groups to automatically adjust the number of EC2 instances based on traffic patterns
Implement load balancers to distribute incoming traffic evenly across multiple instances
Use monitoring tools like CloudWatch to track performance metrics and make informed scaling decisions
Round duration - 45 Minutes
Round difficulty - Easy
Mainly discussed the future goals and expectations from the company
Tip 1 : Solve coding questions on daily basis
Tip 2 : Start giving interview as early as possible
Tip 3 : Write down the questions being asked in interview
Tip 1 : Resume should be focused on a particular profile
Tip 2 : Should mention good project experience
Contract Engineer
29
salaries
| ₹0 L/yr - ₹0 L/yr |
Design Engineer
26
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
17
salaries
| ₹0 L/yr - ₹0 L/yr |
Project Engineer
14
salaries
| ₹0 L/yr - ₹0 L/yr |
Test Engineer
10
salaries
| ₹0 L/yr - ₹0 L/yr |
Defence Research & Development Organisation
Hindustan Aeronautics
Bharat Electronics
AIRBUS