Upload Button Icon Add office photos

Filter interviews by

AXA Business Services Data Analyst Interview Questions and Answers

Updated 9 Sep 2021

AXA Business Services Data Analyst Interview Experiences

1 interview found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Excel background and a test had conducted on excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Be a expert in excel and be thorough in formulas

Interview questions from similar companies

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

(1 Question)

  • Q1. KPIs used in the project
  • Ans. 

    Key Performance Indicators (KPIs) are metrics used to evaluate the success of a project.

    • KPIs are specific, measurable, achievable, relevant, and time-bound metrics used to track progress towards project goals.

    • Examples of KPIs in a data analysis project could include data accuracy, completion time, client satisfaction, and cost savings.

    • KPIs help in monitoring and improving the performance of the project team and ensurin

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Number of rows and columns that can be uploaded in Power BI
  • Ans. 

    Power BI allows uploading up to 1 million rows and 1,500 columns in a dataset.

    • Power BI allows uploading a maximum of 1 million rows in a dataset.

    • Power BI allows uploading a maximum of 1,500 columns in a dataset.

    • Exceeding these limits may result in performance issues.

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

(1 Question)

  • Q1. Describe your weakness and strengths
  • Ans. 

    My weakness is overthinking, but my strengths include attention to detail, problem-solving skills, and strong analytical abilities.

    • Weakness: tend to overthink situations, which can sometimes lead to indecision

    • Strengths: attention to detail, able to identify patterns and trends, strong problem-solving skills, excellent analytical abilities

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic 10 apti question

Round 2 - Coding Test 

Basic 5 python question

Round 3 - Coding Test 

Basic 5 SQL question

Round 4 - Technical 

(1 Question)

  • Q1. They asked two python program.
Round 5 - Technical 

(1 Question)

  • Q1. They asked one SQL question
Round 6 - HR 

(1 Question)

  • Q1. Just question based on my resume.
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 Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me about your self?
  • Q2. What is SQL and diffrent joins in SQL?
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases. Different joins in SQL include inner join, outer join, left join, and right join.

    • SQL is a standard programming language for managing and manipulating relational databases.

    • Different types of joins in SQL include inner join, outer join, left join, and right join.

    • Inner join returns rows when there is at least one match in both tables.

    • Ou...

  • Answered by AI
  • Q3. How to separate portion before @ and after @ from mail using python?
  • Ans. 

    Use Python to separate portion before and after @ in an email address.

    • Use the split() method to separate the email address into two parts based on the @ symbol.

    • Access the parts using index 0 for the portion before @ and index 1 for the portion after @.

    • Example: email = 'example@email.com'; parts = email.split('@'); before = parts[0]; after = parts[1];

  • Answered by AI
  • Q4. What is the rank, Dense Rank and Row Number?
  • Ans. 

    Rank, Dense Rank, and Row Number are functions used in SQL to assign a ranking to rows in a result set.

    • Rank function assigns a unique rank to each row based on the specified column values.

    • Dense Rank function assigns a unique rank to each row without any gaps.

    • Row Number function assigns a sequential integer to each row in the result set.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - practice general questions like joins, commands of DML, DFL, DCL, TCL.
For python practice coding like regex, splitting of string etc.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Regularizaion, model improvemnts
  • Q2. Hyperparameter tuning
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 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 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me a time when you had to deal with a failure, how you tackled it

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient
Be confident
Be curious
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 Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Whats is supervised learning
  • Ans. 

    Supervised learning is a type of machine learning where the model is trained on labeled data to make predictions or decisions.

    • Uses labeled data for training

    • Predicts outcomes based on input features

    • Examples include regression and classification algorithms

  • Answered by AI
  • Q2. What is unsupervised learning
  • Ans. 

    Unsupervised learning is a type of machine learning where the model is trained on unlabeled data without any predefined output labels.

    • No predefined output labels are provided for the training data

    • The model must find patterns and relationships in the data on its own

    • Common techniques include clustering and dimensionality reduction

    • Examples: K-means clustering, Principal Component Analysis (PCA)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do hard work

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1) Formula for Precision and recall
  • Ans. 

    Precision = TP / (TP + FP), Recall = TP / (TP + FN)

    • Precision is the ratio of correctly predicted positive observations to the total predicted positive observations

    • Recall is the ratio of correctly predicted positive observations to the all observations in actual class

    • Example: If a model predicts 100 positive cases, out of which 80 are actually positive, precision = 80/100, recall = 80/total actual positive cases

  • Answered by AI
  • Q2. 2) Difference between R2 and adjusted R2
  • Ans. 

    R2 measures the proportion of variance explained by the model, while adjusted R2 adjusts for the number of predictors in the model.

    • R2 is the proportion of variance in the dependent variable that is predictable from the independent variables.

    • Adjusted R2 penalizes the addition of unnecessary predictors in the model, providing a more accurate measure of the model's goodness of fit.

    • R2 can increase even when adding irreleva...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ICICI Lombard General Insurance Company Data Scientist interview:
  • Machine Learning
  • STATISICS
  • Python
Interview preparation tips for other job seekers - Keep your basics clear

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Sql indexing. window function.
  • Q2. Many other sql questins were there
Round 2 - One-on-one 

(1 Question)

  • Q1. 5 year goal. where do you see yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company.
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 - One-on-one 

(5 Questions)

  • Q1. About my self and my educational background
  • Ans. My name is poonam Sharma . I have a good knowledge of computer .i have completed my HSC and SSC exam from UP board. Have completed my TY from Mahatma Gandhi Kashi Vishwanath
  • Answered Anonymously
  • Q2. About my work experience
  • Q3. I am fresher but I have a good knowledge of computer
  • Q4. About my marriage status
  • Q5. My hobby , and my future plans
  • Ans. My hobby is studying and my future plans is becoming IAS,IPS officer
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - This type of interview was very nice and am very interested in this type of interview

Excellent 👌👍

AXA Business Services Interview FAQs

How to prepare for AXA Business Services 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 AXA Business Services. The most common topics and skills that interviewers at AXA Business Services expect are SQL, Analytics, Claims, Data Analysis and Agile.

Tell us how to improve this page.

Data Analyst Interview Questions from Similar Companies

View all
AXA Business Services Data Analyst Salary
based on 36 salaries
₹2.8 L/yr - ₹8.5 L/yr
27% less than the average Data Analyst Salary in India
View more details

AXA Business Services Data Analyst Reviews and Ratings

based on 11 reviews

4.8/5

Rating in categories

4.7

Skill development

4.8

Work-life balance

4.6

Salary

4.3

Job security

4.9

Company culture

4.4

Promotions

4.4

Work satisfaction

Explore 11 Reviews and Ratings
Specialist
831 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Process Leader
622 salaries
unlock blur

₹3.9 L/yr - ₹13 L/yr

Analyst
519 salaries
unlock blur

₹1.5 L/yr - ₹7 L/yr

Senior Analyst
469 salaries
unlock blur

₹2.2 L/yr - ₹9.1 L/yr

Assistant Manager
253 salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Explore more salaries
Compare AXA Business Services with

Accenture

3.8
Compare

Capgemini

3.7
Compare

Wipro

3.7
Compare

TCS

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