Upload Button Icon Add office photos

AirAsia

Compare button icon Compare button icon Compare

Filter interviews by

AirAsia Software Engineer Level 1 Interview Questions and Answers

Updated 13 Dec 2021

AirAsia Software Engineer Level 1 Interview Experiences

1 interview found

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. BFS travel of binary tree.
  • Ans. 

    BFS travel of binary tree

    • BFS stands for Breadth First Search

    • It is a traversal algorithm for trees and graphs

    • In BFS, we visit all the nodes at the same level before moving to the next level

    • We use a queue data structure to implement BFS

    • Example: BFS traversal of a binary tree with root node A would be A, B, C, D, E, F, G, H, I

  • Answered by AI
  • Q2. 2. Maximum path sum in matrix
  • Ans. 

    Find the maximum sum of a path in a matrix from top left to bottom right corner.

    • Use dynamic programming to calculate the maximum sum of a path ending at each cell.

    • The maximum sum of a path ending at cell (i,j) is the maximum of the maximum sums of paths ending at (i-1,j) and (i,j-1), plus the value of cell (i,j).

    • The maximum sum of a path from top left to bottom right corner is the maximum sum of a path ending at the bo...

  • Answered by AI
  • Q3. Java Basic Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to medium level questions are asked

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain how multithreading works?
  • Ans. 

    Multithreading allows multiple threads to run concurrently within a single process, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks within a single process.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Thread management is handled by the operating system, which schedules threads for execution.

    • Examples of multithreading include w...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

C and c++ collectively 20 questions.14 is my achievement by the grace of Allah and his messager(S.A.W) peace be upon him.

Round 2 - Technical 

(1 Question)

  • Q1. C,c++,os,dsa,core cse subjects
Round 3 - HR 

(1 Question)

  • Q1. I was frustrated attending many interviews every one told me WE WILL GET BACK YOU.Same thing told in this company also by both HR I thing Anitha mam and our respective DIRECTOR SIR Prasad chorgudi.But fina...

Interview Preparation Tips

Interview preparation tips for other job seekers - Having technically sound and best skills many of them are lagging due to aptitude,analytical,logical,verbal and non verbal,mental ability,problem solving skills,now a days 99.99 % people are facing problem in attention to detail irrespective of any kind of job.In every job profile we will mandatorily had one point that is ATTENTION TO DETAILS.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. AWS system design question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

DSA, Multithreading Java and Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on problem solving
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

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Behavioral questions such as weakness and strength
  • Q2. What do you know about AA?
  • Ans. 

    AA stands for Alcoholics Anonymous, a support group for individuals struggling with alcohol addiction.

    • AA is a 12-step program that emphasizes spiritual growth and personal accountability.

    • Meetings are held regularly and are open to anyone seeking help with alcohol addiction.

    • Anonymity is a key principle of AA, and members are encouraged to maintain confidentiality.

    • Sponsorship is also an important aspect of AA, where expe...

  • Answered by AI
  • Q3. About previous projects
Round 3 - Group Discussion 

It was more of a discussion of the project I worked on, and the technologies I used...They asked me two basic SQL questions (it is a full stack position, though), and also about the Azure cloud platform.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a deep research about the company, be confident and show the motivation to learn, be honest if you don't know the question.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain how multithreading works?
  • Ans. 

    Multithreading allows multiple threads to run concurrently within a single process, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks within a single process.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Thread management is handled by the operating system, which schedules threads for execution.

    • Examples of multithreading include w...

  • Answered by AI

Skills evaluated in this interview

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple string manipulation

Round 2 - Technical 

(1 Question)

  • Q1. Basic c# questions

AirAsia Interview FAQs

How to prepare for AirAsia Software Engineer Level 1 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at AirAsia. The most common topics and skills that interviewers at AirAsia expect are Automation, Monitoring, PHP, Performance Testing and Python.
What are the top questions asked in AirAsia Software Engineer Level 1 interview?

Some of the top questions asked at the AirAsia Software Engineer Level 1 interview -

  1. 1. BFS travel of binary tr...read more
  2. 2. Maximum path sum in mat...read more
  3. Java Basic Questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Air India Interview Questions
3.7
 • 149 Interviews
Spicejet Interview Questions
3.6
 • 86 Interviews
Boeing Interview Questions
3.9
 • 85 Interviews
Qatar Airways Interview Questions
4.0
 • 55 Interviews
Go First Interview Questions
3.7
 • 46 Interviews
View all
AirAsia Software Engineer Level 1 Salary
based on 7 salaries
₹8 L/yr - ₹20 L/yr
62% more than the average Software Engineer Level 1 Salary in India
View more details

AirAsia Software Engineer Level 1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Assistant Security Officer
189 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹15.8 L/yr - ₹35 L/yr

Guest Service Assistant
42 salaries
unlock blur

₹3 L/yr - ₹5.1 L/yr

Cabin Crew
35 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Software Engineer
32 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Explore more salaries
Compare AirAsia with

InterGlobe Aviation

3.6
Compare

Spicejet

3.6
Compare

Vistara

4.0
Compare

Go First

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview