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 Interview Questions and Answers

Updated 10 Sep 2024

Airbase Interview Experiences

Popular Designations

5 interviews found

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Previous Projects
  • Q2. Why this job change
Round 2 - Technical 

(3 Questions)

  • Q1. Project related questions
  • Q2. What were the disadvantages in my previous organisation
  • Q3. Team size, sprints structure etc. discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewers are pretty friendly

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. It was a one-on-one round with the technical manager. He wanted to know my journey so far.
Round 2 - Technical 

(1 Question)

  • Q1. A frontend-based problem statement on code sandbox. (in ReactJs)
  • Ans. 

    Create a ReactJs frontend-based problem statement on code sandbox.

    • Use ReactJs to create a simple todo list application

    • Implement CRUD operations for adding, editing, and deleting tasks

    • Include features like filtering tasks based on status or priority

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Behavioral 

(3 Questions)

  • Q1. Questions related to current role.
  • Q2. Technical Challenge recently resolved.
  • Q3. Leadership questions

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

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

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)

Airbase interview questions for popular designations

 Senior Software Engineer

 (2)

 Sdet

 (1)

 Senior Software Engineer 1

 (1)

 Technical Support Engineer

 (1)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via LinkedIn and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self
Round 2 - Aptitude Test 

1 hr test with basic aptitude and scenario based questions

Round 3 - Technical 

(1 Question)

  • Q1. Questions based on SQL and Linux
Round 4 - Technical 

(1 Question)

  • Q1. Similar to round 3

Interview Preparation Tips

Interview preparation tips for other job seekers - Process requires time at Airbase, Sometimes you need to wait for weeks to get update.

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Interview questions from similar companies

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

(9 Questions)

  • Q1. Introduction, roles and responsibilities
  • Q2. Deep copy shallow copy
  • Q3. Method Overloading overriding
  • Q4. Constuctor and its types
  • Ans. 

    Constructors are special methods in a class used to initialize objects. There are default, parameterized, copy, and static constructors.

    • Constructors have the same name as the class and do not have a return type.

    • Default constructors are automatically created by the compiler if no constructor is defined.

    • Parameterized constructors accept parameters to initialize object properties.

    • Copy constructors create a new object as a...

  • Answered by AI
  • Q5. Varags (variable length arguments)
  • Q6. Find element find elements return types of it if no elements found
  • Ans. 

    findElements method in Selenium returns a list of WebElements or an empty list if no elements are found.

    • findElements method returns a list of WebElements

    • If no elements are found, it returns an empty list

    • Return type is List

Answered by AI
  • Q7. Webdriver what is it
  • Ans. 

    Webdriver is a tool used for automating web application testing.

    • Webdriver is a popular automation tool used for testing web applications.

    • It allows testers to automate interactions with a web browser.

    • Webdriver supports multiple programming languages such as Java, Python, and C#.

    • It can simulate user interactions like clicking buttons, entering text, and navigating through pages.

    • Webdriver is commonly used in QA automation...

  • Answered by AI
  • Q8. Find duplicate numbers and its count from given list explain logic
  • Ans. 

    Logic to find duplicate numbers and their count in a given list.

    • Iterate through the list and store each number in a hashmap with its count

    • If a number is already in the hashmap, increment its count

    • After iterating, check the hashmap for numbers with count greater than 1 to find duplicates

  • Answered by AI
  • Q9. Factorial using recursion
  • Ans. 

    Factorial using recursion is a mathematical function that calculates the product of all positive integers up to a given number.

    • Define a function that takes an integer parameter n

    • Base case: if n is 0, return 1

    • Recursive case: return n multiplied by the factorial of n-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - For me Mostly 90% they asked java related questions.
    Introduction, roles responsibilities.
    Deep copy shallow copy
    Method Overloading overriding
    Constuctor
    Varags
    Find element & find elements difference and return types(if elements present and if not)
    2 coding questions
    1 repeatetive numbers/duplicates and its count from the given list eg output 4,2(4 is number and found 2 times)
    2 factorial of a number using recursion.

    I don't want to fil this form all that's why including all questions asked in the feedback.

    This was my first round and no response till now.
    Interview taken on 10 Oct.

    Skills evaluated in this interview

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

    I was interviewed in Jul 2024.

    Round 1 - Technical 

    (1 Question)

    • Q1. PLM configurations and SAP systems landscapes
    Round 2 - Technical 

    (1 Question)

    • Q1. What types of problem-solving skill test questions are typically asked in a managerial round?
    Round 3 - HR 

    (1 Question)

    • Q1. Why have you chosen to pursue a career in SAP, and what does that career path look like to you?
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (6 Questions)

    • Q1. Tell me about youtself?
    • Q2. What do you know about TDS?
    • Q3. Situation AP based journal entries
    • Q4. What is GST on reverse charge?
    • Q5. What are the documents required to initiate a foreign remittance?
    • Q6. More situational based AP journal entries.
    Interview experience
    2
    Poor
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. What are joins in SQL?
    • Ans. 

      Joins in SQL are used to combine rows from two or more tables based on a related column between them.

      • Joins are used to retrieve data from multiple tables based on a related column between them

      • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

      • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

    • Answered by AI
    • Q2. Coding questions in Python
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. E plain project experience and talk of any one project in detail
    • Ans. 

      I have extensive project experience in operations management, including leading a team to improve efficiency and productivity.

      • Led a team in implementing a new inventory management system, resulting in a 20% reduction in stockouts

      • Streamlined the order fulfillment process by reorganizing warehouse layout and optimizing pick routes

      • Implemented performance metrics to track team productivity and identify areas for improvemen

    • Answered by AI
    • Q2. What is exp in pharma
    Round 3 - HR 

    (2 Questions)

    • Q1. Stregnths and weakness
    • Q2. Why are you looking to join axtria
    • Ans. 

      I am looking to join Axtria because of its reputation for innovation and growth opportunities.

      • Impressed by Axtria's track record of innovation in the industry

      • Excited about the potential for growth and advancement within the company

      • Interested in working with a talented team of professionals at Axtria

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Don’t apply for axtria. I answeree all questions well but they in last told that vacancy is on hold. Stupid company.

    Skills evaluated in this interview

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

    Arrays and strings - 90 mins

    Round 2 - Coding Test 

    Create Modules, railway reservation system - 60 mins

    Round 3 - Technical 

    (5 Questions)

    • Q1. Difference between hashmap and hasptable
    • Q2. Why typescript over javascript
    • Q3. Find the percentage of increace in the quantity of item after making it price 20% extra
    • Q4. What is normalization
    • Q5. Date and time api available

    Airbase Interview FAQs

    How many rounds are there in Airbase interview?
    Airbase interview process usually has 2-3 rounds. The most common rounds in the Airbase interview process are Technical, HR and One-on-one Round.
    How to prepare for Airbase 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 Airbase. The most common topics and skills that interviewers at Airbase expect are Spend Management, Workflow, Accounting, Communication Skills and Open Source.
    What are the top questions asked in Airbase interview?

    Some of the top questions asked at the Airbase interview -

    1. A frontend-based problem statement on code sandbox. (in React...read more
    2. Api testing experie...read more
    3. It was a one-on-one round with the technical manager. He wanted to know my jour...read more

    Tell us how to improve this page.

    Airbase Interview Process

    based on 6 interviews

    Interview experience

    3.7
      
    Good
    View more

    Interview Questions from Similar Companies

    Google Interview Questions
    4.4
     • 869 Interviews
    Paytm Interview Questions
    3.3
     • 766 Interviews
    PhonePe Interview Questions
    4.0
     • 302 Interviews
    PayPal Interview Questions
    3.9
     • 208 Interviews
    Razorpay Interview Questions
    3.6
     • 148 Interviews
    Mobikwik Interview Questions
    4.0
     • 45 Interviews
    BillDesk Interview Questions
    3.2
     • 13 Interviews
    Instamojo Interview Questions
    3.5
     • 7 Interviews
    View all

    Airbase Reviews and Ratings

    based on 5 reviews

    3.6/5

    Rating in categories

    2.5

    Skill development

    3.9

    Work-life balance

    3.9

    Salary

    3.1

    Job security

    4.0

    Company culture

    2.8

    Promotions

    3.0

    Work satisfaction

    Explore 5 Reviews and Ratings
    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