Add office photos
XpressBees logo
Engaged Employer

XpressBees

Verified
3.6
based on 2.2k Reviews
Filter interviews by
Fresher
Experienced
Clear (1)

30+ XpressBees Interview Questions and Answers for Freshers

Updated 17 Dec 2024
Popular Designations

Q1. What is the different position a person can work in logistic industry?

Ans.

There are various positions in the logistics industry such as logistics manager, supply chain analyst, warehouse supervisor, transportation coordinator, and inventory control specialist.

  • Logistics Manager

  • Supply Chain Analyst

  • Warehouse Supervisor

  • Transportation Coordinator

  • Inventory Control Specialist

View 1 answer
right arrow

Q2. What is the work of supervisor

Ans.

Supervisors oversee and manage the work of employees to ensure tasks are completed efficiently and effectively.

  • Supervisors provide guidance and direction to employees

  • They monitor performance and provide feedback

  • Supervisors are responsible for delegating tasks and ensuring deadlines are met

  • They handle any conflicts or issues that arise among team members

  • Supervisors also play a role in training and development of employees

Add your answer
right arrow

Q3. What are the responsibilities of a logistician? .

Ans.

Responsibilities of a logistician include managing supply chain operations, coordinating transportation, and optimizing distribution processes.

  • Coordinating transportation of goods and materials

  • Managing inventory levels and storage facilities

  • Optimizing distribution processes to ensure timely delivery

  • Analyzing data to improve supply chain efficiency

  • Negotiating with suppliers and vendors for cost-effective solutions

View 3 more answers
right arrow

Q4. Explain what is ASN (Advance Shipping Notice)?

Ans.

ASN is a notification sent by a supplier to a customer providing details about a pending delivery.

  • ASN includes information such as shipment contents, expected delivery date, and carrier details.

  • Helps in planning and preparing for incoming shipments.

  • Improves supply chain visibility and efficiency.

  • Reduces receiving errors and delays.

  • Example: A supplier sends an ASN to a retailer informing them about an upcoming delivery of 100 units of product X on 15th March via ABC carrier.

View 1 answer
right arrow
Discover XpressBees interview dos and don'ts from real experiences

Q5. Explain what is supply chain management?

Ans.

Supply chain management involves the coordination and optimization of all activities involved in the production and distribution of goods and services.

  • Involves planning, sourcing, making, delivering, and returning products

  • Focuses on efficiency, cost reduction, and customer satisfaction

  • Utilizes technology and data analytics to improve processes

  • Examples include inventory management, transportation logistics, and supplier relationships

View 2 more answers
right arrow

Q6. What is First Mile & Last Mile Connectivity in Supply Chain?

Ans.

First mile & last mile connectivity refers to the transportation of goods from the point of origin to the first warehouse and from the last warehouse to the final destination.

  • First mile connectivity involves the transportation of goods from the point of origin to the first warehouse or distribution center.

  • Last mile connectivity involves the transportation of goods from the last warehouse or distribution center to the final destination.

  • Both first mile and last mile connectivit...read more

View 1 answer
right arrow
Are these interview questions helpful?

Q7. What you know about Xpressbees Logistics Pvt Limited?

Ans.

Xpressbees Logistics Pvt Limited is an Indian logistics company.

  • Xpressbees was founded in 2015 and is headquartered in Pune, India.

  • It offers logistics services such as last-mile delivery, reverse logistics, and warehousing.

  • The company has a strong presence in the e-commerce sector and works with major players like Flipkart, Amazon, and Myntra.

  • Xpressbees has a network of over 1,000 delivery centers and reaches over 20,000 pin codes in India.

  • The company has raised funding from ...read more

View 1 answer
right arrow

Q8. What is Excel vlookup? Practically explain on the given data sheet.

Ans.

Excel vlookup is a function 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 to find information in large datasets.

  • The function requires four arguments: lookup value, table array, column index number, and range lookup.

  • The lookup value is the value to search for in the first column of the table.

  • The table array is the range of cells that contains the data.

  • The column index number spe...read more

View 1 answer
right arrow
Share interview questions and help millions of jobseekers 🌟
man with laptop

Q9. 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 migration thoroughly to ensure that existing data is not lost or...read more

Add your answer
right arrow

Q10. 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 be kept...

read more
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.

Add your answer
right arrow

Q11. 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

Add your answer
right arrow

Q12. 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 notifications.

  • Consider using Firebase Cloud Functions to automate the...read more

Add your answer
right arrow

Q13. 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.

  • LiveData is commonly used in Android apps to update UI comp...read more

Add your answer
right arrow

Q14. What is ecommerce and what is logistics . Give examples of both. What is the difference between the two?

Ans.

Ecommerce is buying and selling goods or services online while logistics is the process of managing the flow of goods from the point of origin to the point of consumption.

  • Ecommerce involves online transactions between buyers and sellers, such as Amazon and eBay.

  • Logistics involves the transportation, storage, and distribution of goods, such as FedEx and UPS.

  • The difference between the two is that ecommerce focuses on the buying and selling aspect while logistics focuses on the ...read more

Add your answer
right arrow

Q15. 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.

Add your answer
right arrow

Q16. 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

Add your answer
right arrow

Q17. 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.

Add your answer
right arrow

Q18. 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 members are accessed using the class name as well

Add your answer
right arrow

Q19. 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.

Add your answer
right arrow

Q20. What is SCM and Logistics?

Ans.

SCM is the management of the flow of goods and services from the point of origin to the point of consumption, while Logistics is the process of planning, implementing, and controlling the movement of goods from the point of origin to the point of consumption.

  • SCM involves the coordination and integration of various activities such as procurement, production, transportation, and distribution.

  • Logistics includes activities such as transportation, warehousing, inventory management...read more

View 1 answer
right arrow

Q21. 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 organization, testability, and maintainability of the codebase.

  • It a...read more

Add your answer
right arrow

Q22. 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 point.

  • newSingleThreadContext - creates a new thread for corout...read more

Add your answer
right arrow

Q23. 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.

  • Examples of libraries that provide HTTP interceptors include Angu...read more

Add your answer
right arrow

Q24. What is Supply Chain?

Ans.

Supply chain is the process of managing the flow of goods and services from the point of origin to the point of consumption.

  • It involves the coordination and integration of various activities such as procurement, production, transportation, warehousing, and distribution.

  • Effective supply chain management can help reduce costs, improve efficiency, and enhance customer satisfaction.

  • Examples of supply chain include the delivery of raw materials to a factory, the production of fini...read more

Add your answer
right arrow

Q25. Where is you legal approach

Ans.

My legal approach is to prioritize compliance with laws and regulations while also considering ethical considerations.

  • I prioritize compliance with all applicable laws and regulations.

  • I ensure that security measures are implemented in accordance with legal requirements.

  • I consider ethical considerations and strive to maintain a balance between legal compliance and ethical practices.

  • I stay updated with changes in laws and regulations to ensure ongoing compliance.

  • I collaborate wi...read more

View 1 answer
right arrow

Q26. 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.

Add your answer
right arrow

Q27. Q.2 Is it helpful in your future ?

Ans.

Yes, it is helpful in my future.

  • Having a finance internship will provide me with practical experience and skills that are valuable in the finance industry.

  • It will enhance my understanding of financial concepts and processes.

  • I will have the opportunity to network with professionals in the field and potentially secure future job opportunities.

  • The internship will also allow me to apply theoretical knowledge gained in my studies to real-world scenarios.

  • I can learn about different...read more

Add your answer
right arrow

Q28. Can you travel all Haryana

Ans.

No

  • No, I cannot travel all of Haryana.

  • As a Security Executive, my responsibilities are primarily focused on ensuring the safety and security of a specific location or organization.

  • Traveling all of Haryana would require extensive time and resources, which may not align with my role and duties.

  • However, I can provide security expertise and support within the areas I am assigned to or responsible for.

View 1 answer
right arrow

Q29. 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 properties are initialized in the constructor, while lazy prope...read more

Add your answer
right arrow

Q30. 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 CoroutineScope is a built-in interface in Kotlin.

Add your answer
right arrow

Q31. All vehicles on time release

Ans.

All vehicles are released on time.

  • Efficient scheduling and coordination of vehicles

  • Regular maintenance and inspection of vehicles

  • Effective communication with drivers and clients

  • Use of technology to track and monitor vehicles

  • Proactive measures to address any delays or issues

Add your answer
right arrow

Q32. 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 network requests, database operations, etc.

  • Use subfolders...read more

Add your answer
right arrow

More about working at XpressBees

Back
Awards Leaf
AmbitionBox Logo
#20 Best Tech Startup - 2022
Awards Leaf
HQ - Pune,Maharashtra, India
Contribute & help others!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos

Interview Process at XpressBees for Freshers

based on 6 interviews
Interview experience
4.7
Excellent
View more
interview tips and stories logo
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

Deloitte Logo
3.8
 • 1.7k Interview Questions
BYJU'S Logo
3.1
 • 686 Interview Questions
Amdocs Logo
3.7
 • 403 Interview Questions
TCE Logo
3.8
 • 211 Interview Questions
Atos Logo
3.9
 • 185 Interview Questions
Bosch Logo
4.2
 • 151 Interview Questions
View all
Recently Viewed
SALARIES
Broadridge Financial Solutions
REVIEWS
PhonePe
No Reviews
SALARIES
Blinkit
SALARIES
KFintech
REVIEWS
PhonePe
No Reviews
REVIEWS
PhonePe
No Reviews
REVIEWS
Blinkit
No Reviews
SALARIES
Paisabazaar.com
JOBS
KFintech
No Jobs
REVIEWS
KFintech
No Reviews
Top XpressBees Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter