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
3.7

based on 2.1k Reviews

Filter interviews by

XpressBees Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top XpressBees Interview Questions and Answers

View all 98 questions

XpressBees Interview Experiences

Popular Designations

154 interviews found

Android SDE 1 Interview Questions & Answers

user image Anonymous

posted on 17 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(19 Questions)

  • Q1. What is MVVM and why is it recommended?
  • Ans. 

    MVVM stands for Model-View-ViewModel, a design pattern that separates the UI from the business logic.

    • MVVM separates the UI (View) from the business logic (ViewModel) by introducing a middle layer (ViewModel) that handles the communication between the two.

    • Model represents the data and business logic, View represents the UI components, and ViewModel acts as an intermediary between them.

    • MVVM promotes better code organizat...

  • Answered by AI
  • Q2. Difference between lateinit and lazy.
  • Ans. 

    lateinit is used for non-nullable properties that are initialized in the constructor, while lazy is used for properties that are initialized only when accessed for the first time.

    • lateinit is used for properties that must be initialized before being used, while lazy is used for properties that can be initialized later.

    • lateinit properties must be of non-nullable types, while lazy properties can be nullable.

    • lateinit prope...

  • Answered by AI
  • Q3. Different Coroutines launchers and differences among them.
  • Ans. 

    Different Coroutines launchers in Android and their differences.

    • MainCoroutineDispatcher - runs on the main thread and is used for UI updates.

    • IOCoroutineDispatcher - optimized for IO-bound tasks like network requests or database operations.

    • DefaultCoroutineDispatcher - suitable for CPU-bound tasks that don't require the main thread.

    • UnconfinedCoroutineDispatcher - runs on the current thread until the first suspension poin...

  • Answered by AI
  • Q4. Supervisor Scope Vs Coroutine Scope.
  • Ans. 

    Supervisor Scope is used in structured concurrency for managing child coroutines, while Coroutine Scope is used for launching coroutines.

    • Supervisor Scope is used to manage the lifecycle of child coroutines, ensuring that if one child fails, it does not affect the others.

    • Coroutine Scope is used for launching coroutines and managing their lifecycle.

    • SupervisorScope is a part of the Kotlin coroutines library, while Corouti

  • Answered by AI
  • Q5. Firebase rules and use cases.
  • Q6. Firebase Push Notifications: How can we send different push notifications to other users?
  • Ans. 

    Different push notifications can be sent to other users by targeting specific user IDs or using topics in Firebase Cloud Messaging.

    • Use Firebase Cloud Messaging to send push notifications to specific user IDs.

    • Utilize topics in Firebase Cloud Messaging to send notifications to groups of users with similar interests or characteristics.

    • Implement logic in the backend to determine which users should receive which notificatio...

  • Answered by AI
  • Q7. Background Service and Foreground Service.
  • Q8. Can foreground services be launched if application is in background?
  • Ans. 

    Yes, foreground services can be launched if application is in background.

    • Foreground services can be launched even if the application is in the background to perform tasks that are noticeable to the user.

    • Foreground services have a higher priority than background services and are less likely to be killed by the system.

    • Examples of foreground services include music playback, navigation, or ongoing downloads.

  • Answered by AI
  • Q9. How to implement Retrofit and how can we make REST calls using that?
  • Ans. 

    Retrofit is a type-safe HTTP client for Android and Java. It simplifies making REST API calls.

    • Create a Retrofit instance using Retrofit.Builder class

    • Define an interface with method definitions for API endpoints

    • Use annotations like @GET, @POST, @PUT, @DELETE to specify the type of HTTP request

    • Execute the API call using Call object and Callback interface

    • Handle the response in onResponse() and onFailure() methods

  • Answered by AI
  • Q10. Room database migration strategy. How can we handle migration when one more column is added to the table without hampering previous data in that table?
  • Ans. 

    Use Room database migration with SQLite ALTER TABLE command to add a new column without losing previous data.

    • Create a new migration class in Room database with SQLite ALTER TABLE command to add the new column.

    • Ensure that the new column is nullable or has a default value to prevent issues with existing data.

    • Update the entity class in the code to include the new column and handle it accordingly in the app.

    • Test the migrat...

  • Answered by AI
  • Q11. What is livedata? Different methods of MutableLiveData and differences between them.
  • Ans. 

    LiveData is an observable data holder class. MutableLiveData is a subclass of LiveData that allows data to be changed.

    • LiveData is an observable data holder class that is lifecycle-aware.

    • MutableLiveData is a subclass of LiveData that allows data to be changed.

    • Methods of MutableLiveData include setValue() and postValue().

    • setValue() updates the value on the main thread, while postValue() updates the value asynchronously.

    • L...

  • Answered by AI
  • Q12. What are the configuration changes?
  • Ans. 

    Configuration changes refer to modifications made to settings or parameters in software or hardware systems.

    • Configuration changes can include adjustments to network settings, display preferences, security settings, etc.

    • Examples of configuration changes include changing the screen resolution on a computer, updating the Wi-Fi password on a router, or modifying notification settings on a smartphone.

  • Answered by AI
  • Q13. MVVM project folder structure.
  • Ans. 

    MVVM project folder structure organizes code into separate layers for better maintainability and scalability.

    • Separate folders for Models, Views, ViewModels, and Services

    • Models folder contains data classes representing the data structure

    • Views folder contains XML layout files for UI components

    • ViewModels folder contains classes that handle business logic and interact with the data layer

    • Services folder contains classes for...

  • Answered by AI
  • Q14. HTTP interceptors and why do we need it?
  • Ans. 

    HTTP interceptors are used to intercept and modify HTTP requests and responses in an application.

    • HTTP interceptors are commonly used in web development to add authentication tokens, logging, error handling, or other functionalities to HTTP requests and responses.

    • They can be used to modify headers, add authorization tokens, log requests, handle errors, or perform any other pre-processing or post-processing tasks.

    • Example...

  • Answered by AI
  • Q15. JVM overloads and JVM static? Is there any difference in JVM static and Companion object?
  • Ans. 

    JVM static vs Companion object in Kotlin

    • JVM static is used in Java to create static methods and variables within a class

    • Companion object in Kotlin serves a similar purpose to JVM static, providing a way to define static members within a class

    • Companion objects can implement interfaces, extend classes, and have their own methods and properties

    • JVM static members are accessed using the class name, while companion object me

  • Answered by AI
  • Q16. How do we access companion object from Java code?
  • Ans. 

    Companion objects in Kotlin can be accessed from Java code using the @JvmStatic annotation.

    • Use the @JvmStatic annotation on companion object functions or properties to access them from Java code.

    • In Java code, access companion object members using the class name followed by the Companion keyword.

  • Answered by AI
  • Q17. Is there any Google recommendation for targetSdk version?
  • Ans. 

    Google recommends targeting the latest SDK version for better performance and security.

    • Google recommends targeting the latest stable SDK version for new apps

    • Updating targetSdkVersion can improve app performance and security

    • It is important to regularly update targetSdkVersion to stay compliant with Google Play Store policies

  • Answered by AI
  • Q18. How can we show riders location without using Map SDK?
  • Ans. 

    Use geocoding APIs to convert location data into human-readable addresses.

    • Use geocoding APIs like Google Geocoding API or OpenCage Geocoding API to convert latitude and longitude coordinates into human-readable addresses.

    • Display the address instead of a map to show the rider's location.

    • Allow riders to input their address manually if they prefer not to share their location.

  • Answered by AI
  • Q19. One coding question: Given an integer array nums sorted in non-decreasing order, remove the duplicates in place such that each unique element appears only once. The relative order of the elements should b...
  • Ans. 

    Remove duplicates from sorted array in place and return number of unique elements.

    • Use two pointers approach to iterate through the array and remove duplicates in place.

    • Keep track of the current unique element and update the array accordingly.

    • Return the count of unique elements after removing duplicates.

  • Answered by AI

Executive Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2024

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. My job experience? 3year experience of Logistic as a deo 'supervisor 'associate
  • Ans. 

    I have 3 years of experience in logistics as a supervisor associate.

    • Managed a team of employees to ensure efficient operations

    • Coordinated transportation and distribution of goods

    • Implemented strategies to optimize supply chain processes

    • Resolved any issues or delays in the logistics process

    • Utilized software systems to track inventory and shipments

  • Answered by AI
  • Q2. My self introduction My name is komal thakur I have passed 10th 12th exam from mp board and currently 1 year running from bsc from science collage my skills is deo and team hendling and operation handling
  • Q3. My family beground ?
  • Q4. My last Salary ?
  • Ans. 

    I prefer to focus on the value I can bring to this role rather than my previous salary.

    • I believe my previous salary is not relevant to my qualifications and experience for this position.

    • I am looking for a competitive salary that aligns with the responsibilities and expectations of this role.

    • I am open to discussing compensation based on the market rate and my skills and expertise.

    • I am more interested in the growth oppor...

  • Answered by AI
  • Q5. My running job for what ?

Interview Preparation Tips

Interview preparation tips for other job seekers - My job experience and my job degination

Executive Interview Questions asked at other Companies

Q1. How will you start RS method Development for known drug product?
View answer (16)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2024. There were 7 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your name
  • Ans. 

    My name is John Doe.

    • My first name is John

    • My last name is Doe

  • Answered by AI
  • Q2. Introducing ur self
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why do you want work for us?
  • Ans. 

    I am impressed by your company's innovative approach to data analysis and want to be a part of your team.

    • I admire your company's reputation in the industry

    • I am excited about the opportunity to work on cutting-edge projects

    • I believe my skills and experience align well with the company's goals

  • Answered by AI
  • Q2. What are you strength
  • Ans. 

    My strengths include strong analytical skills, attention to detail, and the ability to communicate complex data effectively.

    • Strong analytical skills - able to interpret and analyze data effectively

    • Attention to detail - meticulous in reviewing and ensuring accuracy of data

    • Effective communication of complex data - able to present findings in a clear and understandable manner

  • Answered by AI
Round 3 - Group Discussion 

Involve working through a business problem or scenario with the interviewer to reach a logical conclusions

Round 4 - HR 

(2 Questions)

  • Q1. Introducing your self
  • Q2. Tell me about your self
  • Ans. 

    I am a data analyst with a strong background in statistics and data visualization.

    • Experienced in using statistical tools such as R and Python

    • Skilled in creating insightful data visualizations using Tableau

    • Proficient in SQL for data querying and manipulation

    • Strong analytical and problem-solving skills

    • Excellent communication and presentation abilities

  • Answered by AI
Round 5 - Aptitude Test 

Employers will set this type of test if they need to hire a person with excellent logical skills.

Round 6 - Coding Test 

Code testing refers to running each line of code with a controlled input, and verifying if it performs the expected output

Round 7 - Technical 

(2 Questions)

  • Q1. Introducing the same time
  • Q2. Telling me about company

Interview Preparation Tips

Topics to prepare for XpressBees Data Analyst interview:
  • Business Development
Interview preparation tips for other job seekers - Identify Your Career Goals. ...
2. Dedicate Time to the Search. ...
3. Don't Limit Your Search to Online Resources. ...
4. Make Networking Part of Your Everyday Life. ...
5. Keep Yourself Busy. ...
6. Optimize Your LinkedIn Profile. ...
7. Use Several Job-Search Websites. ...

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Branch Incharge Interview Questions & Answers

user image Alok Sutradhar

posted on 6 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. CTC, SKILLS, EXPERIENCE, LAST MILE, COD , OFD TARGET , CONVERSATION
  • Q2. Preferred Location

Branch Incharge Interview Questions asked at other Companies

Q1. What are the parameters you follow when you close a sale
View answer (1)

XpressBees interview questions for popular designations

 Operations Executive

 (12)

 Supervisor

 (8)

 Executive

 (7)

 Senior Executive

 (7)

 Management Trainee

 (5)

 Operations Manager

 (5)

 Cluster Manager

 (4)

 Software Developer

 (4)

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

(5 Questions)

  • Q1. Tell about yourself
  • Ans. 

    Experienced operations manager with a proven track record of optimizing processes and leading teams to success.

    • Over 5 years of experience in operations management

    • Skilled in process improvement and team leadership

    • Successfully implemented cost-saving measures at previous company

    • Strong communication and problem-solving skills

    • Bachelor's degree in Business Administration

  • Answered by AI
  • Q2. Tell about your previous experience and organization
  • Ans. 

    I have over 5 years of experience in managing operations at a multinational corporation.

    • Managed a team of 20 employees to ensure smooth operations

    • Implemented new processes to increase efficiency by 15%

    • Collaborated with cross-functional teams to achieve company goals

  • Answered by AI
  • Q3. Why you want to change your present job
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic work environment.

    • Desire for career advancement

    • Looking for new challenges and learning opportunities

    • Seeking a more dynamic work environment

    • Want to broaden skill set and experience

    • Interested in exploring different industry sectors

  • Answered by AI
  • Q4. Tell about First mile and last mile operation
  • Ans. 

    First mile and last mile operations refer to the initial and final stages of a transportation or logistics process.

    • First mile operation involves the movement of goods from the point of origin to a transportation hub or facility.

    • Last mile operation involves the delivery of goods from the transportation hub or facility to the final destination.

    • Efficient first and last mile operations are crucial for ensuring timely and c...

  • Answered by AI
  • Q5. Tell about family background and expected CTC
  • Ans. 

    I come from a close-knit family with a background in business. I am looking for a competitive salary based on industry standards and my experience.

    • Family background: Close-knit family with a history in business

    • Expected CTC: Competitive salary based on industry standards and experience

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare yourself and be ready with positive mindset recap on your entire journey of education and experience answers with confidence and sequence

Operations Manager Interview Questions asked at other Companies

Q1. That, if a student, who passed 12th and doesn't want to study further so how would you convince him to study more
View answer (5)

Get interview-ready with Top XpressBees Interview Questions

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Company policy and salary details
Round 2 - Behavioral 

(2 Questions)

  • Q1. Self introduction
  • Q2. Basic accounting
Round 3 - Technical 

(2 Questions)

  • Q1. Account concept
  • Q2. Company information

Key Accounts Executive Interview Questions asked at other Companies

Q1. Introduction Why Sales? situational base selling a produt ( lady perfume to a men ) difference between marketing and sales ? relocation comfortable with field related questions
View answer (1)

Jobs at XpressBees

View all
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Voting Algo n/2 element

Interview Preparation Tips

Interview preparation tips for other job seekers - Horrible interviewers

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Operation related questions they asking
  • Q2. What do you know about last mile operation
  • Ans. 

    Last mile operation refers to the final step in the delivery process, from a distribution center to the end customer.

    • Last mile operation is crucial for customer satisfaction and retention.

    • It involves the transportation of goods from a warehouse or distribution center to the customer's doorstep.

    • Efficient last mile operations require optimized routes, real-time tracking, and effective communication with customers.

    • Compani...

  • Answered by AI

Operations Executive Interview Questions asked at other Companies

Q1. What is the electric current? How is works ?
View answer (29)

Supervisor Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Excel questions 

(2 Questions)

  • Q1. What is vlookup
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value from another column.

    • VLOOKUP stands for 'Vertical Lookup'

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...

  • Answered by AI
  • Q2. What is hlookup
  • Ans. 

    HLOOKUP is a function in Excel used to search for a value in the top row of a table and return a value in the same column from a specified row.

    • Used in Excel to search for a value in the top row of a table

    • Returns a value in the same column from a specified row

    • Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

    • Example: =HLOOKUP(A2, B1:E4, 3, FALSE) - searches for value in A2 in the top row of the t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

Skills evaluated in this interview

Top XpressBees Supervisor Interview Questions and Answers

Q1. What is an FIFO what is an LIFO
View answer (16)

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? & what is mean by eCommerce ? How it can do
View answer (10)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Nodejs life cycle
  • Q2. Promise in nodejs
  • Ans. 

    Promise in Node.js is an object representing the eventual completion or failure of an asynchronous operation.

    • Used to handle asynchronous operations in a more readable and manageable way

    • Can be in one of three states: pending, fulfilled, or rejected

    • Can be chained together to handle multiple asynchronous operations sequentially

    • Example: fetching data from a database using a promise-based API

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

XpressBees Interview FAQs

How many rounds are there in XpressBees interview?
XpressBees interview process usually has 2-3 rounds. The most common rounds in the XpressBees interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for XpressBees 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 XpressBees. The most common topics and skills that interviewers at XpressBees expect are MIS Reporting, Quality Check, Operations, SQL and Customer Service.
What are the top questions asked in XpressBees interview?

Some of the top questions asked at the XpressBees interview -

  1. What is an FIFO what is an L...read more
  2. What is First Mile & Last Mile Connectivity in Supply Cha...read more
  3. What is Excel vlookup? Practically explain on the given data she...read more
How long is the XpressBees interview process?

The duration of XpressBees interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

XpressBees Interview Process

based on 42 interviews in last 1 year

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 441 Interviews
Siemens Interview Questions
4.1
 • 421 Interviews
Ecom Express Interview Questions
3.9
 • 191 Interviews
DTDC Express Interview Questions
3.8
 • 139 Interviews
GATI-KWE Interview Questions
4.0
 • 85 Interviews
Rivigo Interview Questions
3.9
 • 72 Interviews
Wow Express Interview Questions
3.0
 • 2 Interviews
View all

XpressBees Reviews and Ratings

based on 2.1k reviews

3.7/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.3

Salary

3.4

Job security

3.3

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 2.1k Reviews and Ratings
Executive- Last Mile- Kanchipuram

Kancheepuram

2-6 Yrs

₹ 3-4 LPA

Executive - Last Mile

Thane,

Mumbai

1-2 Yrs

₹ 3-4 LPA

Hiring For B2C First Mile- AM- Rajkot

Rajkot

5-8 Yrs

₹ 6-7 LPA

Explore more jobs
Senior Executive
345 salaries
unlock blur

₹1.9 L/yr - ₹7.1 L/yr

Operations Executive
286 salaries
unlock blur

₹2 L/yr - ₹5.3 L/yr

Supervisor
266 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Executive
252 salaries
unlock blur

₹1.8 L/yr - ₹4.8 L/yr

Associate Manager
186 salaries
unlock blur

₹4.6 L/yr - ₹11 L/yr

Explore more salaries
Compare XpressBees with

Delhivery

3.9
Compare

Ecom Express

3.9
Compare

Shadowfax Technologies

3.6
Compare

Rivigo

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