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

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about AirAsia?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Other and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Written test , objective + two programs to write
  • Q2. Question on linked list , stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident while answering

Software Engineer Level 1 Interview Questions Asked at Other Companies

asked in PayPal
Q1. Describe a time you processed a file, selected the first three li ... read more
asked in PayPal
Q2. Amazon can perform searches in O(n) time complexity. Why would it ... read more
asked in PayPal
Q3. When you search for a particular product on Amazon, it displays s ... read more
asked in PayPal
Q4. Given a 3x3 matrix where each edge has a weight, find the path fr ... read more
Q5. 1. Abstraction Vs Interface 2. Sealed class 3. why do we use a pr ... read more

I applied via Naukri.com and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Situational awareness
  • Q2. Psychological test

Interview Preparation Tips

Interview preparation tips for other job seekers - Boing has been known as a great organisation for long time, they are manufacturers of the most sophisticated civilan and defence supplies. However their interview process is completely idiotic, even if you are extremely talented and have cleared all technical rounds, they used to reject candidates in the final psychological (structured) round where they form opinion for the canditate based on questions asked, answer in a very calculated way for this final round.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Life cycle of Software Development
  • Ans. 

    Software development life cycle is a process used to design, develop, and test software applications.

    • 1. Planning: Define project scope, requirements, and timelines.

    • 2. Design: Create a detailed design of the software architecture.

    • 3. Implementation: Write code based on the design specifications.

    • 4. Testing: Verify that the software meets the requirements and is free of bugs.

    • 5. Deployment: Release the software to users and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a lot of behavioral question prep

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hackerrank test basic kotlin and android

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

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Hackerrank test of 2 questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aerospace, Airplane related SW need to meet the DO178C, asking experiences with this

Round 2 - Case Study 

Related experiences and roles about the project with used DO178c

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Tree algorithm about some riddels

Interview Preparation Tips

Interview preparation tips for other job seekers - tree algorithm

I applied via Walk-in and was interviewed before Mar 2021. There were 6 interview rounds.

Round 1 - Bmi check 

(1 Question)

  • Q1. Should be in bmi especially height.
Round 2 - HR 

(1 Question)

  • Q1. Introduction of candidate
Round 3 - English test 

(1 Question)

  • Q1. Written English test of essay and MCQ for English grammar.
Round 4 - Group Discussion 

Any random and different topic to all candidates to talk for a minute to check spot communication and English

Round 5 - One-on-one 

(1 Question)

  • Q1. Anything random and past experience and any customer handling situation
Round 6 - Selected or sorry. 

(1 Question)

  • Q1. You are selected or not selected.

Interview Preparation Tips

Interview preparation tips for other job seekers - No tips, go for indigo or a better Airlines.

Interview Questionnaire 

1 Question

  • Q1. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - shit properly, in a good posture.
make eye content.
node while listening, interviewer.
give answer with free mind .

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.5
 • 163 Interviews
Spicejet Interview Questions
3.6
 • 94 Interviews
Boeing Interview Questions
3.9
 • 89 Interviews
Qatar Airways Interview Questions
3.8
 • 60 Interviews
Go First Interview Questions
3.7
 • 49 Interviews
British Airways Interview Questions
3.0
 • 29 Interviews
View all
AirAsia Software Engineer Level 1 Salary
based on 8 salaries
₹12.8 L/yr - ₹20 L/yr
67% 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
170 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Guest Service Assistant
64 salaries
unlock blur

₹2.8 L/yr - ₹5.5 L/yr

Senior Software Engineer
47 salaries
unlock blur

₹20.9 L/yr - ₹35 L/yr

Software Engineer
36 salaries
unlock blur

₹5.2 L/yr - ₹19.7 L/yr

Cabin Crew
29 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Explore more salaries
Compare AirAsia with

InterGlobe Aviation

3.5
Compare

Air India

3.5
Compare

Spicejet

3.6
Compare

Jet Airways

4.6
Compare
write
Share an Interview