Upload Button Icon Add office photos

Filter interviews by

Airtel X- Labs Software Development Engineer Interview Questions and Answers

Updated 31 Jul 2021

Airtel X- Labs Software Development Engineer Interview Experiences

1 interview found

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?
  • 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

Interview questions from similar companies

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
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.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Rotate Matrix Right K Times

    You are given a matrix MAT of size 'N' * 'M', where 'N' is the number of rows and 'M' is the number of columns, along with a positive integer 'K'. Your task is to rotate the ma...

  • Ans. 

    Rotate a matrix to the right 'K' times by shifting each column to the right 'K' times.

    • Iterate 'K' times to perform right rotation on the matrix

    • Shift each column to the right by one position in each rotation

    • Handle wrapping around the matrix when shifting columns

    • Return the matrix elements row-wise after 'K' rotations

  • Answered by AI
  • Q2. 

    Word Search Problem Statement

    Given a two-dimensional grid of size N x M consisting of upper case characters and a string 'WORD', determine how many times the 'WORD' appears in the grid.

    The 'WORD' can b...

  • Ans. 

    Count how many times a given word appears in a 2D grid by moving in any of the eight possible directions.

    • Iterate through each cell in the grid and check if the word can be formed starting from that cell in any of the eight directions.

    • Use recursion to explore all possible paths from a starting cell to form the word.

    • Keep track of visited cells to avoid revisiting the same cell in the same path.

    • Return the count of how man

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Medium

Interview started with an introduction and walk through the resume for first 5 minutes. After that, interview asked few coding questions.

  • Q1. 

    Problem Statement: Largest Island

    You are provided with a non-empty grid consisting of only 0s and 1s. Your task is to determine the maximum area of an island within the given grid.

    An island consists of a...

  • Ans. 

    Find the maximum area of an island in a grid of 0s and 1s.

    • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

    • Keep track of the area of each island found and return the maximum area.

    • Consider all four directions (horizontal, vertical, and diagonal) while exploring the island.

    • Handle edge cases like grid boundaries and already visited cells during DFS.

    • If no island is present, return 0 as the

  • Answered by AI
  • Q2. 

    Pythagorean Triplet Problem

    Determine if there exists a Pythagorean triplet within a given array of integers. A Pythagorean triplet consists of three numbers, x, y, and z, such that x^2 + y^2 = z^2.

    Expl...

  • Ans. 

    Check if there exists a Pythagorean triplet in a given array of integers.

    • Iterate through all possible triplets in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number.

  • Answered by AI
  • Q3. 

    Top View of Binary Tree Problem Statement

    Given a Binary Tree of integers, you are tasked with finding the top view of the binary tree. The top view is the set of nodes visible when the tree is viewed fro...

  • Ans. 

    Find the top view of a Binary Tree by returning a list of visible nodes when viewed from the top.

    • Traverse the Binary Tree in level order and keep track of the horizontal distance of each node from the root.

    • Use a map to store the nodes at each horizontal distance, and only keep the topmost node for each horizontal distance.

    • Return the values of the topmost nodes in the map as the top view of the Binary Tree.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round was focused on DSA along with short discussion on computer science fundamentals. For coding problems, I was asked to code the first problem only. For others, had to discuss the approach only. For computer science fundamentals, discussion on OOPS. Differences between process and threads were discussed.

  • Q1. 

    Fixing a Swapped Binary Search Tree

    Given a Binary Search Tree (BST) where two nodes have been swapped by mistake, your task is to restore or fix the BST without changing its structure.

    Input:

    The first...
  • Ans. 

    Restore a Binary Search Tree by fixing two swapped nodes without changing its structure.

    • Identify the two nodes that are swapped by mistake in the BST.

    • Swap the values of the two identified nodes to restore the BST.

    • Perform an in-order traversal of the BST to verify the correct restoration.

    • Ensure no extra space other than the recursion stack is used for the solution.

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations like getSize, isEmpty, push, pop, and getTop in O(1) time.

    • Create a class named Stack with methods for getSize, isEmpty, push, pop, and getTop.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure that each operation runs in constant time O(1).

    • Handle edge cases like empty stack appropriately.

    • Test the implementation with sample queri

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, OS, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on DSA as you will be judged mostly on that for entry-level software engineer profiles.
Tip 2 : Don't mug up the solution as you might not be able to recall the approach or you might face new question that you haven't seen earlier.
Tip 3 : Practice as much as possible from platforms like InterviewBit, LeetCode.

Application resume tips for other job seekers

Tip 1 : Try not to mention those things about which you are not comfortable. 
Tip 2 : Having one or two good projects in resume helps.
Tip 3 : Mention good competitive programming ranks (if any)
Tip 4 : Use overleaf.com for making a resume using Latex.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. What is the most challenging situation you have been through in your career?

Interview Preparation Tips

Interview preparation tips for other job seekers - To ace an interview you need to be a good listener as much as a good speaker. Try to listen and understand what the interviewer is asking and then reply. Never be in a hurry to answer, take time. If you did not understand what interviewer is asking simply ask him to repeat, pls don't presume anything and answer anything that comes to your mind. Most importantly never fake in an interview just try to be your best...

I appeared for an interview before May 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. Design a class booking application for students.
  • Ans. 

    A class booking application for students to schedule and manage their classes.

    • Create a class booking system where students can view available classes, book classes, and manage their schedule.

    • Include features like class search, class details, booking confirmation, and calendar view.

    • Implement user authentication to ensure only registered students can book classes.

    • Allow students to cancel or reschedule classes with proper...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer understand the current problem statement I was working on. 
Asked the clarifying questions and alternative approaches to solve the same and their tradeoffs.
Also, asked about the technologies I was using in depth and reason for choosing the same.

  • Q1. 

    Gas Tank Problem Statement

    You have a car with a gas tank of infinite capacity. There are 'N' gas stations located along a circular route, numbered from 0 to N-1. You begin your journey with an empty tank...

  • Ans. 

    Find the starting gas station index to complete a circular route with gas and cost arrays.

    • Iterate through gas stations, keeping track of gas remaining after each station

    • If gas remaining is negative, reset starting station to current station + 1

    • If total gas remaining at the end is greater than or equal to total cost, return starting station index

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 45 Minutes
Round difficulty - Medium

This round was their with the CTO and was mostly the culture fitment round.

 

Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round was with the cofounder and was mostly culture fitment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaRIVIGO interview preparation:Topics to prepare for the interview - Data Structures, Competitive Programming, Databases, Java, Spring , Hibernate, Jenkins, AWSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on leetcode
Tip 2 : Understand the best solutions in depth and algorithm used
Tip 3 : Ask clarifying questions to the interviewer and break the problem to smaller sub parts

Application resume tips for other job seekers

Tip 1 : Highlight your most impactful work on the resume
Tip 2 : Keep it easy to understand

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions are related to your past working experience and the position that you applied for Microwave Transmission related questions: What is Microwave and types What is fadind and it's resolution steps D...
  • Q2. PDH-SDH related questions- Difference between PDH and sdh Frame structure of sdh High order and low order bytes and alarms related to bytes Alarms in sdh Ethernet over sdh What is GFP, ENCAPSULATION, VCAT,...
  • Q3. Generally your current work related questions Why you want to change your job What is your expectations from new job Where you seeing your self after 5 year's Current salary and expectations

Interview Preparation Tips

Round: HR Round
Experience: Related to offer they are giving and related cross questions

General Tips: I had been interviewed with Huawei in 2016 and total 2 rounds was there for me. Questions I already had shared, go through it.

I got my offer letter after 1 month after HR discussion but please follow up with HR team once you get call for your selection
Skills: Ethernet over SDH, SDH, Microwave, Technical Knowledge(ML, Microwave, Communication, Presentation Skills
Duration: 1-3 Months

Interview Questionnaire 

3 Questions

  • Q1. How many time u take any update shuttering system?
  • Ans. 

    The question is unclear and lacks context.

    • Please provide more information about the 'update shuttering system'.

    • Specify the time frame for the updates.

    • Clarify the purpose or objective of the updates.

    • Provide any relevant examples or scenarios.

  • Answered by AI
  • Q2. Why u want to work as a execution engineer? Why not any special team such as formwork team,or quality team?
  • Ans. 

    I want to work as an execution engineer because I enjoy the challenge of overseeing and coordinating all aspects of a project.

    • As an execution engineer, I would have the opportunity to work on a variety of projects and oversee all aspects of their execution.

    • I enjoy the challenge of coordinating different teams and ensuring that everything runs smoothly.

    • While working on a formwork or quality team would be valuable experi...

  • Answered by AI
  • Q3. As contractor farm Engineer in RCC which is most important? 1) Reinforcements 2)Formwork 3)Concrete And why?
  • Ans. 

    Concrete is the most important as it provides the strength and durability to the structure.

    • Concrete is the backbone of any RCC structure.

    • It provides the strength and durability to the structure.

    • Reinforcements and formwork are important too, but without concrete, they are useless.

    • Proper mix design and curing of concrete are crucial for the longevity of the structure.

  • Answered by AI

I applied via Company Website and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Load distribution under rigid and flexible footings,water tank design, steel foundation design
  • Q2. Mix design of concrete, btech project
  • Ans. 

    Mix design of concrete and BTech project

    • Mix design involves determining the proportions of cement, water, aggregates, and admixtures to achieve desired properties of concrete

    • Factors like strength, workability, durability, and cost are considered while designing the mix

    • BTech project can involve studying the effect of different mix designs on properties of concrete or developing a new mix design

    • Examples of BTech projects...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be well prepared with basics and if you are already experienced, be prepared with site knowledge

I applied via Campus Placement and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 coding questions (1 DP + 1 Graph)

Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcode easy, medium questions on tree, dp
Round 3 - One-on-one 

(2 Questions)

  • Q1. 1 coding question on string (hard).
  • Q2. OS, DBMS, OOPs questions
Round 4 - HR 

(1 Question)

  • Q1. Usual HR questions + 2 puzzles question

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to have clear understanding of Computer Science subjects OS, DBMS, OOPs

Airtel X- Labs Interview FAQs

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

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

  1. LRU cache implementation with co...read more
  2. Design url shortn...read more
  3. Given an array and a sum you need to find a pair of elements whose sum is equal...read more

Tell us how to improve this page.

Airtel X- Labs Software Development Engineer Salary
based on 5 salaries
₹15 L/yr - ₹16.1 L/yr
11% more than the average Software Development Engineer Salary in India
View more details

Airtel X- Labs Software Development Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

5.0

Skill development

1.0

Work-life balance

5.0

Salary

1.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
162 salaries
unlock blur

₹13 L/yr - ₹30 L/yr

Software Engineer
83 salaries
unlock blur

₹9.6 L/yr - ₹20 L/yr

Lead Engineer
39 salaries
unlock blur

₹20 L/yr - ₹40 L/yr

Sdet Lead
19 salaries
unlock blur

₹20 L/yr - ₹41 L/yr

Software Developer
16 salaries
unlock blur

₹12 L/yr - ₹21 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
Did you find this page helpful?
Yes No
write
Share an Interview