Upload Button Icon Add office photos

Filter interviews by

Fractal Analytics Consultant Data Analyst Interview Questions and Answers

Updated 25 Jul 2021

Fractal Analytics Consultant Data Analyst Interview Experiences

1 interview found

I applied via Referral and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What metrics will you look at if you need to analyse how a retail manufacturer is performing?
  • Ans. 

    Metrics to analyze retail manufacturer performance

    • Sales revenue

    • Profit margin

    • Inventory turnover

    • Customer satisfaction

    • Market share

    • Return on investment

    • Employee turnover rate

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is divided in 3 rounds. Round 1 would be about overall experience, some technical Questions from SQL,Excel,Tableau,Python etc depending on profile. Second round taken by engagement manager who would want to know your experience in details, so a lil deep dive in your resume. And the last HR round which will be decent covering standard behavioural questions.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is Overfitting in decision tree
  • Ans. 

    Overfitting in decision trees occurs when the model learns noise in the training data rather than the underlying pattern.

    • Overfitting happens when the decision tree is too complex and captures noise in the training data.

    • It leads to poor generalization on unseen data, as the model is too specific to the training set.

    • To prevent overfitting, techniques like pruning, setting a minimum number of samples per leaf, or using en

  • Answered by AI
  • Q2. What is bagging
  • Ans. 

    Bagging is a machine learning ensemble technique where multiple models are trained on different subsets of the training data and their predictions are combined.

    • Bagging stands for Bootstrap Aggregating.

    • It helps reduce overfitting by combining the predictions of multiple models.

    • Random Forest is a popular algorithm that uses bagging by training multiple decision trees on random subsets of the data.

  • Answered by AI
  • Q3. What is neuron How its used in DL
  • Ans. 

    A neuron is a basic unit of a neural network that receives input, processes it, and produces an output.

    • Neurons are inspired by biological neurons in the human brain.

    • They receive input signals, apply weights to them, sum them up, and pass the result through an activation function.

    • Neurons are organized in layers in a neural network, with each layer performing specific tasks.

    • In deep learning, multiple layers of neurons ar...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

First round was aptitude, communication test and a pseudo code question and all are elimination rounds if you passes all the rounds you will get an interview date....

Round 2 - One-on-one 

(2 Questions)

  • Q1. Good Knowledge on dbms, sql
  • Q2. Python basic questions
Round 3 - HR 

(1 Question)

  • Q1. Very liberal questions about yourself, relocation, etc..

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge on sql, dbms, python , case studies, puzzles

Senior Data Analyst Interview Questions & Answers

Subex user image Narendra Pendurthi

posted on 6 Aug 2024

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

(3 Questions)

  • Q1. Questions about SQL
  • Q2. Questions about python dataframes
  • Q3. Difference between random forest and decision tree
  • Ans. 

    Random forest is an ensemble learning method using multiple decision trees to improve accuracy and reduce overfitting.

    • Random forest uses multiple decision trees to make predictions.

    • Decision tree is a single tree structure used for classification and regression.

    • Random forest reduces overfitting by averaging the predictions of multiple trees.

    • Decision tree can be prone to overfitting if not pruned properly.

    • Random forest i...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. SQL, excel, python and power Bi

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 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 

SQL and quant, logical questions were asked.

Round 3 - Technical 

(1 Question)

  • Q1. 1. Tell me about your self 2. Resume based questions 3. Need to write basic SQL queries and also print same output using pandas
Round 4 - Technical 

(1 Question)

  • Q1. 1. Tell me about your self 2. Statistics questions 3. Guestimates 4. Why do you want to join company

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a knowledge on your resume completely and prepare SQL and python libraries very well. Practice guestimates questions as well.

I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. SQL, spark, hadoop, Linux,python
Round 2 - Technical 

(1 Question)

  • Q1. System design, real time data ingestion architecture and processing
Round 3 - HR 

(1 Question)

  • Q1. Strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong SQL, python and spark , aws knowledge is important to crack

I applied via AngelList and was interviewed before Jun 2021. There were 2 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 - HR 

(1 Question)

  • Q1. Behaviour round questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of python and behavioral questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was very easy

Round 2 - Technical 

(2 Questions)

  • Q1. Based on resume
  • Q2. Some simple hr questions
Round 3 - HR 

(2 Questions)

  • Q1. About family and their occupations
  • Q2. General questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Python coding and sql coding

Round 2 - Technical 

(2 Questions)

  • Q1. List all the string which start with 'a'
  • Ans. 

    List of strings starting with 'a'

    • Use a loop to iterate through each string

    • Check if each string starts with 'a'

    • Add the string to the list if it starts with 'a'

  • Answered by AI
  • Q2. Find out max value from the given table
  • Ans. 

    Use SQL query to find max value from a table

    • Use SQL query SELECT MAX(column_name) FROM table_name;

    • For example, SELECT MAX(salary) FROM employees;

    • Ensure proper column name and table name are used in the query

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - great experience

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 896 Interviews
Mu Sigma Interview Questions
2.7
 • 226 Interviews
Tiger Analytics Interview Questions
3.7
 • 218 Interviews
Axtria Interview Questions
3.1
 • 114 Interviews
MathCo Interview Questions
3.0
 • 109 Interviews
Zeta Interview Questions
3.3
 • 69 Interviews
Kiya.ai Interview Questions
3.5
 • 48 Interviews
C5i Interview Questions
4.1
 • 44 Interviews
Subex Interview Questions
3.5
 • 34 Interviews
View all
Fractal Analytics Consultant Data Analyst Salary
based on 6 salaries
₹10.5 L/yr - ₹21 L/yr
98% more than the average Consultant Data Analyst Salary in India
View more details
Consultant
1.1k salaries
unlock blur

₹6 L/yr - ₹24 L/yr

Data Engineer
685 salaries
unlock blur

₹7.5 L/yr - ₹28 L/yr

Senior Consultant
556 salaries
unlock blur

₹12.4 L/yr - ₹38 L/yr

Data Scientist
438 salaries
unlock blur

₹8.1 L/yr - ₹33 L/yr

Engineer
219 salaries
unlock blur

₹7.5 L/yr - ₹26 L/yr

Explore more salaries
Compare Fractal Analytics with

Mu Sigma

2.7
Compare

AbsolutData

3.6
Compare

LatentView Analytics

3.7
Compare

Tiger Analytics

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