Upload Button Icon Add office photos

Filter interviews by

Unimech Aerospace Software Developer Interview Questions and Answers

Updated 29 Dec 2024

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on project architecture
  • Q2. Access specifiers

Interview Preparation Tips

Topics to prepare for Collins Aerospace Software Developer interview:
  • Oops concept
Interview preparation tips for other job seekers - Interview process is good and easy
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(1 Question)

  • Q1. Coding samples and expected output
Round 2 - Technical 

(1 Question)

  • Q1. Virtual functions Polymorphism Runtime polymorphism compile time polymorphism Constructor Destructor Destructor overloading possible why Deep copy vs shallow copy Program for operator overloading Program f...
Round 3 - Behavioral 

(1 Question)

  • Q1. Working of project
Round 4 - HR 

(1 Question)

  • Q1. Discussion about package

Interview Preparation Tips

Interview preparation tips for other job seekers - No kt, no training they will provide, worst organisation ever, worst management, don't explain the task what you have to do , if you have other option please join other company don't join this company very bad
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

Write a simple algorithm for string manipulation

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is gcd? And explain it
  • Ans. 

    gcd stands for greatest common divisor, the largest positive integer that divides two or more numbers without leaving a remainder.

    • gcd is used to find the largest integer that can evenly divide two or more numbers.

    • It is commonly used in mathematics and computer science algorithms.

    • For example, the gcd of 12 and 18 is 6, as 6 is the largest number that can divide both 12 and 18 without leaving a remainder.

  • Answered by AI
  • Q2. What is arc and explain it
  • Ans. 

    ARC stands for Automatic Reference Counting, a memory management technique used in programming languages like Objective-C and Swift.

    • ARC automatically tracks and manages the memory used by objects in a program

    • It increases the retain count of an object when it is referenced and decreases it when it is no longer needed

    • ARC helps prevent memory leaks and retain cycles in iOS and macOS development

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read react native basics

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. Program to delete a line given the line number from a file.
  • Ans. 

    1) Open the source file in input mode and read it character by character.
    2) Open another file in output mode and place contents in the file character by character.
    3) Rename the other file to the source file.

  • Answered by CodingNinjas
  • Q2. Anagrams

    You have been given an array/list of strings 'inputStr'. You are supposed to return the strings as groups of anagrams such that strings belonging to a particular group are anagrams of one ...

  • Ans. 

    1. Sort the given string.
    2. Open the words.txt file using file handling ifstream to read the file in C++ as: ifstream words(“file.txt”);
    3. For each word in the file words.txt sort the word and compare it with the given sorted string.
    4. If both the string matches in the above step then print the current word in the file words.txt.
    5. Close the file after all the words has been checked.

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

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.

  • Q1. What is need of Virtual Memory?
  • Ans. 

    Tip 1: Read Operating System Concepts by Avi Silberschatz and Peter Galvin.
    Tip 2: Do practice for CPU scheduling.
    Tip 3: Learn concept and need of paging.

  • Answered by CodingNinjas
Round 3 - Face to Face 

(2 Questions)

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.

  • Q1. What are the unary operations in Relational Algebra?
  • Ans. 

    Tip 1: Read Database System Concepts” by Abraham Silberschatz and S Sudarshan.
    Tip 2: Do practice sql problems too.
    Tip 3: Attend online courses on platforms like Coding Ninjas, Udemy etc related to subjects.

  • Answered by CodingNinjas
  • Q2. How many types of database languages are there?
  • Ans. 

    Tip 1: Read Database System Concepts” by Abraham Silberschatz and S Sudarshan.
    Tip 2: Do practice sql problems too.
    Tip 3: Attend online courses on platforms like Coding Ninjas, Udemy etc related to subjects.

  • Answered by CodingNinjas
Round 4 - HR 

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.

Interview Preparation Tips

Eligibility criteriaWork ExperenceThales interview preparation:Topics to prepare for the interview - Data Structure, OOPS, STL, CPP, Socket Programming, PointersTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. What is endianness and wrote c program for endianness
  • Ans. 

    Endianness refers to the order in which bytes are stored in memory. There are two types: big-endian and little-endian.

    • Big-endian systems store the most significant byte first, while little-endian systems store the least significant byte first.

    • Endianness can affect how data is interpreted and manipulated in a computer system.

    • Example: In a big-endian system, the number 0x12345678 would be stored as 12 34 56 78 in memory.

    • ...

  • Answered by AI
  • Q2. Basic sring programs

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple string manipulation

Round 2 - Technical 

(1 Question)

  • Q1. Basic c# questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All about basic dsa
  • Q2. Tech stack related what we mentioned in resume
Round 2 - HR 

(2 Questions)

  • Q1. Challenge's we faced ?
  • Ans. 

    Some challenges we faced included tight deadlines, changing requirements, and technical limitations.

    • Tight deadlines required us to work efficiently and prioritize tasks.

    • Changing requirements meant we had to adapt quickly and communicate effectively with stakeholders.

    • Technical limitations forced us to find creative solutions and workarounds to achieve our goals.

  • Answered by AI
  • Q2. How to overcome challenges?
  • Ans. 

    To overcome challenges, I break them down into smaller tasks, seek help from colleagues, stay organized, and stay persistent.

    • Break down the challenge into smaller tasks to make it more manageable

    • Seek help from colleagues or mentors for advice and support

    • Stay organized by creating a plan or timeline to track progress

    • Stay persistent and motivated, even when facing setbacks

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

MCQ on Python and some aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Array rotation coding question followed by past project experience
Round 3 - HR 

(1 Question)

  • Q1. STAR type interview.

Unimech Aerospace Interview FAQs

How many rounds are there in Unimech Aerospace Software Developer interview?
Unimech Aerospace interview process usually has 1 rounds. The most common rounds in the Unimech Aerospace interview process are Technical.

Tell us how to improve this page.

Quality Engineer
31 salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Project Lead
20 salaries
unlock blur

₹3.5 L/yr - ₹7.8 L/yr

Project Engineer
10 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Assembly Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

VMC Setter
8 salaries
unlock blur

₹2.6 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Unimech Aerospace with

Hindustan Aeronautics

4.3
Compare

Tata Advanced Systems

3.8
Compare

Mahindra Aerospace

3.9
Compare

Larsen & Toubro Limited

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview