Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Airbase Team. If you also belong to the team, you can get access from here

Airbase Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 5 Reviews

Filter interviews by

Airbase Sdet Interview Questions and Answers

Updated 10 Sep 2024

Airbase Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

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

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

Round 1 - Coding Test 

Had to automate a few steps on webpage

Round 2 - Technical 

(2 Questions)

  • Q1. Performance related
  • Q2. Api testing experience
  • Ans. 

    I have extensive experience in API testing, including designing test cases, executing tests, and analyzing results.

    • Experience in testing RESTful APIs using tools like Postman or SoapUI

    • Ability to write automated tests using frameworks like Selenium or JUnit

    • Understanding of API documentation and ability to create test plans based on it

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Sdet Interview Questions & Answers

DE Shaw user image Anonymous

posted on 9 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Performance Testing
  • Q2. Difference between put and patch

Sdet Interview Questions & Answers

ivy user image Anonymous

posted on 11 Sep 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Test cases of login page
  • Ans. 

    Test cases for login page functionality

    • Verify valid username and password combination successfully logs in

    • Verify error message is displayed for invalid username or password

    • Verify 'Forgot Password' link redirects to password reset page

    • Verify 'Create Account' link redirects to registration page

  • Answered by AI
  • Q2. Code on website
  • Ans. 

    The question is asking for code on a website.

    • Check the website's source code for any embedded scripts or code snippets

    • Look for any external scripts or libraries being used on the website

    • Inspect the network requests to see if any code is being loaded dynamically

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Solve sanke and ladder puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - learn DSA

Interview Questionnaire 

9 Questions

  • Q1. First one was to find position of a box in a particular grid(4*4) boxes were numbered 0 to 15.Questions was also to write test cases and check every possibilty
  • Q2. Second question was card shuffling problem
  • Q3. One question was think how the database design of Facebook could be
  • Q4. And there were few more coding questions on data structures
  • Q5. It was basically 1 question round but that had two parts . one designing the algorithm optimally . And writting and covering all possible scenarios and write test cases for them.It was based on deleting el...
  • Q6. This round covered Data structure based prograaming as well OS concepts on multithreading as well
  • Q7. One question was to design data structures to delete pages from a web server which are no longer in existense and have no link on website .That is pages which have expired and no longer in use and has no r...
  • Q8. One question to desgin lift system and waht whould be the design
  • Q9. This was the last round .Questions based on college projects and training project was asked.A question was asked to design an algorithm for a new type of contact search application of mobile phones

Interview Preparation Tips

Round: Test
Experience: 10 Objective type questions mainly from data structures.Questions on structures,union , trees,graphs etc First question was purely coding in most optimized way and taking care of all conditions possible. Second Question was to write test cases for print server job execution getting print jobs from different hostels of a college. Third question was to design a Data structure for a billing system keeping in mind certain conditions and write a program to generate and store the bills.
Total Questions: 10

College Name: NA
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 Sep 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Tell me about your Project? what part you tested in your project?
  • Ans. 

    I worked on a project to develop a mobile application for tracking fitness goals and workouts.

    • Tested user authentication and registration processes

    • Performed functional testing on workout tracking features

    • Conducted regression testing after each new feature implementation

  • Answered by AI
  • Q2. What is Regression testing and what is regression defects?
  • Ans. 

    Regression testing is retesting of software to ensure that recent changes have not adversely affected existing features. Regression defects are bugs that reappear after changes.

    • Regression testing is performed to make sure that new code changes have not introduced any new bugs or caused existing functionalities to break.

    • It involves re-executing test cases that cover the impacted areas of the software.

    • Regression defects ...

  • Answered by AI
  • Q3. Scenario based question in that ask about the regression defects
  • Q4. Verification vs Validation?
  • Ans. 

    Verification ensures the product is built right, while validation ensures the right product is built.

    • Verification focuses on process, validation focuses on product

    • Verification answers 'Are we building the product right?'

    • Validation answers 'Are we building the right product?'

    • Verification is done before validation

  • Answered by AI
  • Q5. How frequently do you run the Regression Test?
  • Ans. 

    Regression tests are run after every significant code change or new feature implementation.

    • Regression tests are typically run after every significant code change or new feature implementation to ensure that existing functionalities are not affected.

    • The frequency of running regression tests may vary depending on the project timeline and release cycle.

    • In Agile development, regression tests are often run as part of the co...

  • Answered by AI
  • Q6. How to select 5 th dropdown option?
  • Ans. 

    To select the 5th dropdown option, locate the dropdown element and choose the 5th option.

    • Locate the dropdown element using its unique identifier or class name

    • Use a method like 'selectByIndex' or 'selectByVisibleText' to choose the 5th option

    • Verify that the correct option has been selected

  • Answered by AI
  • Q7. Find the xpath of "Google Search tab" & "Voice search button"?
  • Ans. 

    Use xpath to locate Google Search tab and Voice search button on the webpage.

    • For Google Search tab: //input[@name='btnK']

    • For Voice search button: //div[@aria-label='Search by voice']

  • Answered by AI
  • Q8. Write a java program for reverse string without pre defined method.
  • Ans. 

    Java program to reverse a string without using predefined methods.

    • Create a char array from the input string.

    • Use two pointers, one at the start and one at the end, to swap characters.

    • Continue swapping characters until the pointers meet in the middle.

  • Answered by AI
  • Q9. Which libraries use for the verifying test cases?
  • Ans. 

    Some common libraries used for verifying test cases are JUnit, TestNG, Selenium, and RestAssured.

    • JUnit is a popular Java testing framework for unit testing.

    • TestNG is another Java testing framework that supports parameterized and data-driven testing.

    • Selenium is a widely used tool for automating web browsers for testing purposes.

    • RestAssured is a Java library for testing RESTful APIs.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Linux env setup
  • Ans. 

    Setting up a Linux environment involves installing the operating system, configuring network settings, and installing necessary software.

    • Install Linux distribution (e.g. Ubuntu, CentOS)

    • Configure network settings (IP address, DNS, etc.)

    • Install necessary software (e.g. development tools, testing frameworks)

    • Set up user accounts and permissions

  • Answered by AI
  • Q2. What are the Linux commands
  • Ans. 

    Linux commands are used to interact with the Linux operating system through the command line interface.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make a new directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move files or directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as the superuser

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 programs.

one finding number times a letter is repeated given a string. other finding all prime numbers until n.

Round 2 - Technical 

(2 Questions)

  • Q1. Intro about self
  • Q2. What goes beind the servers when let's say an order is placed on amazon or something.
  • Ans. 

    When an order is placed on Amazon, it goes through multiple servers including web servers, application servers, databases, and payment gateways.

    • Order is received by web servers which handle the initial request from the user

    • Application servers process the order, check inventory, and update the database

    • Database servers store customer information, order details, and inventory levels

    • Payment gateways handle the transaction ...

  • Answered by AI

Skills evaluated in this interview

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

The round one was aptitude and finding the output

Round 2 - Aptitude Test 

The next round was advanced aptitude

Round 3 - Aptitude Test 

(1 Question)

  • Q1. The questions were mostly logical
Round 4 - One-on-one 

(1 Question)

  • Q1. They asked how did we solve the aptitude questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Group Discussion 

General topics like Artificial Intelligence positive or negative impacts

Round 2 - Technical 

(1 Question)

  • Q1. Everything from resume
Round 3 - HR 

(1 Question)

  • Q1. General questions

Airbase Interview FAQs

How many rounds are there in Airbase Sdet interview?
Airbase interview process usually has 2 rounds. The most common rounds in the Airbase interview process are Coding Test and Technical.
What are the top questions asked in Airbase Sdet interview?

Some of the top questions asked at the Airbase Sdet interview -

  1. Api testing experie...read more
  2. Performance rela...read more

Tell us how to improve this page.

Airbase Sdet Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Sdet Interview Questions from Similar Companies

Paytm Sdet Interview Questions
3.3
 • 4 Interviews
PhonePe Sdet Interview Questions
4.0
 • 3 Interviews
Google Sdet Interview Questions
4.4
 • 2 Interviews
DE Shaw Sdet Interview Questions
3.8
 • 2 Interviews
ivy Sdet Interview Questions
3.7
 • 1 Interview
View all
Software Engineer
7 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹30 L/yr - ₹37.5 L/yr

Senior Software Engineer 2
5 salaries
unlock blur

₹38.9 L/yr - ₹75 L/yr

Software Engineer2
5 salaries
unlock blur

₹30 L/yr - ₹38 L/yr

Software Developer
4 salaries
unlock blur

₹21 L/yr - ₹45 L/yr

Explore more salaries
Compare Airbase with

Razorpay

3.6
Compare

Paytm

3.3
Compare

Mobikwik

4.0
Compare

Payed

2.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview