i
XpressBees
Filter interviews by
I have 3 years of experience using automated warehouse systems.
Implemented and maintained automated warehouse systems to optimize efficiency
Trained staff on how to use the automated systems effectively
Troubleshooted and resolved issues with the automated systems
Utilized data from the automated systems to improve inventory management
Our geographical area is diverse, with customers ranging from small businesses to large corporations.
Customers in our area come from various industries such as technology, healthcare, finance, and manufacturing.
We have a mix of B2B and B2C customers, each with unique needs and preferences.
Our customer base includes local businesses, national chains, and international companies with operations in the area.
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 sup...
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 deli...
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
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
I handle cash and hub operations by ensuring accurate tracking, secure handling, and efficient processes.
Implementing strict cash handling procedures to minimize errors and prevent theft
Regularly reconciling cash transactions to ensure accuracy
Supervising hub operations to ensure timely and efficient processing of shipments
Training team members on proper cash handling and hub operation protocols
Copper is a conductor of electricity.
Copper is a commonly used conductor in electrical wiring
Other examples of conductors include silver, gold, and aluminum
Conductors allow the flow of electric current through them
A step-down transformer has a single winding.
Step-down transformer has a single primary winding and multiple secondary windings
It reduces the voltage from the primary winding to the secondary winding
Example: A 120V to 12V transformer
Effective manpower handling involves strategic planning, resource allocation, and team management to optimize productivity and morale.
Assess workforce needs: Analyze current and future staffing requirements based on project demands.
Recruitment strategies: Implement targeted recruitment campaigns to attract qualified candidates, e.g., using social media platforms.
Training and development: Provide ongoing training p...
I appeared for an interview in Dec 2024, where I was asked the following questions.
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.
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...
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...
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...
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...
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...
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.
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
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...
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...
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.
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...
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...
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...
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.
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
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.
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.
I appeared for an interview in May 2025, where I was asked the following questions.
In my last LIME department, we focused on collaboration, efficiency, and innovation to enhance our operational processes.
Implemented a streamlined communication system that reduced response times by 30%.
Conducted regular team meetings to ensure alignment on goals and foster collaboration.
Utilized project management tools to track progress and allocate resources effectively.
Encouraged feedback loops, allowing team membe...
I prioritize tasks, delegate effectively, and utilize tools to streamline ground-level delivery work for maximum efficiency.
Prioritization: I use the Eisenhower Matrix to categorize tasks by urgency and importance, ensuring critical tasks are addressed first.
Delegation: I assess team strengths and delegate tasks accordingly, as seen when I assigned project components based on individual expertise.
Time Management: I imp...
I appeared for an interview in Jun 2025, where I was asked the following questions.
I worked as a Customer Support Representative at XYZ Corp, assisting clients with inquiries and resolving issues efficiently.
Handled an average of 50 customer inquiries daily, providing timely and accurate information.
Resolved customer complaints by identifying the root cause and offering effective solutions, improving satisfaction rates.
Collaborated with cross-functional teams to streamline processes, resulting in a 2...
I am looking for a competitive salary that reflects my skills and experience, ideally in the range of $X to $Y.
Research industry standards: For example, similar roles in my area typically offer between $X and $Y.
Consider my experience: With over Z years in customer service, I bring valuable skills that justify a higher salary.
Flexibility: I am open to discussing a salary that aligns with the company's budget and my qua...
I appeared for an interview in May 2025, where I was asked the following questions.
I appeared for an interview in May 2025, where I was asked the following questions.
I appeared for an interview in May 2025, where I was asked the following questions.
I appeared for an interview in May 2025, where I was asked the following questions.
I appeared for an interview in May 2025, where I was asked the following questions.
I appeared for an interview in Jun 2025, where I was asked the following questions.
I have extensive experience in project management, team leadership, and data analysis across various industries.
Led a team of 10 in a software development project, improving delivery time by 30%.
Implemented data analysis techniques that increased sales forecasting accuracy by 25%.
Managed cross-functional teams to streamline operations, resulting in a 15% reduction in costs.
Conducted training sessions for new employees,...
Top trending discussions
The duration of XpressBees interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 450 interview experiences
Difficulty level
Duration
based on 3.4k reviews
Rating in categories
Supervisor
393
salaries
| ₹1.1 L/yr - ₹3.6 L/yr |
Operations Executive
377
salaries
| ₹1.6 L/yr - ₹5.3 L/yr |
Senior Executive
377
salaries
| ₹2.5 L/yr - ₹7.1 L/yr |
Executive
289
salaries
| ₹2 L/yr - ₹5.3 L/yr |
Associate Manager
191
salaries
| ₹4.5 L/yr - ₹11 L/yr |
BYJU'S
Ericsson
Delhivery
24/7 Customer