AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
Premium Employer

i

This company page is being actively managed by Vyapar Team. If you also belong to the team, you can get access from here

Vyapar Verified Tick Work with us arrow

Compare button icon Compare button icon Compare
3.5

based on 433 Reviews

  • Why join us
  • Reviews
    433
  • Salaries
    1.6k
  • Interviews
    60
  • Jobs
    47
  • Benefits
    39
  • Photos
    5

Filter interviews by

Vyapar Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

26 Interview questions

A Customer Support Executive was asked 1mo ago
Q. How many languages can you speak?
Ans. 

I am fluent in multiple languages, which enhances my ability to assist diverse customers effectively.

  • I speak English fluently, which is essential for most customer interactions.

  • I also speak Spanish, allowing me to assist Spanish-speaking customers.

  • Additionally, I have conversational skills in French, which can help in specific situations.

  • Being multilingual helps in understanding cultural nuances and improving cust...

View all Customer Support Executive interview questions
An Accountant Cashier was asked 4mo ago
Q. How do you handle cash transactions and maintain accurate records?
Ans. 

I ensure accurate cash handling through meticulous record-keeping and systematic reconciliation processes.

  • Use a cash register or point-of-sale system to record each transaction accurately.

  • Count cash at the beginning and end of each shift to ensure accountability.

  • Maintain a daily cash log to track all cash inflows and outflows.

  • Reconcile cash at the end of the day with sales receipts to identify discrepancies.

  • Implem...

View all Accountant Cashier interview questions
An Accountant Cashier was asked 4mo ago
Q. How would you manage discrepancies in financial records?
Ans. 

I would systematically investigate discrepancies, ensuring accuracy and transparency in financial records.

  • Identify the source of the discrepancy by reviewing transaction records and receipts.

  • Cross-check entries against bank statements to find inconsistencies.

  • Communicate with relevant departments or individuals to gather additional information.

  • Document all findings and adjustments made to maintain a clear audit tra...

View all Accountant Cashier interview questions
An Inside Sales Executive was asked 5mo ago
Q. How do you persuade customers to purchase Vyapar software when there are cheaper alternatives available?
Ans. 

By highlighting the unique features and benefits of Vyapar software, showcasing its value proposition, and offering personalized support and training, customers can be persuaded to choose it over cheaper alternatives.

  • Highlight the unique features and benefits of Vyapar software that set it apart from cheaper alternatives

  • Showcase the value proposition of Vyapar software, such as its user-friendly interface, customi...

View all Inside Sales Executive interview questions
A Data Analyst was asked 6mo ago
Q. Select *, sum(amt) over (partition by customer) as total_amt from t2
Ans. 

The query selects all columns and calculates the total amount for each customer in table t2.

  • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

  • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

  • The 'select *' statement selects all columns from the table along with the calculated total amount.

  • The 'sum(amt) over (pa...

View all Data Analyst interview questions
A Data Analyst was asked 6mo ago
Q. How many customers purchased the same item on the same day more than once?
Ans. 

To find customers who purchased the same item multiple times on the same day.

  • Identify unique customers who purchased the same item multiple times on the same day

  • Check for duplicate transactions by customer and item on the same day

  • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

View all Data Analyst interview questions
A Data Analyst was asked 7mo ago
Q. What is the difference between the HAVING and WHERE clauses in SQL?
Ans. 

In SQL, 'HAVING' is used with GROUP BY to filter groups, while 'WHERE' is used to filter rows before grouping.

  • HAVING is used with GROUP BY to filter groups based on aggregate functions

  • WHERE is used to filter rows before grouping

  • HAVING is used after GROUP BY in the query, while WHERE is used before GROUP BY

  • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

  • Examp...

View all Data Analyst interview questions
Are these interview questions helpful?
A Data Engineer was asked 10mo ago
Q. How does BigQuery work?
Ans. 

BigQuery is a fully-managed, serverless data warehouse that enables scalable analysis over petabytes of data.

  • BigQuery uses a distributed architecture to process and analyze large datasets quickly.

  • It allows users to run SQL-like queries on datasets stored in Google Cloud Storage.

  • BigQuery automatically scales to handle large amounts of data and can be integrated with other Google Cloud services.

  • It supports real-time...

View all Data Engineer interview questions
A Data Engineer was asked 10mo ago
Q. How do you productionize Data Pipelines?
Ans. 

To productinize Data Pipelines, one must automate, monitor, and scale the pipeline for efficient and reliable data processing.

  • Automate the data pipeline using tools like Apache Airflow or Kubernetes

  • Monitor the pipeline for errors, latency, and data quality issues using monitoring tools like Prometheus or Grafana

  • Scale the pipeline by optimizing code, using distributed computing frameworks like Spark, and leveraging...

View all Data Engineer interview questions
A Data Analyst was asked 10mo ago
Q. Describe a time when you were given tables in Google Sheets and had to write basic-level queries using CTEs, aggregate functions, and lead/lag functions.
Ans. 

Basic SQL queries using CTEs, aggregate functions, and window functions like LEAD and LAG in Google Sheets.

  • CTE (Common Table Expression) allows you to define a temporary result set. Example: WITH SalesCTE AS (SELECT * FROM Sales) SELECT * FROM SalesCTE;

  • Aggregate functions like COUNT, SUM, AVG help summarize data. Example: SELECT COUNT(*) FROM Orders WHERE Status = 'Completed';

  • LEAD function retrieves the next row's...

View all Data Analyst interview questions
1 2 3

Vyapar Interview Experiences

60 interviews found

Accounts Manager Interview Questions & Answers

user image Satya Prakash Jena

posted on 23 Feb 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

If someone is considering an insider trade in Vyapar, it is a poor choice.

Round 2 - Aptitude Test 

The interviewer will administer an aptitude test, and those who pass will proceed to the final round.

Round 3 - One-on-one 

(4 Questions)

  • Q1. Some basic questions about sell, how to make company growth, give 3 benefits of sell
  • Add your answer
  • Q2. Previous Internship experience.
  • Ans. 

    I completed a 6-month internship at XYZ Company where I gained hands-on experience in accounts receivable and payable.

    • Managed accounts receivable and payable processes

    • Assisted in preparing financial statements

    • Performed reconciliations of bank statements

    • Utilized accounting software such as QuickBooks

    • Collaborated with team members on various projects

  • Answered by AI
    Add your answer
  • Q3. How much revenue contribution towards the our company within one month
  • Ans. 

    I cannot provide an exact figure without access to the company's financial records.

    • I would need to review the company's financial statements to determine the revenue contribution.

    • Factors such as sales, expenses, and profit margins would all play a role in calculating the revenue contribution.

    • It is important to consider both direct and indirect revenue sources when assessing the overall contribution to the company.

  • Answered by AI
    Add your answer
  • Q4. Why you are interested to be joining as a sells person
  • Ans. 

    I am interested in joining as a salesperson because I enjoy interacting with customers and helping them find solutions to their needs.

    • I have a passion for building relationships with clients and meeting sales targets.

    • I have a strong understanding of the products/services being offered and can effectively communicate their benefits to customers.

    • I enjoy the challenge of identifying customer needs and providing tailored s...

  • Answered by AI
    Add your answer
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Hacker Rank SQL Questions 2 . and 10 MCQ based

Round 2 - Technical 

(3 Questions)

  • Q1. Select customer, sum(amt ) as total_amt from t1 group by customer how many no. of rows it will return and explain this table t1 column name-> dept customer item amt
  • Add your answer
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Ans. 

    The query selects all columns and calculates the total amount for each customer in table t2.

    • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

    • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

    • The 'select *' statement selects all columns from the table along with the calculated total amount.

    • The 'sum(amt) over (partiti...

  • Answered by AI
    Add your answer
  • Q3. How many Customers has purchased same item on the Same day more than onnce
  • Ans. 

    To find customers who purchased the same item multiple times on the same day.

    • Identify unique customers who purchased the same item multiple times on the same day

    • Check for duplicate transactions by customer and item on the same day

    • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql and solve questiosn without seeing answers
Anonymous

Accountant Cashier Interview Questions & Answers

user image Afsar Ahmad

posted on 19 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Suggestions based on the role: What are the key features of Vyapar App, and how does it help in accounting?
  • Ans. 

    Vyapar App streamlines accounting with features like invoicing, inventory management, and expense tracking for small businesses.

    • User-friendly interface for easy navigation and quick access to features.

    • Invoicing: Create and send professional invoices in seconds, helping to maintain cash flow.

    • Inventory Management: Track stock levels and manage inventory efficiently to avoid overstocking or stockouts.

    • Expense Tracking: Rec...

  • Answered by AI
    Add your answer
  • Q2. How do you handle cash transactions and maintain accurate records?
  • Ans. 

    I ensure accurate cash handling through meticulous record-keeping and systematic reconciliation processes.

    • Use a cash register or point-of-sale system to record each transaction accurately.

    • Count cash at the beginning and end of each shift to ensure accountability.

    • Maintain a daily cash log to track all cash inflows and outflows.

    • Reconcile cash at the end of the day with sales receipts to identify discrepancies.

    • Implement a...

  • Answered by AI
    Add your answer
  • Q3. How would you manage discrepancies in financial records
  • Ans. 

    I would systematically investigate discrepancies, ensuring accuracy and transparency in financial records.

    • Identify the source of the discrepancy by reviewing transaction records and receipts.

    • Cross-check entries against bank statements to find inconsistencies.

    • Communicate with relevant departments or individuals to gather additional information.

    • Document all findings and adjustments made to maintain a clear audit trail.

    • Im...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - For job seekers applying to Vyapar, I recommend understanding the core functionalities of the Vyapar App, especially its accounting and invoicing features. Be well-versed in accounting software like Tally Prime and Excel, as they are commonly used in this role. During the interview, highlight your data entry accuracy, financial management skills, and ability to handle transactions efficiently. Also, be confident and communicate clearly, as the interviewers are friendly and supportive. Continuous learning and staying updated with GST and taxation rules will give you an added advantage.
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

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

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

Round 1 - Aptitude Test 

6 mcqs and 2 sql questions

Round 2 - Technical 

(5 Questions)

  • Q1. Difference between having and where in sql
  • Add your answer
  • Q2. Sql joins and it types
  • Add your answer
  • Q3. Window functions and subqueries
  • Add your answer
  • Q4. Sql scenario question based on joins
  • Add your answer
  • Q5. Kpi's and metrics
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Business problem related to case study
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - learn sql, problem solving,puzzles,kpi's and metrics

Skills evaluated in this interview

Anonymous

Inside Sales Executive Interview Questions & Answers

user image Anonymous

posted on 5 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. 3round of interview
  • Add your answer
  • Q2. Complaint need to register against this
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Sales questions
  • Add your answer
  • Q2. Nothing
  • Add your answer
Round 3 - Behavioral 

(1 Question)

  • Q1. Don't go for this company..very bad
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing have to say about this company
Anonymous

Inside Sales Executive Interview Questions & Answers

user image Arko Jyati Garai

posted on 11 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your motivation for wanting to join Vyapar?
  • Ans. 

    I am motivated to join Vyapar because of its innovative solutions and strong reputation in the industry.

    • I am impressed by Vyapar's track record of success in providing effective solutions to businesses.

    • I am excited about the opportunity to work with a dynamic and talented team at Vyapar.

    • I believe that Vyapar's values align with my own professional goals and aspirations.

    • I am eager to contribute to Vyapar's continued gro...

  • Answered by AI
    Add your answer
  • Q2. How do you persuade customers to purchase Vyapar software when there are cheaper alternatives available?
  • Ans. 

    By highlighting the unique features and benefits of Vyapar software, showcasing its value proposition, and offering personalized support and training, customers can be persuaded to choose it over cheaper alternatives.

    • Highlight the unique features and benefits of Vyapar software that set it apart from cheaper alternatives

    • Showcase the value proposition of Vyapar software, such as its user-friendly interface, customizatio...

  • Answered by AI
    Add your answer
  • Q3. Can you provide a brief introduction about yourself?
  • Ans. 

    Experienced inside sales executive with a proven track record of exceeding sales targets and building strong client relationships.

    • Over 5 years of experience in inside sales roles

    • Consistently met or exceeded sales targets by 20% each quarter

    • Skilled in building and maintaining strong client relationships

    • Proficient in CRM software such as Salesforce

    • Strong communication and negotiation skills

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Can you provide your introduction?
  • Ans. 

    Experienced inside sales executive with a proven track record of exceeding sales targets and building strong client relationships.

    • Over 5 years of experience in inside sales roles

    • Consistently met or exceeded sales targets by 20% each quarter

    • Developed and maintained relationships with key clients, resulting in a 30% increase in repeat business

    • Proficient in CRM software and sales analytics tools

  • Answered by AI
    Add your answer
  • Q2. Why do you want to pursue a career in sales?
  • Ans. 

    I am passionate about building relationships, meeting new people, and helping customers find solutions to their needs.

    • Enjoy interacting with people and building relationships

    • Excited about helping customers find solutions

    • Thrilled by the challenge of meeting sales targets

  • Answered by AI
    Add your answer
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Assignment 

HackerEarth based assessment.
1. 8 qs were stats & prob based multiples choices
2. 2 were medium level sql questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Started with basic sql question like diff btw nosql & sql, join etc
  • Add your answer
  • Q2. Table were given in google sheet & had to write basic level queries on them eg. cte's, agg function, lead & lag func
  • Ans. 

    Basic SQL queries using CTEs, aggregate functions, and window functions like LEAD and LAG in Google Sheets.

    • CTE (Common Table Expression) allows you to define a temporary result set. Example: WITH SalesCTE AS (SELECT * FROM Sales) SELECT * FROM SalesCTE;

    • Aggregate functions like COUNT, SUM, AVG help summarize data. Example: SELECT COUNT(*) FROM Orders WHERE Status = 'Completed';

    • LEAD function retrieves the next row's valu...

  • Answered by AI
    Add your answer
Round 3 - Behavioral 

(2 Questions)

  • Q1. The interviewer was not serious at all, asked silly quizzes instead of business case study, KPI & metrics
  • Add your answer
  • Q2. Prepare for logical reasoning
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Study A/B testing, Hypothesis testing & logical reasoning (quizzes)
Anonymous

Customer Support Specialist Interview Questions & Answers

user image Priyanka Chandra

posted on 26 Nov 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 Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mathematical questions was given for aptitude test which is basic if you know formulas pretty well u can easily score

Round 2 - One-on-one 

(2 Questions)

  • Q1. Situation based
  • Add your answer
  • Q2. General knowledge of accounting
  • Add your answer
Anonymous

Customer Success Specialist Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

Maths such as time calculation, percentage, etc

Round 2 - Aptitude Test 

How did I solved that qestion asked me to explain

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself and previous expriences, etc
  • Ans. 

    I am a dedicated Customer Success Specialist with 5 years of experience in managing client relationships and ensuring customer satisfaction.

    • Managed a portfolio of key accounts, providing personalized support and resolving any issues or concerns

    • Implemented strategies to increase customer retention and loyalty

    • Collaborated with cross-functional teams to deliver solutions tailored to customer needs

    • Utilized CRM software to ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - For Temporary you can join
Anonymous

Business Development Executive Management Trainee Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Can you introduce yourself?
  • Ans. 

    Dynamic business development professional with a passion for driving growth and building strategic partnerships.

    • Background in business administration with a focus on marketing and sales strategies.

    • Experience in identifying new market opportunities, such as launching a successful product line that increased revenue by 20%.

    • Strong communication skills, demonstrated through successful negotiations with key clients, resulti...

  • Answered by AI
    Add your answer
  • Q2. Do you have any experience related to this field?
  • Ans. 

    I have gained relevant experience through internships and projects that enhanced my skills in business development and client relations.

    • Completed an internship at XYZ Corp, where I assisted in market research and identified potential clients.

    • Participated in a university project that involved developing a business plan for a startup, focusing on market entry strategies.

    • Volunteered for a non-profit organization, helping ...

  • Answered by AI
    Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Vyapar?
Ask anonymously on communities.
More about working at Vyapar
  • HQ - Bengaluru/Bangalore, Karnataka, India
  • Software Product
  • 501-1k Employees (India)
  • FinTech

Vyapar Interview FAQs

How many rounds are there in Vyapar interview?
Vyapar interview process usually has 2-3 rounds. The most common rounds in the Vyapar interview process are Aptitude Test, One-on-one Round and Resume Shortlist.
How to prepare for Vyapar 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 Vyapar. The most common topics and skills that interviewers at Vyapar expect are Inside Sales, Telesales, Cold Calling, B2B Sales and Sales.
What are the top questions asked in Vyapar interview?

Some of the top questions asked at the Vyapar interview -

  1. How do you persuade customers to purchase Vyapar software when there are cheape...read more
  2. if a old woman is using keypad phone and she has luxurious home then how will y...read more
  3. suggestions based on the role: What are the key features of Vyapar App, and how...read more
How long is the Vyapar interview process?

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

Tell us how to improve this page.

Vyapar Interviews By Designations

  • Vyapar Inside Sales Executive Interview Questions
  • Vyapar Customer Support Executive Interview Questions
  • Vyapar Sales Executive Interview Questions
  • Vyapar Data Analyst Interview Questions
  • Vyapar Accounts Manager Interview Questions
  • Vyapar Software Developer Interview Questions
  • Vyapar Business Development Executive Interview Questions
  • Vyapar BD Executive Interview Questions
  • Show more
  • Vyapar Customer Service Officer Interview Questions
  • Vyapar Customer Support Specialist Interview Questions

Interview Questions for Popular Designations

  • Inside Sales Executive Interview Questions
  • Customer Support Executive Interview Questions
  • Sales Executive Interview Questions
  • Data Analyst Interview Questions
  • Accounts Manager Interview Questions
  • Business Analyst Interview Questions
  • Consultant Interview Questions
  • Associate Software Engineer Interview Questions
  • Show more
  • Java Developer Interview Questions
  • System Engineer Interview Questions

Overall Interview Experience Rating

4.2/5

based on 77 interview experiences

Difficulty level

Easy 37%
Moderate 57%
Hard 6%

Duration

Less than 2 weeks 94%
2-4 weeks 3%
4-6 weeks 3%
View more
logo
Join Vyapar Join our teams and have the freedom to do your best work.

Interview Questions from Similar Companies

Celebal Technologies
Celebal Technologies Interview Questions
3.1
 • 123 Interviews
Innovaccer
Innovaccer Interview Questions
3.5
 • 86 Interviews
NoBrokerHood
NoBrokerHood Interview Questions
3.0
 • 62 Interviews
Agilysys Technologies India
Agilysys Technologies India Interview Questions
3.4
 • 55 Interviews
Ideas2IT Technologies
Ideas2IT Technologies Interview Questions
3.7
 • 50 Interviews
KEKA TECHNOLOGIES
KEKA TECHNOLOGIES Interview Questions
3.3
 • 44 Interviews
CodeClouds
CodeClouds Interview Questions
4.4
 • 42 Interviews
Grey Orange
Grey Orange Interview Questions
3.2
 • 40 Interviews
Entrata
Entrata Interview Questions
4.1
 • 40 Interviews
Mobileum
Mobileum Interview Questions
3.3
 • 38 Interviews
View all

Vyapar Reviews and Ratings

based on 433 reviews

3.5/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.6

Salary

3.1

Job security

3.4

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 433 Reviews and Ratings
Jobs at Vyapar
Vyapar
Inside Sales Executive (MBA Freshers)

Bangalore / Bengaluru

₹ 4-5 LPA

Vyapar
Business Development Executive ( Field Sales)

Bangalore / Bengaluru

0-3 Yrs

₹ 2.5-3.3 LPA

Vyapar
Field Sales Executive

Bangalore / Bengaluru

0-4 Yrs

₹ 2.8-4 LPA

Explore more jobs
Vyapar Salaries in India
Business Development Executive
142 salaries
unlock blur

₹2.8 L/yr - ₹5.5 L/yr

Inside Sales Executive
98 salaries
unlock blur

₹2.2 L/yr - ₹4.7 L/yr

Accounts Manager
90 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Team Lead
82 salaries
unlock blur

₹4 L/yr - ₹7.4 L/yr

Customer Support Executive
68 salaries
unlock blur

₹2.3 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Vyapar with
Celebal Technologies

Celebal Technologies

3.1
Compare
NoBrokerHood

NoBrokerHood

2.9
Compare
Duck Creek Technologies

Duck Creek Technologies

4.4
Compare
Ascent HR Technologies Private Limited

Ascent HR Technologies Private Limited

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Vyapar Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

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

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter