
XpressBees

30+ XpressBees Interview Questions and Answers for Freshers
Q1. What is the different position a person can work in logistic industry?
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
Q2. What is the work of supervisor
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
Q3. What are the responsibilities of a logistician? .
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
Q4. Explain what is ASN (Advance Shipping Notice)?
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.
Q5. Explain what is supply chain management?
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
Q6. What is First Mile & Last Mile Connectivity in Supply Chain?
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
Q7. What you know about Xpressbees Logistics Pvt Limited?
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
Q8. What is Excel vlookup? Practically explain on the given data sheet.
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
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?
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
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 moreRemove 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.
Q11. How to implement Retrofit and how can we make REST calls using that?
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
Q12. Firebase Push Notifications: How can we send different push notifications to other users?
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
Q13. What is livedata? Different methods of MutableLiveData and differences between them.
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
Q14. What is ecommerce and what is logistics . Give examples of both. What is the difference between the two?
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
Q15. Can foreground services be launched if application is in background?
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.
Q16. Is there any Google recommendation for targetSdk version?
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
Q17. How can we show riders location without using Map SDK?
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.
Q18. JVM overloads and JVM static? Is there any difference in JVM static and Companion object?
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
Q19. How do we access companion object from Java code?
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.
Q20. What is SCM and Logistics?
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
Q21. What is MVVM and why is it recommended?
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
Q22. Different Coroutines launchers and differences among them.
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
Q23. HTTP interceptors and why do we need it?
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
Q24. What is Supply Chain?
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
Q25. Where is you legal approach
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
Q26. What are the configuration changes?
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.
Q27. Q.2 Is it helpful in your future ?
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
Q28. Can you travel all Haryana
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.
Q29. Difference between lateinit and lazy.
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
Q30. Supervisor Scope Vs Coroutine Scope.
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.
Q31. All vehicles on time release
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
Q32. MVVM project folder structure.
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
Top HR Questions asked in XpressBees for Freshers
Interview Process at XpressBees for Freshers

Top Interview Questions from Similar Companies








Reviews
Interviews
Salaries
Users/Month

