Upload Button Icon Add office photos

Filter interviews by

Vastra App Interview Questions and Answers

Updated 30 Aug 2022

Vastra App Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. About your past job and field backround and base of old job, family background & last the itself like ambition box means your ambition

Interview Preparation Tips

Interview preparation tips for other job seekers - Give the answer without fear open your full view of question and answer realized and grow up u r ambition

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (50)

Jobs at Vastra App

View all

Interview questions from similar companies

Android SDE 1 Interview Questions & Answers

XpressBees 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
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

General SQL questions, Window Functions, Agg Functions, Case statement logic building

Round 2 - Assignment 

SQL assignment, easier than 1st round

Round 3 - One-on-one 

(3 Questions)

  • Q1. Based on Past and current Experience
  • Q2. Project Discussion
  • Q3. Metrics Development
Round 4 - One-on-one 

(2 Questions)

  • Q1. Head of Analytics Round
  • Q2. Project discussion and case studies

Interview Preparation Tips

Topics to prepare for LivSpace Business Analyst interview:
  • SQL
  • Projects that you worked on
  • Excel
  • Guesstimates
Interview preparation tips for other job seekers - One of the Business Analyst Approached me for this post, I have accepted the proposal and I have sent the resume to the person they called after 2 days and scheduled a call on a Friday evening I attended the interview 1st round 7out of 7 questions were answered, next round was SQL assignment which is piece of cake for me, because i have already mastered the SQL, Excel and BI tools from my experience in past and current company, 3rd round was with the immediate manager round which was rescheduled because of bandwidth issue of that manager so it happened in the next day, I was discussing about the current role and daily routines and responsibilities throughout my career she is ok with it and she asked me where are located at and I said my place which is my hometown place where I was working remotely and she said "kya Homelane(current company) mein bhi wfh Chal rah hai kya?". I said yes and she asked me that If I send you the offer letter you should definitely join our company and then i said yes I will join you and after 2 days I got a call from HR stating that there is one more round where you will be having discussion with Head of Analytics I said yes and they scheduled a call, I was explaining about the projects that I have worked and everything he was ok with that and asked me, I can offer you the job but you have to come to office and I told him that I have a family situation where I cannot move from my place to Bengaluru and I also told him that if you have doubt on my productivity you can ask my previous and current company(with blind guts) he told that, it is not the problem and it is the policy which they follow in their company, which totally shocked me, they have 2 different answers(tongues), One of their manager said that she is working from home and this guy was telling me the company policy is working from office, which is not a good sign of a company as if you are candidate and also he asked me what is your current ctc I told him that this is the current CTC and he asked what is your expected CTC, I told him that I am holding an offer from a company as a product data analyst and they are offering certain amount and he asked me that if you are holding a job why are you searching a job I told him that it was a 6 days work job and also its a US shift job, he again said that he wanted me to come to office I politely said no to him, and he just waited for 30 seconds for my reply I didn't say anything so he left the meet......... Now moral of the story is that, I proved him that I am a confident, capable, beneficial and a perfect candidate for his requirement and I am working for his rival company already where I can bring experience which was demonstrated in my past & current role to improve the standards of the company, so from his perspective I want to be his workhorse near him and I will never get compensated as per my standards as well.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

A Housekeeping Attitude Test evaluates an individual's qualities, skills, and mindset essential for housekeeping roles. It focuses on:

1. Cleanliness Awareness – Understanding hygiene and maintaining standards.


2. Behavior and Attitude – Being polite and professional with guests.


3. Time Management – Completing tasks efficiently.


4. Teamwork – Collaborating well with colleagues.


5. Problem-Solving – Handling issues calmly under pressure.


6. Client Satisfaction – Meeting guests' needs effectively.

Round 2 - Case Study 

A housekeeping case study is a practical scenario used to assess problem-solving, decision-making, and operational skills in housekeeping.

Example:

A guest complains about dirty linens and odors in a fully booked hotel. The test evaluates how you:

1. Resolve the guest's issue immediately.


2. Maintain cleanliness standards.


3. Manage staff workload effectively.


4. Prevent future issues

Round 3 - HR 

(1 Question)

  • Q1. The HR duties for housekeeping include managing and supporting housekeeping staff to ensure efficient operations and a clean, hygienic environment. Key responsibilities are: 1. Recruitment and Staffing H...

Interview Preparation Tips

Interview preparation tips for other job seekers - Housekeeping Incharge seeking to enhance operational efficiency and maintain the highest standards of cleanliness and hospitality services.

Cloud Data Engineer II Interview Questions & Answers

MathCo user image ABHISHEK JHA

posted on 27 Nov 2024

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. End to end architecture of current project
  • Q2. Basic spark code to read & write files
  • Q3. How to upsert data in table in spark
  • Q4. How do you handle sudden increase in data volume
  • Q5. Discussion on delta tables & ACID transactions
  • Q6. Explain autoloader and use case in Databricks
  • Q7. SQL question using window functions Lead, row number
  • Q8. Python question using hashmap & String
Round 2 - One-on-one 

(4 Questions)

  • Q1. Current project understanding end to end
  • Q2. Data pipeline design for a ride sharing company, ask bunch of follow up questions on the conclude a particular design.
  • Q3. Explain how you follow SDLC(Agile, waterfall) ?
  • Q4. Why are you looking for a change now
Round 3 - HR 

(4 Questions)

  • Q1. Basic introductions
  • Q2. What kind of work are you looking for? what do you know about the company
  • Q3. Willing to relocate?
  • Q4. Personal hobbies and aspirations

Interview Preparation Tips

Topics to prepare for MathCo Cloud Data Engineer II interview:
  • Spark
  • Python
  • SQL
  • System Design
  • Data Architecture
  • Streaming
Interview preparation tips for other job seekers - I had a brilliant experience interviewing at MathCo, Had awesome interviewers who push you thinking capabilities. Also given that I was at the end of my notice period, following rounds were scheduled quickly.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 leetcode problem
1. house robbers
2. Reverse linkedlist

Round 2 - Technical 

(3 Questions)

  • Q1. Difference between qualifier and auto wired?
  • Q2. Abstract vs interface?
  • Q3. Exception handling in polymorphism
Round 3 - One-on-one 

(1 Question)

  • Q1. WhatsApp notification system design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How do you go about SDLC process
  • Ans. 

    I follow the Software Development Life Cycle (SDLC) process to ensure successful project delivery.

    • I start with requirements gathering and analysis to understand the project scope and objectives.

    • I then move on to design, where I create a detailed plan for how the system will be built.

    • Next, I proceed to development, where the actual coding and implementation of the system takes place.

    • After development, I conduct thorough...

  • Answered by AI
  • Q2. What are roles and responsibilities of a BA
  • Q3. How do you deduce a complex problem statement
  • Ans. 

    By breaking down the problem into smaller components and analyzing each part individually

    • Identify the key components of the problem statement

    • Break down the problem into smaller, more manageable parts

    • Analyze each part individually to understand its impact on the overall problem

    • Consider different perspectives and potential solutions

    • Collaborate with team members or stakeholders to gain additional insights

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Explain the difference between BRD and FRD
  • Ans. 

    BRD is a document that outlines business requirements, while FRD is a document that details functional requirements.

    • BRD focuses on what the business needs, while FRD focuses on how those needs will be met.

    • BRD is high-level and non-technical, while FRD is detailed and technical.

    • BRD is created before FRD in the project lifecycle.

    • Example: BRD may state the need for a customer relationship management system, while FRD will...

  • Answered by AI
  • Q2. How do you go about creating user stories, how do you allocate the points
  • Ans. 

    User stories are created by collaborating with stakeholders and allocating points based on complexity and effort required.

    • Collaborate with stakeholders to gather requirements and understand user needs

    • Break down features into smaller, manageable user stories

    • Prioritize user stories based on business value and dependencies

    • Allocate points based on complexity, effort, and risk involved

    • Use techniques like Planning Poker to a

  • Answered by AI
  • Q3. What is the SOP while creating a requirement gathering doc
  • Ans. 

    The SOP for creating a requirement gathering doc involves planning, interviewing stakeholders, documenting requirements, and obtaining approval.

    • Plan the requirement gathering process by identifying stakeholders and their needs

    • Conduct interviews with stakeholders to gather detailed requirements

    • Document the requirements in a clear and organized manner

    • Obtain approval from stakeholders to ensure alignment with business goa

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. How proficient are you with using tools such as Jira, Cofluence, SQL
  • Ans. 

    I am highly proficient in using Jira, Confluence, and SQL for various business analysis tasks.

    • I have extensive experience using Jira for project management, issue tracking, and agile development.

    • I am skilled in using Confluence for documentation, collaboration, and knowledge sharing within teams.

    • I have strong SQL skills for data analysis, querying databases, and generating reports.

    • I have used these tools in previous pr...

  • Answered by AI
  • Q2. How do you handle disagreements within internal stakeholders
  • Q3. What values do you look in a collegue
  • Ans. 

    I look for values such as integrity, teamwork, communication, and adaptability in a colleague.

    • Integrity - honesty, trustworthiness, and ethical behavior

    • Teamwork - collaboration, support, and willingness to help others

    • Communication - clear and effective communication skills

    • Adaptability - ability to adjust to changing circumstances and problem-solve

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Senior Business Analyst interview:
  • Insurance
  • Requirement Analysis
  • Stakeholder Management
Interview preparation tips for other job seekers - Regular Business Analyst questions as found on the web, be yourself, answer what you know and tell you don't if you can't answer.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

This is good experience 👍

Round 2 - Group Discussion 

This is good experience 👍 bhut hi accha rha h

Round 3 - One-on-one 

(5 Questions)

  • Q1. Aapka naam kya hai
  • Q2. Aapke pass phone hai laptop hai
  • Q3. Aap kahan se Hain
  • Q4. Aap is job ko kar payenge
  • Q5. Aapke yahan per net theek chalta hai

SZM Interview Questions & Answers

Shadowfax Technologies user image Anonymous

posted on 29 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate and dedicated individual with a background in marketing and a love for travel.

    • Background in marketing

    • Passionate and dedicated individual

    • Love for travel

  • Answered by AI
  • Q2. Tell me about your work responsibilities in your last company
  • Ans. 

    Managed a team of 10 employees, oversaw project timelines, and reported to upper management.

    • Managed a team of 10 employees

    • Oversaw project timelines

    • Reported to upper management

  • Answered by AI
  • Q3. Project regarding Rider hiring
  • Ans. 

    The project involves hiring riders for a specific purpose or service.

    • Define the specific requirements for the riders, such as experience, skills, and availability.

    • Create a recruitment strategy to attract potential riders, including job postings and outreach efforts.

    • Implement a selection process to evaluate candidates based on their qualifications and fit for the role.

    • Train the selected riders on the job responsibilitie...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Job Responsibilities
  • Q2. Project name
  • Ans. 

    The project name is 'InnovateX'

    • The project aims to promote innovation and creativity

    • It involves collaboration with various stakeholders

    • Examples: InnovateX Hackathon, InnovateX Innovation Lab

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well versed about your job Description in your last company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Assignment 

Create a plan with xyz budget and showcase optimisation skills

Round 2 - One-on-one 

(3 Questions)

  • Q1. Total years of work ex
  • Q2. Expertise in the domain applied for
  • Q3. Any relevant contacts in the industry
  • Ans. 

    Yes, I have a strong network of contacts in the industry including suppliers, vendors, and industry professionals.

    • I have built relationships with key suppliers who provide quality products at competitive prices.

    • I regularly attend industry events and conferences to network with other professionals and stay updated on industry trends.

    • I am a member of industry-specific organizations where I have connected with industry le...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Salary discussion and negation scope
  • Q2. Variable pay discussion

Vastra App Interview FAQs

How many rounds are there in Vastra App interview?
Vastra App interview process usually has 1 rounds. The most common rounds in the Vastra App interview process are HR.
How to prepare for Vastra App 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 Vastra App. The most common topics and skills that interviewers at Vastra App expect are IT Sales, Lead Generation, Software Sales, B2B Sales and Field Sales.

Tell us how to improve this page.

People are getting interviews through

based on 1 Vastra App interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 356 Interviews
Whitehat jr Interview Questions
3.5
 • 311 Interviews
ElasticRun Interview Questions
3.5
 • 244 Interviews
Oyo Rooms Interview Questions
3.3
 • 226 Interviews
upGrad Interview Questions
3.7
 • 204 Interviews
Unacademy Interview Questions
3.0
 • 202 Interviews
XpressBees Interview Questions
3.7
 • 152 Interviews
Razorpay Interview Questions
3.6
 • 151 Interviews
LivSpace Interview Questions
3.6
 • 135 Interviews
View all

Vastra App Reviews and Ratings

based on 8 reviews

4.7/5

Rating in categories

4.9

Skill development

4.6

Work-Life balance

4.8

Salary & Benefits

4.7

Job Security

4.8

Company culture

4.7

Promotions/Appraisal

4.7

Work Satisfaction

Explore 8 Reviews and Ratings
Hiring For B2B Software /IT sales-Field Sales

Ludhiana,

New Delhi

+1

1-6 Yrs

₹ 2-4.25 LPA

Explore more jobs
Sales Manager
4 salaries
unlock blur

₹4.2 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Vastra App with

Oyo Rooms

3.3
Compare

Whitehat jr

3.5
Compare

CMS IT Services

3.1
Compare

ElasticRun

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview