Upload Button Icon Add office photos
Engaged Employer

i

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

Sarvagram Fincare Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 149 Reviews

Filter interviews by

Sarvagram Fincare Data Analyst Interview Questions, Process, and Tips

Updated 10 Jul 2024

Top Sarvagram Fincare Data Analyst Interview Questions and Answers

Sarvagram Fincare Data Analyst Interview Experiences

2 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Windows functions in SQL and use of Lag function
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of table rows related to the current row.

    • Window functions are used to perform calculations on a set of rows related to the current row in a query result.

    • The LAG function is a window function that allows you to access data from a previous row in the result set.

    • Example: SELECT employee_id, salary, LAG(salary) OVER (ORDER BY hire_date) AS prev_salary FR

  • Answered by AI
  • Q2. Nested for loop for list example
  • Ans. 

    Nested for loop used to iterate through a list of items

    • Use a for loop to iterate through the main list

    • Inside the first loop, use another for loop to iterate through each item in the sublist

    • Example: for item in main_list: for sub_item in item: print(sub_item)

  • Answered by AI
  • Q3. What is data base and data warehouse
  • Ans. 

    A database is a collection of structured data organized for easy access, while a data warehouse is a centralized repository for storing and analyzing large volumes of data.

    • Database is used for transactional processing and storing current data.

    • Data warehouse is used for analytical processing and storing historical data.

    • Database is typically used for day-to-day operations.

    • Data warehouse is used for decision-making and bu...

  • Answered by AI
  • Q4. Which are Joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column between them

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the righ...

  • Answered by AI
  • Q5. What is DAX in power bi
  • Ans. 

    DAX (Data Analysis Expressions) is a formula language used in Power BI to create custom calculations and aggregations.

    • DAX is similar to Excel formulas but designed for more complex data analysis tasks

    • It can be used to create calculated columns, measures, and calculated tables in Power BI

    • DAX functions include aggregation functions like SUM, AVERAGE, and COUNT, as well as logical functions and date functions

    • Example: CALC...

  • Answered by AI

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Rohit Dudhal

posted on 10 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. SQL Basics details

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

Interview questions from similar companies

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

I applied via itvedant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What are types of joins in SQL
  • Ans. 

    Types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join: returns rows when there is a match in both tables

    • Left join: returns all rows from the left table and the matched rows from the right table

    • Right join: returns all rows from the right table and the matched rows from the left table

    • Full outer join: returns rows when there is a match in either table

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

SQL questions were asked

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. String manipulation question
  • Q2. Dataframe manipulation questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Interview was related to work exp, Internship and project.
  • Q2. They asked questions on random forest and PCA
Round 2 - Coding Test 

2 DSA easy to medium question in python language.

Round 3 - Behavioral 

(2 Questions)

  • Q1. Discussion on why you want to join company?
  • Q2. Discussion on Projects
Round 4 - Technical 

(1 Question)

  • Q1. Classical ML questions
Round 5 - HR 

(1 Question)

  • Q1. 45 minute hr round
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Group Discussion 

Questions based on SQL,Python and computer networks

Round 2 - HR 

(1 Question)

  • Q1. About salary,6 working days,
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic of javascript
  • Q2. Basics of coding
  • Q3. How to call button in js
  • Ans. 

    You can call a button in JavaScript by using the document.getElementById() method.

    • Use document.getElementById() method to select the button by its id attribute

    • Assign the selected button to a variable for further manipulation

    • Call button methods or add event listeners to the button variable

  • Answered by AI
  • Q4. What is overloading and overriding inJava
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is implementing a method in a subclass that is already defined in the parent class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding occurs when a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Overloading is determi...

  • Answered by AI
Round 2 - Coding Test 

Dynamic programming related

Skills evaluated in this interview

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

I applied via itvedant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What are types of joins in SQL
  • Ans. 

    Types of joins in SQL include inner join, left join, right join, and full outer join.

    • Inner join: returns rows when there is a match in both tables

    • Left join: returns all rows from the left table and the matched rows from the right table

    • Right join: returns all rows from the right table and the matched rows from the left table

    • Full outer join: returns rows when there is a match in either table

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

SQL questions were asked

Sarvagram Fincare Interview FAQs

How many rounds are there in Sarvagram Fincare Data Analyst interview?
Sarvagram Fincare interview process usually has 1 rounds. The most common rounds in the Sarvagram Fincare interview process are Technical.
How to prepare for Sarvagram Fincare 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 Sarvagram Fincare. The most common topics and skills that interviewers at Sarvagram Fincare expect are Business Solutions, Data Analysis, Data Analytics, Data Mining and Data Visualization.
What are the top questions asked in Sarvagram Fincare Data Analyst interview?

Some of the top questions asked at the Sarvagram Fincare Data Analyst interview -

  1. What is data base and data wareho...read more
  2. windows functions in SQL and use of Lag funct...read more
  3. What is DAX in power...read more

Tell us how to improve this page.

Sarvagram Fincare Data Analyst Salary
based on 4 salaries
₹6 L/yr - ₹13.4 L/yr
54% more than the average Data Analyst Salary in India
View more details

Sarvagram Fincare Data Analyst Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Branch Relationship Officer
84 salaries
unlock blur

₹1.7 L/yr - ₹4 L/yr

Branch Manager
50 salaries
unlock blur

₹3.5 L/yr - ₹8.6 L/yr

Branch Credit Officer
40 salaries
unlock blur

₹2.4 L/yr - ₹4.2 L/yr

Branch Credit Manager
39 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Credit Manager
18 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Sarvagram Fincare with

Arohan Financial Services

4.0
Compare

Ujjivan Financial Services

4.3
Compare

Jana Small Finance Bank

3.8
Compare

Equitas Small Finance Bank

4.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