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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List, tuple Decorators
  • Q2. What is the process for removing duplicates from a list?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions easy-medium level leetcode problem I solved 2 completely and 3rd question partially (9/15 test cases passed) to move on to 2nd round

Round 2 - Coding Test 

(1 Question)

  • Q1. Implement an app similar to splitwise
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

1. PEAK ELEMENT QUESTION.
2. COIN DENOMINATION

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain collection framework and uses
  • Ans. 

    Collection framework is a set of interfaces and classes in Java that provide a way to store and manipulate groups of objects.

    • Provides interfaces like List, Set, Map for storing collections of objects

    • Includes classes like ArrayList, HashSet, HashMap for implementing these interfaces

    • Allows for easy manipulation, sorting, searching, and iteration of collections

    • Used in various applications like data processing, data storag

  • Answered by AI
  • Q2. Explain springboot and it's annotation
  • Ans. 

    Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating Spring applications by providing defaults for configuration and eliminating the need for XML configuration files.

    • Annotations in Spring Boot are used to simplify the configuration of Spring applications by providing metadata about the application.

    • Examples of annota...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain request lifecycle in rails?
  • Ans. 

    Request lifecycle in Rails involves routing, controller actions, rendering views, and responding to the client.

    • 1. Request comes in through the browser or API endpoint.

    • 2. Rails router determines which controller and action to route the request to.

    • 3. Controller action processes the request, interacts with the model, and prepares data for the view.

    • 4. View template is rendered with the data from the controller.

    • 5. Response ...

  • Answered by AI
  • Q2. Code Merge Sort using Ruby
  • Ans. 

    Implement Merge Sort algorithm in Ruby

    • Divide the array into two halves recursively

    • Merge the sorted halves back together

    • Use a helper method to merge the two halves

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

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

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

Round 1 - Coding Test 

(2 Questions)

  • Q1. Unique Paths (2d-dp)
  • Q2. Flip any rows or columns at any time to make the sum of gird cells ofa provided square in a matrix should be minimum
  • Ans. 

    To minimize the sum of grid cells in a square matrix, flip rows or columns as needed.

    • Identify the rows or columns with the highest values and consider flipping them to reduce the sum

    • Try different combinations of flipping rows and columns to find the minimum sum

    • Consider using dynamic programming or backtracking to efficiently explore all possible combinations

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Visual Reasoning questions

Round 2 - Coding Test 

Mostly string based questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Immediate joining

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join.

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.

People are getting interviews through

based on 1 Airtel X- Labs interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Airtel X- Labs Software Engineer Salary
based on 82 salaries
₹9 L/yr - ₹20 L/yr
90% more than the average Software Engineer Salary in India
View more details

Airtel X- Labs Software Engineer Reviews and Ratings

based on 8 reviews

2.8/5

Rating in categories

3.0

Skill development

1.7

Work-Life balance

2.9

Salary & Benefits

2.5

Job Security

1.7

Company culture

2.1

Promotions/Appraisal

1.9

Work Satisfaction

Explore 8 Reviews and Ratings
Senior Software Engineer
161 salaries
unlock blur

₹13 L/yr - ₹30 L/yr

Software Engineer
82 salaries
unlock blur

₹9 L/yr - ₹20 L/yr

Lead Engineer
40 salaries
unlock blur

₹20 L/yr - ₹40 L/yr

Sdet Lead
19 salaries
unlock blur

₹20 L/yr - ₹41 L/yr

Senior Leader Engineer
16 salaries
unlock blur

₹37 L/yr - ₹50 L/yr

Explore more salaries
Compare Airtel X- Labs with

Jio Platforms

3.5
Compare

Vodafone Idea

4.1
Compare

TCS

3.7
Compare

Infosys

3.7
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