Upload Button Icon Add office photos
Engaged Employer

i

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

XpressBees Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

XpressBees Senior Engineer Interview Questions and Answers

Updated 20 May 2024

XpressBees Senior Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Given 3 strings S, S1, S2 containgin M, N and k characters respectively, task is to modify string by replaicing all substring S1 with S2 and S

Interview questions from similar companies

I was interviewed in Dec 2021.

Interview Questionnaire 

4 Questions

  • Q1. Question based on previous projects.
  • Q2. Join duplicate records in tables and output of inner join, left outer join, right outer join, full join. Table1 : 1, 1, 2, 2, 2, Null Table2: 1, 1, 2, 3, Null, Null
  • Ans. 

    Demonstrate joining duplicate records in tables using different types of joins.

    • Inner join will only return the matching records (1,1 and 2,2) from both tables.

    • Left outer join will return all records from Table1 and matching records from Table2 (including Null values).

    • Right outer join will return all records from Table2 and matching records from Table1 (including Null values).

    • Full join will return all records from both ...

  • Answered by AI
  • Q3. What is SCD and it's types ?
  • Ans. 

    SCD stands for Slowly Changing Dimensions. It is a technique used in data warehousing to track changes in data over time.

    • SCD is used to maintain historical data in a data warehouse

    • There are three types of SCD: Type 1, Type 2, and Type 3

    • Type 1 SCD overwrites old data with new data

    • Type 2 SCD creates a new record for each change and maintains a history of changes

    • Type 3 SCD adds new columns to the existing record to track ...

  • Answered by AI
  • Q4. Data warehouse question

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm an ETL Developer, I gave interview for Senior engineer.
1. Aptitude test
2. Technical round 1 - interview on previous project, SQL and primary skill
3. Technical round - interview on Informatica scenario based questions
4. Managerial round - interview on pure SQL

Skills evaluated in this interview

I applied via Company Website and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

1. 20 aptitude questions
2. 20 react MCQ
3. 2 coding questions.

Round 2 - Technical 

(1 Question)

  • Q1. Forward reference, react memo and many more
Round 3 - Technical 

(1 Question)

  • Q1. Set and map, react pure components.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn react basics, and be confident.

I applied via LinkedIn and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy questions

Round 2 - Technical 

(1 Question)

  • Q1. More depth, Product related questions
Round 3 - Coding Test 

Manegerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared well for technical interview.

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Javascript in depth questions, alot of interview rounds i had 7 rounds in total including written tests.
  • Q2. Written tests include technical mcq(a bit tricky one), aptitude(less time so be quick) and programming round that consists of 3 questions (make sure to attempt atleast 2)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while giving the interview, i had 4 interview rounds you probably end up having more or less, but make sure you perform quite nicely in each round as each one is an elimination round.
The process was quite fast I got my offer in 2 weeks.
All the best!
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Nice testing capabilities within this test

Round 2 - Technical 

(1 Question)

  • Q1. Question question question questions
Round 3 - Technical 

(1 Question)

  • Q1. Answeredd all the questions in interviews.
Round 4 - Technical 

(1 Question)

  • Q1. Answered all the questions

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 7 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Question regarding Spring boot micro service and JPA, 2. Collections questions like contract between equals and hashcode, Array vs list etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing too hard. If you are bit well and springboot and core java you will definitely be able crack the interview.

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Well normal questions asked about my working experience and couple of tech quests.

I applied via LinkedIn and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write a program: if input is "my_first_variable" return output as "myFirstVariable" and vice-versa
  • Ans. 

    A program to convert a variable name from snake_case to camelCase and vice-versa.

    • Split the input string by underscore (_) to get an array of words.

    • For snake_case to camelCase conversion, capitalize the first letter of each word except the first one.

    • For camelCase to snake_case conversion, insert an underscore (_) before each capital letter except the first one.

    • Join the array of words with the appropriate delimiter to ge

  • Answered by AI
  • Q2. Write a program: two input, one is N(any integer, lets say 3), second input will be array of integers(duplicate/multiple occurrences of same integer, lets say [2,3,2,4,2] ). You have to return the number w...
  • Ans. 

    Program to find the number whose occurrence is greater than N/2 in an array of integers.

    • Take two inputs, one integer N and an array of integers.

    • Loop through the array and count the occurrence of each number.

    • Return the number whose occurrence is greater than N/2.

    • If no such number found, return '-1'.

  • Answered by AI
  • Q3. Write a program: single input as a string(lets say "aaabcccfffghh"), you have to return the char and their occurrence as a string. In this case you have to return "a3b1c3f3g1h2"
  • Ans. 

    Program to return character and their occurrence in a string.

    • Iterate through the string and count the occurrence of each character.

    • Store the count in a dictionary or hashmap.

    • Create a new string by concatenating the character and their count.

    • Return the new string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Ui Developer(React/Redux). For that I had to go through series of tests and tech interview.
1. Coding Challenge: Three questions in 75min. Difficulty Level - Average
2.Aptitude Test: 30 questions in 20min. Difficulty Level - Average. Questions related to find the sequence of any missing figure. Train speed related questions. So practice these
3. Two round of Tech interview. Difficulty Level - Average to Difficult
4. MCQ on JS, JS Fundamental, HTML, CSS, React, GIT. Time 190min. Difficulty Level - Difficult.

Nagarro's hiring process is damn fast. After clearing any of the steps they will call on same day.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on 1.agile methodology 2.testing techniques 3.test planning 4.previous project work 5.api testing 6.basic sql queries

XpressBees Interview FAQs

How many rounds are there in XpressBees Senior Engineer interview?
XpressBees interview process usually has 1 rounds. The most common rounds in the XpressBees interview process are Coding Test.

Tell us how to improve this page.

XpressBees Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Delhivery Interview Questions
3.9
 • 457 Interviews
Whitehat jr Interview Questions
3.5
 • 262 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Oyo Rooms Interview Questions
3.3
 • 218 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
Ecom Express Interview Questions
3.8
 • 198 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
View all
Senior Executive
355 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
311 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Supervisor
273 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
251 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
194 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare XpressBees with

Delhivery

3.9
Compare

Ecom Express

3.8
Compare

Shadowfax Technologies

3.6
Compare

Wow Express

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