Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.5

based on 326 Reviews

Filter interviews by

Vyapar Data Analyst Interview Questions and Answers

Updated 13 Jan 2025

Vyapar Data Analyst Interview Experiences

5 interviews found

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
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Q3. How many Customers has purchased same item on the Same day more than onnce

Interview Preparation Tips

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

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
  • 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;

    • Example: S

  • Answered by AI
  • Q2. Sql joins and it types
  • Q3. Window functions and subqueries
  • Q4. Sql scenario question based on joins
  • Q5. Kpi's and metrics
Round 3 - Technical 

(1 Question)

  • Q1. Business problem related to case study

Interview Preparation Tips

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

Skills evaluated in this interview

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Suppose there is a room in the office and X people enter room thr ... read more
asked in Wipro
Q2. Chocolate ProblemGiven an array/list of integer numbers 'CHOCOLAT ... read more
asked in Wipro
Q3. Ninja and substringsNinja has been given a string 'STR' containin ... read more
Q4. Maximum In Sliding Windows Of Size KGiven an array/list of intege ... read more
asked in Tredence
Q5. First Repeated CharacterYou are given a string 'STR' of lowercase ... read more

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
  • Q2. Table were given in google sheet & had to write basic level queries on them eg. cte's, agg function, lead & lag func
Round 3 - Behavioral 

(2 Questions)

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

Interview Preparation Tips

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

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Consisted of 10 questions, 2 SQL medium level questions and remaining easy aptitude, profit loss, work time etc

Round 2 - Technical 

(2 Questions)

  • Q1. SQL visualisation
  • Q2. SQL Questions theory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be well prepared with SQL as the role required it.

Vyapar interview questions for designations

 Data Analytics Analyst

 (1)

 Data Engineer

 (1)

 Customer Support Executive

 (5)

 Sales Executive

 (5)

 Customer Support Specialist

 (2)

 Business Development Executive

 (2)

 BD Executive

 (2)

 Customer Service Associate

 (1)

Data Analyst Interview Questions & Answers

user image Shekhar Bisht

posted on 24 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on self join

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

SQL+CODING QUESTIONS

Round 2 - Technical 

(2 Questions)

  • Q1. CODING QUESTION YOU NEEDED TO TELL YOUR APPROACH AND CODE THEN
  • Q2. SQL QUESTIONS - THEORY + PREDICTING OUTPUT
Round 3 - Technical 

(2 Questions)

  • Q1. DSA + MANAGERIAL ROUND
  • Q2. HR QUESTIONS ABOUT YOUR FUTURE

Interview Preparation Tips

Topics to prepare for Innovaccer Data Analyst interview:
  • SQL
Interview preparation tips for other job seekers - BE CONFIDENT
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Roorkee and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

It was very easy and out of 1000 students 300 students got shortlisted.

Round 3 - Technical 

(5 Questions)

  • Q1. It was also easy and out of 300 students 30 got shortlisted.
  • Q2. What are oops? Explain 4 pillars
  • Ans. 

    OOPs stands for Object-Oriented Programming. The 4 pillars are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Parent class 'Animal' and child class 'Dog' inheriting from 'Animal'.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Using private variables and public methods in...

  • Answered by AI
  • Q3. What is DBMS and SQL?
  • Ans. 

    DBMS stands for Database Management System, which is a software system that manages databases. SQL is a language used to interact with databases.

    • DBMS is a software system that allows users to define, create, maintain, and control access to databases.

    • SQL (Structured Query Language) is a language used to communicate with a database. It is used to retrieve, update, and manage data in a database.

    • Examples of popular DBMS in...

  • Answered by AI
  • Q4. What is MongoDB? Explain it.
  • Ans. 

    MongoDB is a NoSQL database program that uses a document-oriented data model.

    • NoSQL database program

    • Document-oriented data model

    • Uses JSON-like documents for data storage

    • Supports dynamic schemas for flexible data structures

  • Answered by AI
  • Q5. Explain all hooks of React.
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() - allows functional components to have local state

    • useEffect() - allows functional components to perform side effects

    • useContext() - allows functional components to access context

    • useReducer() - an alternative to useState() ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it!

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dense rank, rank and row number
  • Q2. Self join HR data sql query

I applied via campus placement at International Institute of Information Technology (IIIT), Bangalore and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Consisting of around 10 SQL querying questions and 2 Python programming questions and 30 SQL + PowerBI related MCQs

Round 3 - Technical 

(3 Questions)

  • Q1. SQL related questions
  • Q2. Questions on ETL and Bigdata
  • Q3. Resume related questions
Round 4 - HR 

(1 Question)

  • Q1. Company policies and work culture explanation and acceptance to work

Interview Preparation Tips

Topics to prepare for Celebal Technologies Data Analyst interview:
  • MySQL
  • ETL
  • Bigdata
  • DBMS
Interview preparation tips for other job seekers - Prepare SQL very well. And you will easily clear all the rounds. Be confident. The hiring team is great
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. They asked Questions on join given two table A&B with one column each and u have to print out put for inner join, left join and correct join.
  • Q2. Then they asked medium level questions given , write query to print 2nd highest marks for each class using concept of windows function in SQL.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Managerial round
  • Q2. They asked all my project in my CV and deep discussion on each one. What is SCD type, what are composite key .
Round 3 - HR 

(2 Questions)

  • Q1. CTC negotiation
  • Q2. What u know about company and why u want to join company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make daily basis practice on SQL problem, basic python and good understanding of ur projects and Knowledge about ETL pipeline.

Vyapar Interview FAQs

How many rounds are there in Vyapar Data Analyst interview?
Vyapar interview process usually has 2-3 rounds. The most common rounds in the Vyapar interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for Vyapar Data Analyst 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 Python, SQL, Data Analytics, Data Mining and Data Visualization.
What are the top questions asked in Vyapar Data Analyst interview?

Some of the top questions asked at the Vyapar Data Analyst interview -

  1. How many Customers has purchased same item on the Same day more than on...read more
  2. select * , sum(amt) over (partition by customer) as total_amt from...read more
  3. difference between having and where in ...read more

Tell us how to improve this page.

Vyapar Data Analyst Interview Process

based on 5 interviews in last 1 year

2 Interview rounds

  • Aptitude Test Round
  • Technical Round
View more

People are getting interviews through

based on 4 Vyapar interviews
Job Portal
Company Website
75%
25%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 501 Interviews
Innovaccer Interview Questions
3.5
 • 78 Interviews
NoBrokerHOOD Interview Questions
3.3
 • 55 Interviews
Tally Solutions Interview Questions
4.3
 • 38 Interviews
Grey Orange Interview Questions
3.2
 • 37 Interviews
Mobileum Interview Questions
3.3
 • 34 Interviews
View all
Vyapar Data Analyst Salary
based on 8 salaries
₹7 L/yr - ₹13 L/yr
51% more than the average Data Analyst Salary in India
View more details

Vyapar Data Analyst Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Data Analyst

Bangalore Rural

2-5 Yrs

Not Disclosed

Explore more jobs
Business Development Executive
134 salaries
unlock blur

₹2.8 L/yr - ₹5.4 L/yr

Accounts Manager
80 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Inside Sales Executive
77 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Team Lead
72 salaries
unlock blur

₹3.7 L/yr - ₹7.8 L/yr

Customer Support Executive
62 salaries
unlock blur

₹2.8 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Vyapar with

Zoho

4.3
Compare

Tally Solutions

4.3
Compare

MARG ERP

3.6
Compare

Busy Infotech

4.0
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