Upload Button Icon Add office photos

Filter interviews by

Airtel X- Labs Software Engineer Interview Questions and Answers

Updated 30 Oct 2021

Airtel X- Labs Software Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Write a program to find the Next Smaller Element.
  • Ans. 

    Program to find the Next Smaller Element

    • Create an empty stack

    • Traverse the array from right to left

    • Pop elements from stack until a smaller element is found

    • If no smaller element is found, output -1

    • Push the current element onto the stack

  • Answered by AI
  • Q2. Given two stacks, one full and one empty, return one stack of odd and one of even numbers, without using any other memory.
  • Ans. 

    Return odd and even numbers from two stacks, one full and one empty, without using any other memory.

    • Pop elements from full stack and check if it's odd or even

    • Push odd elements to one stack and even elements to another

    • Push elements back to full stack in alternating order

    • Time complexity: O(n), Space complexity: O(1)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts of Java and OOPS.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 Airtel X- Labs?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One coding test happen

Round 2 - Technical 

(2 Questions)

  • Q1. Java questions, spring boot framework questions
  • Q2. DSA using stream api
  • Ans. 

    Using stream API for Data Structures and Algorithms

    • Stream API in Java can be used to perform operations on collections like filtering, mapping, reducing, etc.

    • It can be used for implementing various data structures and algorithms efficiently.

    • For example, you can use stream API to find the sum of all elements in an array or filter out even numbers from a list.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions and spring boot questions
  • Q2. One program using stream api
  • Ans. 

    Using stream API to filter a list of numbers and find the sum of even numbers

    • Use Stream.filter() to filter out even numbers

    • Use Stream.mapToInt() to convert stream to IntStream

    • Use IntStream.sum() to find the sum of even numbers

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

I applied via Approached by Company and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Fundamentals and Basics of android, projects you are worked on.
Round 2 - Assignment 

It was sort of pair programming where you will be told to implement some feature. Here they check your coding style, your approach and the architecture you follow.

Round 3 - Technical 

(1 Question)

  • Q1. Advanced android questions were asked and some scenario based questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. It was managerial round, most discussion were on my projects and past experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brushing up fundamentals and basics, aware of latest tech stack would help.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 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 - One-on-one 

(1 Question)

  • Q1. About Insurance Domain Knowledge
Round 3 - HR 

(1 Question)

  • Q1. About shift / Working hrs / Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up on Insurance domain and attend the interview with courage.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. What is difference between the abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while interfaces define a contract that implementing...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What design pattern used in angular
  • Ans. 

    The design pattern commonly used in Angular is the Observer pattern.

    • The Observer pattern is used to establish a one-to-many dependency between objects.

    • In Angular, Observables are used to implement the Observer pattern for handling asynchronous data streams.

    • Components in Angular often use Observables to subscribe to changes and react accordingly.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain oops concepts
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

    • Abstraction: Hiding the complex implementation details and...

  • Answered by AI
  • Q2. Explain design patterns
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable software.

    • They provide a common language for developers to communicate about solutions.

    • Examples include Singleton, Factory, Observer, and Strategy patterns.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Interface abstruct class,WCF, State management,
  • Q2. Joining in sql server
  • Ans. 

    Joining in SQL Server combines rows from two or more tables based on related columns.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matched records f...

  • Answered by AI
  • Q3. Cursor,normalization
  • Q4. Mvc data flow, dependency injuction
Round 2 - HR 

(1 Question)

  • Q1. Why you want to join our organization. salary negotiation,
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mcq and coding test on coderpad

Round 2 - Coding Test 

Face 2 face, dsa and core java

Interview Preparation Tips

Interview preparation tips for other job seekers - f2f with manager , culutral fit

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I applied via Campus Placement and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly hr questions and software questions

Interview Preparation Tips

Interview preparation tips for other job seekers - just give your best

Airtel X- Labs Interview FAQs

What are the top questions asked in Airtel X- Labs Software Engineer interview?

Some of the top questions asked at the Airtel X- Labs Software Engineer interview -

  1. Given two stacks, one full and one empty, return one stack of odd and one of ev...read more
  2. Write a program to find the Next Smaller Eleme...read more

Tell us how to improve this page.

Airtel X- Labs Software Engineer Salary
based on 84 salaries
₹12.8 L/yr - ₹20 L/yr
79% more than the average Software Engineer Salary in India
View more details

Airtel X- Labs Software Engineer Reviews and Ratings

based on 10 reviews

3.3/5

Rating in categories

4.0

Skill development

2.6

Work-life balance

3.3

Salary

3.3

Job security

2.6

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 10 Reviews and Ratings
Senior Software Engineer
164 salaries
unlock blur

₹17.5 L/yr - ₹30 L/yr

Software Engineer
84 salaries
unlock blur

₹12.8 L/yr - ₹20 L/yr

Lead Engineer
41 salaries
unlock blur

₹25 L/yr - ₹40 L/yr

Software Developer
18 salaries
unlock blur

₹12 L/yr - ₹19.4 L/yr

Sdet Lead
17 salaries
unlock blur

₹25.2 L/yr - ₹38 L/yr

Explore more salaries
Compare Airtel X- Labs with

Quess

3.8
Compare

L&T Construction

4.0
Compare

Ekart Logistics

3.9
Compare

Udaan

3.9
Compare
write
Share an Interview