Upload Button Icon Add office photos
Engaged Employer

i

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

Azimuth GRC Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Azimuth GRC Data Analyst Interview Questions and Answers

Updated 27 Mar 2024

Azimuth GRC Data Analyst Interview Experiences

Interview questions from similar companies

I was interviewed before Nov 2019.

Interview Questionnaire 

1 Question

  • Q1. SQL questions based on joins and previous projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round pure technical
2nd round based on previous projects experienc
3rd HR round salary and all.

I applied via Approached by Company and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL basics questions like types of joins, indexes etc.
Round 2 - One-on-one 

(1 Question)

  • Q1. About last company project experience
Round 3 - HR 

(1 Question)

  • Q1. Salary, reason to change discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare sql from basic to advance level.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 5 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 - Coding Test 

6 SQL questions to solve which would be easy to moderate.

Round 3 - Technical 

(1 Question)

  • Q1. Basic to moderate SQL questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round just asked about previous company and work profile.
Round 5 - HR 

(1 Question)

  • Q1. CTC discussion and brief explanation about the company.
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Guestimation question was asked.

Round 2 - Coding Test 

Easy to medium leetcode question asked on array , 2 pointer , sliding window

Round 3 - HR 

(2 Questions)

  • Q1. How will you handle team conflicts
  • Ans. 

    I will address team conflicts by promoting open communication, active listening, and facilitating constructive discussions.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Facilitate constructive discussions to find mutually beneficial solutions

    • Seek input from team members to involve them in the resolution process

  • Answered by AI
  • Q2. Are you able to relocate
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I have experience moving for previous roles

    • I am flexible and adaptable to new environments

  • Answered by AI
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.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Rate yourself in SQL and PowerBi
  • Ans. 

    I rate myself highly in SQL and PowerBi, with extensive experience in both tools.

    • Proficient in writing complex SQL queries for data extraction, manipulation, and analysis

    • Skilled in creating interactive and insightful visualizations in PowerBi

    • Experience in combining data from multiple sources and transforming it into actionable insights

    • Familiar with optimizing queries for performance and efficiency

    • Have successfully used...

  • Answered by AI
  • Q2. Different Type of Joins
  • Ans. 

    Different types of joins in SQL are 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
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
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
  • 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
  • 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

Interview Preparation Tips

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

Azimuth GRC Interview FAQs

How many rounds are there in Azimuth GRC Data Analyst interview?
Azimuth GRC interview process usually has 1 rounds. The most common rounds in the Azimuth GRC interview process are HR.
How to prepare for Azimuth GRC 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 Azimuth GRC. The most common topics and skills that interviewers at Azimuth GRC expect are Data Analysis, Data Analytics, SQL, SQL Queries and Tableau.

Tell us how to improve this page.

Azimuth GRC Data Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Azimuth GRC Data Analyst Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Head Human Resources
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Azimuth GRC with

Metric Stream Infotech

3.1
Compare

SAI Global

4.9
Compare

NAVEX Global

4.0
Compare

Diligent

3.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview