Upload Button Icon Add office photos

Filter interviews by

Airtel X- Labs Interview Questions and Answers

Updated 13 Aug 2024
Popular Designations

17 Interview questions

A Software Developer was asked 10mo ago
Q. Given a collection of intervals, merge all overlapping intervals.
Ans. 

Merge overlapping intervals in an array of integers

  • Sort the intervals based on the start value

  • Iterate through the intervals and merge overlapping ones

  • Return the merged intervals

View all Software Developer interview questions
A Software Developer was asked 10mo ago
Q. Given two sorted arrays, merge them into a single sorted array.
Ans. 

Merge two sorted arrays into a single sorted array

  • Create a new array to store the merged result

  • Compare elements from both arrays and add the smaller one to the result array

  • Continue this process until all elements from both arrays are merged

View all Software Developer interview questions
A Software Developer was asked 10mo ago
Q. Given an array containing only 0s, 1s, and 2s, sort the array in-place.
Ans. 

Sort an array of strings containing only 0s, 1s, and 2s.

  • Use counting sort algorithm to sort the array in linear time complexity.

  • Count the occurrences of 0s, 1s, and 2s in the array.

  • Reconstruct the array with the sorted counts.

View all Software Developer interview questions
A Software Developer was asked 10mo ago
Q. Given a binary tree, print the left view of it. The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.
Ans. 

Print the left view of a binary tree

  • Traverse the tree in a level order traversal

  • Print the first node at each level encountered

  • Use a queue to keep track of nodes at each level

View all Software Developer interview questions
A QA Engineer was asked 11mo ago
Q. What test cases can you write for testing the history feature on a YouTube-like channel?
Ans. 

Test cases for testing history in YouTube-like channel

  • Verify that the history page displays the correct list of videos watched by the user

  • Test if the history can be cleared successfully

  • Check if the history is updated in real-time as the user watches videos

  • Ensure that the history is accessible only to the logged-in user

  • Verify that the history page loads quickly and efficiently

View all QA Engineer interview questions
A QA Engineer was asked 11mo ago
Q. How do you find and remove duplicates in a table?
Ans. 

Use SQL query with GROUP BY and HAVING clause to find and remove duplicates in a table.

  • Use SELECT statement with COUNT() function to identify duplicates

  • Use GROUP BY clause to group duplicate records

  • Use HAVING clause to filter out groups with count greater than 1

  • Use DELETE statement to remove duplicates based on identified criteria

View all QA Engineer interview questions
A Data Scientist was asked
Q. Explain any ML algorithm in depth.
Ans. 

Random Forest is an ensemble learning algorithm that builds multiple decision trees and combines their outputs.

  • Random Forest is a supervised learning algorithm.

  • It can be used for both classification and regression tasks.

  • It creates multiple decision trees and combines their outputs to make a final prediction.

  • Each tree is built on a random subset of the training data and a random subset of the features.

  • Random Forest...

View all Data Scientist interview questions
Are these interview questions helpful?
A Lead Engineer was asked
Q. Write code that demonstrates a deadlock.
Ans. 

Deadlock occurs when two or more processes are unable to proceed because each is waiting for the other to release resources.

  • Deadlock can happen in multi-threaded applications when resources are locked.

  • Example: Thread A locks Resource 1 and waits for Resource 2, while Thread B locks Resource 2 and waits for Resource 1.

  • Deadlock detection algorithms can help identify deadlocks in systems.

  • Avoiding deadlock can be achi...

View all Lead Engineer interview questions
A Software Engineer was asked
Q. Given an array, for each element, find the next smaller element. If there is no smaller element on the right side, print -1 for that 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

View all Software Engineer interview questions
A Software Engineer was asked
Q. Given two stacks, one full and one empty, return one stack of odd numbers 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)

View all Software Engineer interview questions

Airtel X- Labs Interview Experiences

13 interviews found

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

(2 Questions)

  • Q1. Merge overlapping integers
  • Ans. 

    Merge overlapping intervals in an array of integers

    • Sort the intervals based on the start value

    • Iterate through the intervals and merge overlapping ones

    • Return the merged intervals

  • Answered by AI
  • Q2. Merge two sorted array
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Compare elements from both arrays and add the smaller one to the result array

    • Continue this process until all elements from both arrays are merged

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Sort 0 1 2 array
  • Ans. 

    Sort an array of strings containing only 0s, 1s, and 2s.

    • Use counting sort algorithm to sort the array in linear time complexity.

    • Count the occurrences of 0s, 1s, and 2s in the array.

    • Reconstruct the array with the sorted counts.

  • Answered by AI
  • Q2. Print left view of a binary tree
  • Ans. 

    Print the left view of a binary tree

    • Traverse the tree in a level order traversal

    • Print the first node at each level encountered

    • Use a queue to keep track of nodes at each level

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

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

(2 Questions)

  • Q1. How to find and remove duplicates in table
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to find and remove duplicates in a table.

    • Use SELECT statement with COUNT() function to identify duplicates

    • Use GROUP BY clause to group duplicate records

    • Use HAVING clause to filter out groups with count greater than 1

    • Use DELETE statement to remove duplicates based on identified criteria

  • Answered by AI
  • Q2. Project explanation
Round 2 - Technical 

(1 Question)

  • Q1. What are the test cases you can write for testing history in YouTube kind channel
  • Ans. 

    Test cases for testing history in YouTube-like channel

    • Verify that the history page displays the correct list of videos watched by the user

    • Test if the history can be cleared successfully

    • Check if the history is updated in real-time as the user watches videos

    • Ensure that the history is accessible only to the logged-in user

    • Verify that the history page loads quickly and efficiently

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. React hands on and Machine coding
Round 2 - Technical 

(1 Question)

  • Q1. React hands on / Machine coding round
Round 3 - Technical 

(1 Question)

  • Q1. React hands on and machine coding
Round 4 - HR 

(1 Question)

  • Q1. React hands on and LLD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. DSA Intermediate (topic Binary search) and then development related questions from JAVA, Spring Boot, MySql.
Round 2 - One-on-one 

(1 Question)

  • Q1. DSA (Intermediate) from Tree, then OOPS, DB related questions and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA , Java, Spring Boot, OOPS, LLD and HLD

Sdet Lead Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2023

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

I applied via Approached by Company and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Basics core java , selenium , easy coding array and string questions , api automatiom concepts
Round 3 - One-on-one 

(1 Question)

  • Q1. Core java, coding, api automation, postman , selenium , testng , maven, performance

Senior Lead Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2022

Round 1 - Technical 

(2 Questions)

  • Q1. Data structure and algorithm
  • Q2. Technical design discussion
Round 2 - Technical 

(1 Question)

  • Q1. Technical design discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on ds/algo and system design
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Round One - Two Coding Tests. easy Level one was from String other was from Array.
Round Two - Interview Question on Testing Fundamental.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Q-Separate 0's and 1's from String Q-Reverse the string word-wise.
  • Ans. 

    Separate 0's and 1's from string and reverse the string word-wise.

    • Iterate through the string and separate 0's and 1's into separate arrays

    • Join the arrays back into a single string with 0's first and 1's second

    • Split the string into an array of words and reverse the order of the array

    • Join the array back into a single string with words in reverse order

  • Answered by AI
  • Q2. Q-Explain Automation Framework. Q- HTTP codes
  • Ans. 

    Automation Framework is a set of guidelines and standards for creating and maintaining automated tests.

    • Automation Framework provides a structure for organizing test code and data

    • It helps in reducing maintenance efforts and increasing test coverage

    • Examples of Automation Frameworks are Selenium, Appium, and TestNG

    • HTTP codes are status codes returned by a server in response to a client's request

    • Some common HTTP codes are ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Good with the technology which you have mentioned.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Design url shortner.
  • Ans. 

    Design a URL shortener

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users to the original URL when they access the short code

  • Answered by AI
  • Q2. Given an array and a sum you need to find a pair of elements whose sum is equal to the given sum?
  • Ans. 

    Find two elements in an array that sum up to a specified target value.

    • Use a hash set to store elements as you iterate through the array.

    • For each element, check if (target - element) exists in the set.

    • If it exists, you've found a pair; if not, add the element to the set.

    • Example: For array [1, 2, 3, 4] and sum 5, the pair is (1, 4) or (2, 3).

    • Time complexity is O(n) due to single pass through the array.

  • Answered by AI
  • Q3. LRU cache implementation with code.
  • Ans. 

    LRU cache implementation using doubly linked list and hash map.

    • Use a doubly linked list to keep track of the order of elements in the cache.

    • Use a hash map to store the key-value pairs for fast access.

    • When a new element is added, check if the cache is full and remove the least recently used element.

    • When an element is accessed, move it to the front of the linked list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The first round of interview was taken by Lead. He was extremely rude and wanted to humiliate you by confusing you at every solution you give. Though at last I gave the correct solution so he passed me to the next round.
Next round was taken by Senior Team Lead. It seemed as if did not even care about the interview. Gave me the question and did not even bother to check the solution. While I was discussing design for url shortner, he did not utter a word during the whole discussion.
I felt positive as he did not counter question my solution but HR said I was rejected.

Skills evaluated in this interview

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 experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2022. There were 2 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 

(2 Questions)

  • Q1. Explain any ML algorithm in depth
  • Ans. 

    Random Forest is an ensemble learning algorithm that builds multiple decision trees and combines their outputs.

    • Random Forest is a supervised learning algorithm.

    • It can be used for both classification and regression tasks.

    • It creates multiple decision trees and combines their outputs to make a final prediction.

    • Each tree is built on a random subset of the training data and a random subset of the features.

    • Random Forest redu...

  • Answered by AI
  • Q2. There was a case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on the basics of machine learning algorithms

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. CAP theorem
  • Ans. 

    CAP theorem states that a distributed system cannot guarantee consistency, availability, and partition tolerance at the same time.

    • Consistency: all nodes see the same data at the same time

    • Availability: every request receives a response, without guarantee that it contains the most recent version of the information

    • Partition tolerance: the system continues to function even when network partitions occur

    • Examples: Cassandra p...

  • Answered by AI
  • Q2. Deadlock code
  • Ans. 

    Deadlock occurs when two or more processes are unable to proceed because each is waiting for the other to release resources.

    • Deadlock can happen in multi-threaded applications when resources are locked.

    • Example: Thread A locks Resource 1 and waits for Resource 2, while Thread B locks Resource 2 and waits for Resource 1.

    • Deadlock detection algorithms can help identify deadlocks in systems.

    • Avoiding deadlock can be achieved ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic DS & Algo
Some design problem

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.

Airtel X- Labs Interview FAQs

How many rounds are there in Airtel X- Labs interview?
Airtel X- Labs interview process usually has 2-3 rounds. The most common rounds in the Airtel X- Labs interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Airtel X- Labs 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 Airtel X- Labs. The most common topics and skills that interviewers at Airtel X- Labs expect are Java, Design Patterns, Spring, Algorithms and Data Structures.
What are the top questions asked in Airtel X- Labs interview?

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

  1. Given an array and a sum you need to find a pair of elements whose sum is equal...read more
  2. Given two stacks, one full and one empty, return one stack of odd and one of ev...read more
  3. What are the test cases you can write for testing history in YouTube kind chann...read more
How long is the Airtel X- Labs interview process?

The duration of Airtel X- Labs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 8 interview experiences

Difficulty level

Moderate 80%
Hard 20%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

L&T Construction Interview Questions
4.0
 • 827 Interviews
Senco Gold Interview Questions
4.4
 • 568 Interviews
Planet Spark Interview Questions
3.8
 • 494 Interviews
Swiggy Interview Questions
3.7
 • 474 Interviews
Quess Interview Questions
3.8
 • 467 Interviews
Klm Axiva Finvest Interview Questions
4.4
 • 433 Interviews
TCS iON Interview Questions
3.8
 • 385 Interviews
ITC Infotech Interview Questions
3.7
 • 376 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Ekart Logistics Interview Questions
3.9
 • 351 Interviews
View all

Airtel X- Labs Reviews and Ratings

based on 105 reviews

3.1/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

3.2

Salary

3.3

Job security

2.6

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 105 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