Upload Button Icon Add office photos

Bharti Airtel

Compare button icon Compare button icon Compare

Filter interviews by

Bharti Airtel Sdet Interview Questions and Answers

Updated 11 Apr 2024

11 Interview questions

A Sdet was asked
Q. What UI test cases would you consider for a form?
Ans. 

UI test cases for a Form

  • Verify all required fields are displayed

  • Test validation messages for invalid inputs

  • Check if form submission is successful

  • Test the functionality of reset button

A Sdet was asked
Q. Write Selenium code to automate the 'Add to Cart' feature on Amazon.
Ans. 

Use Selenium to automate adding items to cart on Amazon website.

  • Locate the 'Add to Cart' button on the product page using Selenium's findElement method

  • Click on the 'Add to Cart' button to add the item to the cart

  • Verify that the item has been successfully added to the cart by checking the cart contents

Sdet Interview Questions Asked at Other Companies

Q1. Given an M x N 2D array containing random alphabets and a functio ... read more
asked in InMobi
Q2. Given a line where words are separated by spaces, reverse each wo ... read more
asked in Amazon
Q3. What happens between entering a URL into a browser address bar an ... read more
Q4. Given a circular linked list containing sorted integers, where th ... read more
asked in Flipkart
Q5. Given a sorted array of size 7 containing only 4 elements and ano ... read more
A Sdet was asked
Q. What UI test cases would you consider for uploading a document?
Ans. 

UI test cases for uploading a document

  • Verify that the 'Upload' button is functional

  • Check if the correct file types are allowed for upload

  • Ensure that the progress bar is displayed during upload

  • Confirm that the document is successfully uploaded and visible on the UI

A Sdet was asked
Q. What are some test cases for a Login API?
Ans. 

Test cases for Login API

  • Verify valid username and password login successfully

  • Verify invalid username and password combination fails to login

  • Verify login with empty username or password fails

  • Verify login with special characters in username or password fails

A Sdet was asked
Q. Explain automation framework.
Ans. 

Automation framework is a set of guidelines, tools, and processes used to automate testing of software applications.

  • Automation framework provides structure and guidelines for creating and executing automated tests.

  • It helps in organizing test scripts, managing test data, and generating test reports.

  • Examples of automation frameworks include Selenium, TestNG, and Cucumber.

  • Frameworks can be data-driven, keyword-driven...

A Sdet was asked
Q. Write test cases for an API that creates a user profile by accepting first name, last name, and mobile number.
Ans. 

Test cases for API creating User's profile with First name, Last name, and mobile number

  • Verify that a user profile is created successfully with valid First name, Last name, and mobile number

  • Test with invalid First name (empty, special characters, numbers)

  • Test with invalid Last name (empty, special characters, numbers)

  • Test with invalid mobile number (empty, alphabets, special characters, less than 10 digits)

  • Verify ...

A Sdet was asked
Q. What are the reasons for a 500 Internal Server Error?
Ans. 

500 Internal Server Error is a generic error message indicating a problem with the server.

  • Server misconfiguration

  • Server overload

  • Programming errors in server-side code

  • Database connection issues

  • Insufficient server resources

Are these interview questions helpful?
A Sdet was asked
Q. How do you achieve parallel execution of test cases in TestNG?
Ans. 

Parallel execution of test cases in TestNG can be achieved using TestNG's parallel attribute in the testng.xml file.

  • Set the 'parallel' attribute in the testng.xml file to 'methods', 'classes', or 'tests' to specify the level of parallelism.

  • Use the 'thread-count' attribute to specify the number of threads to be used for parallel execution.

  • Ensure that the test classes are thread-safe to avoid any conflicts during pa...

A Sdet was asked
Q. Write a program to count the occurrences of each character in a string.
Ans. 

A program to count the characters in a string

  • Iterate through each character in the string and increment the count for each character

  • Use a hashmap to store the count of each character

  • Handle edge cases like empty string or null input

A Sdet was asked
Q. Write a program to reverse the string. Input: I LOVE JAVA. Output: A VAJE VOLI
Ans. 

This program reverses the order of words in a string while also reversing each word's characters.

  • Split the input string into words: 'I LOVE JAVA' -> ['I', 'LOVE', 'JAVA']

  • Reverse each word: 'I' -> 'I', 'LOVE' -> 'EVOL', 'JAVA' -> 'AVAJ'

  • Reverse the order of words: ['AVAJ', 'EVOL', 'I'] -> 'AVAJ EVOL I'

  • Final output: 'AVAJ EVOL I'

Bharti Airtel Sdet Interview Experiences

2 interviews found

Sdet Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2024

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

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

Round 1 - Technical 

(7 Questions)

  • Q1. Amazon: Add Cart feature - Write Selenium code
  • Ans. 

    Use Selenium to automate adding items to cart on Amazon website.

    • Locate the 'Add to Cart' button on the product page using Selenium's findElement method

    • Click on the 'Add to Cart' button to add the item to the cart

    • Verify that the item has been successfully added to the cart by checking the cart contents

  • Answered by AI
  • Q2. Test cases of Login API
  • Ans. 

    Test cases for Login API

    • Verify valid username and password login successfully

    • Verify invalid username and password combination fails to login

    • Verify login with empty username or password fails

    • Verify login with special characters in username or password fails

  • Answered by AI
  • Q3. Write a program to count the character in a string
  • Ans. 

    A program to count the characters in a string

    • Iterate through each character in the string and increment the count for each character

    • Use a hashmap to store the count of each character

    • Handle edge cases like empty string or null input

  • Answered by AI
  • Q4. UI test cases of Upload document
  • Ans. 

    UI test cases for uploading a document

    • Verify that the 'Upload' button is functional

    • Check if the correct file types are allowed for upload

    • Ensure that the progress bar is displayed during upload

    • Confirm that the document is successfully uploaded and visible on the UI

  • Answered by AI
  • Q5. UI test cases of a Form
  • Ans. 

    UI test cases for a Form

    • Verify all required fields are displayed

    • Test validation messages for invalid inputs

    • Check if form submission is successful

    • Test the functionality of reset button

  • Answered by AI
  • Q6. How to achieve parallel execution of test cases in testNG?
  • Ans. 

    Parallel execution of test cases in TestNG can be achieved using TestNG's parallel attribute in the testng.xml file.

    • Set the 'parallel' attribute in the testng.xml file to 'methods', 'classes', or 'tests' to specify the level of parallelism.

    • Use the 'thread-count' attribute to specify the number of threads to be used for parallel execution.

    • Ensure that the test classes are thread-safe to avoid any conflicts during paralle...

  • Answered by AI
  • Q7. Write a program to reverse the words in a string I/P: My name is abc O/P: abc is name My
  • Ans. 

    Program to reverse words in a string

    • Split the input string into an array of words

    • Reverse the array of words

    • Join the reversed array back into a string

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. Write a program to reverse the string. I/P: I LOVE JAVA O/P: A VAJE VOLI
  • Ans. 

    This program reverses the order of words in a string while also reversing each word's characters.

    • Split the input string into words: 'I LOVE JAVA' -> ['I', 'LOVE', 'JAVA']

    • Reverse each word: 'I' -> 'I', 'LOVE' -> 'EVOL', 'JAVA' -> 'AVAJ'

    • Reverse the order of words: ['AVAJ', 'EVOL', 'I'] -> 'AVAJ EVOL I'

    • Final output: 'AVAJ EVOL I'

  • Answered by AI
  • Q2. Regression vs Sanity
  • Ans. 

    Regression testing ensures existing functionality still works after changes, while sanity testing checks if new functionality works as expected.

    • Regression testing is performed to make sure that new code changes do not adversely affect existing functionality.

    • Sanity testing is a cursory testing to make sure that the new functionality is working as expected.

    • Regression testing is usually automated and covers a wide range o...

  • Answered by AI
  • Q3. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, tools, and processes used to automate testing of software applications.

    • Automation framework provides structure and guidelines for creating and executing automated tests.

    • It helps in organizing test scripts, managing test data, and generating test reports.

    • Examples of automation frameworks include Selenium, TestNG, and Cucumber.

    • Frameworks can be data-driven, keyword-driven, or ...

  • Answered by AI
  • Q4. What are the reasons for 500 - Internal Server Error
  • Ans. 

    500 Internal Server Error is a generic error message indicating a problem with the server.

    • Server misconfiguration

    • Server overload

    • Programming errors in server-side code

    • Database connection issues

    • Insufficient server resources

  • Answered by AI
  • Q5. Submit button -> Click -> Blank page Identify the debug and find the root cause
  • Ans. 

    Investigate the blank page issue after clicking the submit button to identify potential causes and solutions.

    • Check for JavaScript errors in the console that may prevent page rendering.

    • Verify if the form submission is correctly handled by the backend server.

    • Inspect network requests to see if the submission returns a valid response.

    • Ensure that the URL is correctly defined and not leading to a 404 error.

    • Look for any infin...

  • Answered by AI
  • Q6. Write test cases of an API that creates User's profile by accepting First name, Last name and mobile number
  • Ans. 

    Test cases for API creating User's profile with First name, Last name, and mobile number

    • Verify that a user profile is created successfully with valid First name, Last name, and mobile number

    • Test with invalid First name (empty, special characters, numbers)

    • Test with invalid Last name (empty, special characters, numbers)

    • Test with invalid mobile number (empty, alphabets, special characters, less than 10 digits)

    • Verify that ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bharti Airtel Sdet interview:
  • Appium
  • API
  • Java

Skills evaluated in this interview

Sdet Interview Questions & Answers

user image Anonymous

posted on 31 Jan 2024

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

I applied via Company Website and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Question Related to Automation testing, Please go through Job Description. Question from these topic only. No Coding question.
Round 2 - One-on-one 

(1 Question)

  • Q1. Question realted to Jo desciption and one coding question. coding question from string topic
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager Round, will have question realted to daily job, including debugging skill and situation based.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Bharti Airtel?
Ask anonymously on communities.

Interview questions from similar companies

Sdet Interview Questions & Answers

Jio user image Anonymous

posted on 11 Jul 2024

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

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

Round 1 - Coding Test 

Java, selenium, appium, accessibility

I applied via Referral and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. My profile was related to SAP finance and data migration. So the questions regarding same area were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be 100% prepared on what you have shared on your resume. Have a thorough knowledge regarding it.

I applied via Other and was interviewed before Mar 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Serivece expression plz told
  • Ans. 

    Service expression refers to the way services are communicated and perceived by customers.

    • Service expression includes verbal and non-verbal communication.

    • Example: A friendly greeting at a restaurant enhances customer experience.

    • It involves understanding customer needs and responding appropriately.

    • Example: A customer service representative actively listening to a complaint.

  • Answered by AI
  • Q2. Customer choice given service and reply best response
  • Q3. How much transfer customer
  • Ans. 

    The question is unclear and lacks context.

    • Request clarification on what is meant by 'transfer customer'

    • Ask for more information about the specific role and responsibilities of an Assistant Manager

    • Seek clarification on the purpose or objective behind the question

  • Answered by AI
  • Q4. 6000/ customer satisfaction guaranteed service

Interview Preparation Tips

General Tips: Maruti home relocation movers and packers door to door delivery All responsibility packing and moving service
Skills: Communication

I applied via Referral and was interviewed before Apr 2017. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. CMM technical interview. HR negotiation
  • Q2. Only about packages no for benefits

Interview Preparation Tips

Round: Resume Shortlist
Experience: Education
Experience


Round: Group Discussion
Experience: Telecom problem and resolution

General Tips: I just given interviews to HOD for only 15 minutes and selected.
Skills: Communication, Body Language, Problem Solving, Time Management, Decision Making Skills
Duration: 1-4 weeks

I appeared for an interview in Apr 2017.

Interview Questionnaire 

17 Questions

  • Q1. What are the different layers of OSI model?
  • Q2. What is the difference between 3g and 4g
  • Q3. GSM architecture
  • Q4. Difference between OSS and NSS of GSM architecture
  • Ans. 

    OSS and NSS are two components of the GSM architecture that serve different functions.

    • OSS stands for Operation Support System and is responsible for managing and monitoring the network.

    • NSS stands for Network and Switching Subsystem and handles the call processing and switching functions.

    • OSS includes components like Network Management System (NMS) and Element Management System (EMS).

    • NSS includes components like Mobile S...

  • Answered by AI
  • Q5. Tell me about yourself in brief
  • Ans. 

    I am a dedicated and experienced professional with strong leadership skills and a passion for achieving results.

    • Experienced in managing teams and driving performance

    • Proven track record of meeting and exceeding targets

    • Excellent communication and interpersonal skills

    • Strong problem-solving and decision-making abilities

    • Ability to adapt to changing environments and handle multiple tasks

    • Example: As an Assistant Manager at XY...

  • Answered by AI
  • Q6. Tell me about youself
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in management and leadership.

    • Over 5 years of experience in management roles

    • Proven track record of successfully leading teams and achieving targets

    • Excellent communication and problem-solving skills

    • Strong organizational and time management abilities

    • Ability to adapt to changing environments and handle multiple tasks

    • Led a team of 15 employees and...

  • Answered by AI
  • Q7. Difference between Zigbee and Bluetooth
  • Ans. 

    Zigbee is a low-power, low-data-rate wireless network protocol while Bluetooth is a short-range wireless technology.

    • Zigbee is designed for home automation, industrial control, and sensor networks.

    • Bluetooth is used for wireless audio streaming, file transfer, and device control.

    • Zigbee has a longer range and can support more devices than Bluetooth.

    • Bluetooth has a higher data transfer rate and is more commonly used in con...

  • Answered by AI
  • Q8. Drawbacks of android
  • Ans. 

    Android has some drawbacks that need to be considered.

    • Fragmentation of the operating system across different devices

    • Security vulnerabilities due to open-source nature

    • Battery drain and performance issues with certain apps

    • Lack of timely software updates for older devices

    • Compatibility issues with some apps and hardware

    • Privacy concerns with app permissions

  • Answered by AI
  • Q9. Currently which mobile phone was using and its specification
  • Ans. 

    I am currently using an iPhone 12 Pro with 128GB storage.

    • I prefer iOS over Android.

    • The iPhone 12 Pro has a 6.1-inch Super Retina XDR display.

    • It has a triple-camera system with 12MP Ultra Wide, Wide, and Telephoto lenses.

    • The phone has 5G capability and uses Apple's A14 Bionic chip.

    • I chose the 128GB storage option for my needs.

  • Answered by AI
  • Q10. What are your 3 career goals?
  • Ans. 

    My career goals are to advance to a managerial position, develop strong leadership skills, and contribute to the growth and success of the company.

    • Advance to a managerial position

    • Develop strong leadership skills

    • Contribute to the growth and success of the company

  • Answered by AI
  • Q11. Family related questions and preferred location
  • Q12. Discussion on : role in company
  • Q13. CTC offered and policy
  • Q14. Questions were technical and in depth. Virtual Reality?
  • Q15. IOT? example
  • Q16. Why Reliance Jio?
  • Ans. 

    Reliance Jio offers a dynamic and innovative work environment with excellent growth opportunities.

    • Reliance Jio is a leading telecommunications company in India, known for its disruptive and innovative approach.

    • The company has revolutionized the telecom industry by offering affordable data and voice services to millions of people.

    • Reliance Jio's focus on digital transformation and cutting-edge technology makes it an exci...

  • Answered by AI
  • Q17. Sensors and working

Interview Preparation Tips

Round: Technical Interview
Experience: This was the telephonic round and it lasted for about 10 minutes. Questions were rapid but it went smooth.
Tips: Be confident and don't fumble.

Round: Technical + HR Interview
Experience: This was a skype interview which lasted for 10 mins. it was rigorous and intense.
Tips: Be confident

Round: Stress Interview
Experience: This was a skype interview and was intense.

Round: HR Interview
Experience: Casual interaction

Skills: Communication And Confidence, Proficiency In English, Technical Knowledge(ML, Project And Training

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview in Dec 2016.

Interview Questionnaire 

8 Questions

  • Q1. What was your final year project about
  • Ans. 

    My final year project was about developing a mobile application for tracking and managing personal finances.

    • Developed a user-friendly interface for inputting and categorizing expenses

    • Implemented features for setting budgets and generating reports on spending habits

    • Utilized data encryption to ensure the security of financial information

  • Answered by AI
  • Q2. Which role of sdlc were you a part of in your project
  • Ans. 

    I was involved in the testing phase of the SDLC in my project.

    • Participated in creating test cases and executing them

    • Collaborated with developers to identify and fix bugs

    • Ensured the quality of the software before release

  • Answered by AI
  • Q3. Work done in internship
  • Ans. 

    During my internship, I was responsible for assisting with various tasks such as data analysis, project management, and client communication.

    • Assisted with data analysis by collecting and organizing data sets

    • Managed projects by creating timelines, delegating tasks, and tracking progress

    • Communicated with clients to gather feedback and provide updates on project status

  • Answered by AI
  • Q4. Why do you want to join jio
  • Ans. 

    I want to join Jio because of its innovative and disruptive approach in the telecom industry.

    • Jio has revolutionized the telecom industry with its affordable data plans and high-speed internet.

    • I am impressed by Jio's commitment to digital transformation and its focus on providing cutting-edge technology to its customers.

    • Jio's extensive network coverage and strong infrastructure make it an exciting company to work for.

    • I ...

  • Answered by AI
  • Q5. Family background
  • Q6. Can classes be declared abstract in java
  • Ans. 

    Yes, abstract classes can be declared in Java.

    • Abstract classes cannot be instantiated

    • They can have abstract and non-abstract methods

    • Subclasses must implement all abstract methods

    • Example: abstract class Animal { abstract void makeSound(); }

    • Example: class Dog extends Animal { void makeSound() { System.out.println("Bark"); }}

  • Answered by AI
  • Q7. Explain polymorphism with a program
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding is when a subclass provides its own implementation of a method that is already provided by its parent class.

    • Method overloading is when a class has multiple methods with the same n...

  • Answered by AI
  • Q8. Advantages of recursion
  • Ans. 

    Recursion allows for elegant and concise code, simplifies complex problems, and can be more efficient in certain cases.

    • Recursion can simplify complex problems by breaking them down into smaller subproblems.

    • It allows for elegant and concise code, especially when dealing with data structures like trees and graphs.

    • Recursion can be more efficient in certain cases, such as when calculating factorials or Fibonacci numbers.

    • Ho...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Duration: 10 minutes

Round: Technical + HR Interview
Experience: After he was satisfied with my answers he explained me my job role, salary and the growth in the organization
Tips: Be confident and prepare your CV well..That should do it

Skills evaluated in this interview

I appeared for an interview in Mar 2017.

Interview Preparation Tips

Round: Test
Experience: Test was online.
1. In Hadoop, Big Data & Wireless Communication section, there were 10-10 question with 15 minutes of time in each of three.
These three section were quite logical rather than calculative.

2. Quant & Apti section was quite easy. Fill in the blanks type questions were also present. There was 50 question in this section and only 12 minutes were given to solve.
Over all this section was very easy and scoring.
Tips: As a graduate or PG fresher in ECE, you can score in Mobile communication & Non-tech portion.
Try to score in Apti part as much as you can.
Duration: 1 hour
Total Questions: 80

Round: Problem Statement
Experience: In this round one person from the selection panel of five gave the three question as a problem and asked to write our own strategy to tackle.
The questions were:
1. What do you mean by a network ?
2. Problem related to LOS and non LOS communication.
3. Signal fading in Communication.
Tips: Just use your technical skills, you can easily answer these question if you have a good understanding of the Wireless communication.

Round: Coding Test.
Experience: This round was also not for elimination.
They just gave a sheet of five question of coding.The questions were:
1. To add 2 very long integer type number.
2. To draw the mirror image of a given tree.
3. To find the loop in a link list.
4. To find the max possible sum of an array of positive and negative no.
5. Ques. was related to a given figure to write the Algo to find the center of the circle.(fig. was given in the ques.).


Tips: To clear this round you need to be proficient at least in one coding language.

Round: Technical + HR Interview
Experience: They shortlisted 47 person from IIT Roorkee for the written.
Up to this round only 19 were present.
Duration of my interview was only 25-30 minutes.
There are 5 members panel(4 Tech+ 1HR).
One person in from Israel(Data mining expert),Second was from Sweden(Coding expert),Third & fourth were from India and Wireless comm. and architecture expert. 5th was HR person from India.
They started from the coding section form the test sheet ques.
He asked to explain all the coding ques and about my logic behind that.
Then they asked about Big data and Machine learning question.
As I don't know much about these topic I replied that I don't know sir.
After that they asked to explain my B.tech and M.tech project ,then they asked some ques related to project.
Then they asked ques from Wireless communication and Architecture of 1G to 5G to explain.
They asked ques from GSM, FDM, CDMA,TDM,OFDM.
They asked me the various reason behind call dropping.
Then he asked my B.tech communication subject when I told him my Analog & Digital comm. topic then he started laughing and told me that these techniques are completely outdated.
In last they asked my GATE %ile then I replied 99.42.
HR person was just observing my answering skills.

Tips: The interview was going on very fast they gave only 4-5 sec to think otherwise next ques was waiting for me.
Be confident and try to give the answer with some basic concept.
As for as my concern, They were just checking our base knowledge in there field specially in Wireless comm. and some courses in Machine learning or Data mining is a plus point.

Skills: Basic Concepts, Understanding Ability
College Name: IIT Roorkee

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Round: HR Interview
Experience: my self Uma Shankar I belong to U.P (Uttar Pradesh) I am pass out my 10th,12th from open school currently I am doing self-improvement course When I am tocking about my family in my family my father my mother and one elder brother and also me
I have total 3-year experience of sale and field executive
and last when you want to know about my hobbies playing game and also listening music and last and important traveling in out of city
That's all about me

Round: aspected salleary
Experience: I am telling about that in last company I am getting 14k CTC without convance then he was saying that they can provide me 16k CTC and i am agreed on this salary

Bharti Airtel Interview FAQs

How many rounds are there in Bharti Airtel Sdet interview?
Bharti Airtel interview process usually has 2-3 rounds. The most common rounds in the Bharti Airtel interview process are One-on-one Round and Technical.
How to prepare for Bharti Airtel Sdet 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 Bharti Airtel. The most common topics and skills that interviewers at Bharti Airtel expect are Automation Testing, Cds, Continuous Integration, Java and Jenkins.
What are the top questions asked in Bharti Airtel Sdet interview?

Some of the top questions asked at the Bharti Airtel Sdet interview -

  1. How to achieve parallel execution of test cases in test...read more
  2. Write test cases of an API that creates User's profile by accepting First name,...read more
  3. What are the reasons for 500 - Internal Server Er...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Jio Interview Questions
4.1
 • 2.2k Interviews
Vodafone Idea Interview Questions
4.0
 • 591 Interviews
Ericsson Interview Questions
4.1
 • 430 Interviews
Nokia Interview Questions
4.1
 • 288 Interviews
BT Group Interview Questions
3.9
 • 199 Interviews
Verizon Interview Questions
4.0
 • 118 Interviews
AT&T Interview Questions
4.1
 • 59 Interviews
View all
Bharti Airtel Sdet Salary
based on 11 salaries
₹8 L/yr - ₹28.1 L/yr
13% more than the average Sdet Salary in India
View more details

Bharti Airtel Sdet Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
SDET-2

Gurgaon / Gurugram

3-5 Yrs

Not Disclosed

SDET-3

Hyderabad / Secunderabad

4-6 Yrs

Not Disclosed

SDET-2

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Assistant Manager
2.3k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Network Engineer
1.5k salaries
unlock blur

₹2 L/yr - ₹6.9 L/yr

Manager
1.4k salaries
unlock blur

₹6.3 L/yr - ₹20.7 L/yr

Territory Sales Manager
1.3k salaries
unlock blur

₹2.7 L/yr - ₹10.6 L/yr

Accounts Manager
1.2k salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Bharti Airtel with

Jio

4.1
Compare

Vodafone Idea

4.0
Compare

Ericsson

4.1
Compare

Tata Communications

4.0
Compare
write
Share an Interview