Upload Button Icon Add office photos

Filter interviews by

Fractal Analytics Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Fractal Analytics Interview Questions and Answers

View all 105 questions

Fractal Analytics Interview Experiences

Popular Designations

196 interviews found

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

Interview Questionnaire 

3 Questions

  • Q1. Why Analytics?
  • Ans. 

    Analytics helps in making data-driven decisions and improving business outcomes.

    • Analytics provides insights into customer behavior and preferences.

    • It helps in identifying trends and patterns in data.

    • Analytics can optimize business processes and improve efficiency.

    • It enables businesses to make informed decisions based on data.

    • Analytics can help in predicting future outcomes and trends.

    • Examples: Predictive maintenance in...

  • Answered by AI
  • Q2. SQL queries
  • Q3. Business Case

Interview Preparation Tips

Interview preparation tips for other job seekers - There are total 4 rounds. First was test, one SQL test by Doselect, which had some MCQs based on SQL and some queries, mainly of group by and joins. One was aptitude test.
Second round was technical round. It was based on CV and interviewer asked some questions of Excel, some of SQL and few from Tableau as I have written it in my CV.
Third round was Managerial + Technical, The person asked few questions like Why Analytics, One business related scenario and 2 SQL queries. I answered everything well but could not solve one query of SQL. I wasn't able to clear this round. I got rejection mail next day.
If I were able to clear this round, there was another round(last) HR round.

Consultant-I (Analytics Profile) Interview Questions asked at other Companies

Q1. Guesstimate - How many pen stands can you fit in a Boeing 747?
View answer (1)

Consultant, Advanced Analytics Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2022

I applied via Naukri.com and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to my projects mainly about the algo used in the projects Like - Difference between random forest and XGBoost and in which algo you will consider high max_depth? etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about your project thoroughly - what is business problem? why you used this algo? Could it be done in better way or anything you want to change to make your project better.

Consultant Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2021

I applied via Company Website and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL and problem solving questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and analytical.

Top Fractal Analytics Consultant Interview Questions and Answers

Q1. What is adstock, decay, Due tos Contributions? How do you evaluate the model? What is seasonality and the formula for seasonality? Do seasonality have any contribution?
View answer (1)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Consultant Interview Questions & Answers

user image Anonymous

posted on 3 Sep 2021

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Python class? SQL Joins, SQL Indexing, Python basics, Machine Learning-XGB Bagging Boosting

Interview Preparation Tips

Interview preparation tips for other job seekers - Round I technical Interview is challenging, for me inter view lasted about 55 min

Top Fractal Analytics Consultant Interview Questions and Answers

Q1. What is adstock, decay, Due tos Contributions? How do you evaluate the model? What is seasonality and the formula for seasonality? Do seasonality have any contribution?
View answer (1)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Fractal Analytics interview questions for popular designations

 Consultant

 (24)

 Data Engineer

 (20)

 Data Scientist

 (19)

 Software Engineer

 (9)

 Decision Scientist

 (8)

 Business Analyst

 (6)

 Senior Consultant

 (6)

 Summer Intern

 (5)

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 12 Dec 2021

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

After round 1 there was a break of 15 mins and the coding round started.
We had a choice to attempt the exam in R language & SQL or python & sql
I chose python and sql
It had 8 questions 4 python and 4 sql

  • Q1. Longest Common Subsequence

    Given two strings, 'S' and 'T' with lengths 'M' and 'N', find the length of the 'Longest Common Subsequence'.

    For a string 'str'...

  • Ans. Memoization

    Let the two strings be x and y. 

    Let x(i) be the substring of x from index 0 to index i. 

    Let c[i, j] be the length of the longest common subsequence of strings x(i) and y(j).

    Then the recurrence relation to find c[i, j] is as follows:

    We can use this relation to write a simple recursive program but instead of recomputing the results of subproblems, compute them just once and store their results in a l...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 15 minutes
Round difficulty - Medium

The interview was mostly analytical based and how you approach the round a few technical questions in dbms and oops were also asked.

  • Q1. Aptitiude Questions

    In one box there are 12 red and 12 green balls and in another box there are 24 res and 24 green balls.
    You have two balls choose from each of the box with replacement such that they have ...

  • Q2. Technical Questions

    What is an immutable object and why is it useful

    Acid properties in dbms
    Explain atomicity and what is d in acid.

Round 3 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Medium

Similar to first round
For Shortlists after elimination from first round.

  • Q1. Car Pooling

    You are working as a cab driver. Your car moves in a straight line and moves toward the forward direction only. Initially, you have ‘C’ empty seats for the passengers.

    Now, you are given ‘N’ ...

  • Ans. Hash Map Implementation

    The simple idea is that we will keep a record of the number of passengers changed at every time in a hash map ‘passengers’ where the key represents the time at which the number of passengers changed and the value at that key represents the count of passengers changed. 

     

    For Example- If we have trips = [ 2, 1,4 ], [ 2, 2,5 ] then at time = 1, no of passengers changed and increased by 2. S...

  • Answered by CodingNinjas
  • Q2. General Questions

    Top 5 best things that happened during covid lockdown for you.

    Byjus bussiness model
    Why is it better to have online coaching classes

Round 4 - Video Call 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

After two technical round interviews, the last round was a hr interview. The whole process can take up one whole day or more and your interview can be at any time
My process started at 5 pm and ended at 10:30 pm
All the interviewers were very friendly no pressure.

  • Q1. Nth Fibonacci Number

    Nth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

        F(n) = F(n-1) + F(n-2), 
        Where, F(1) = F(2) = 1
    

    Provided N you have...

  • Ans. Recursive Approach
    • In this approach, we use recursion and uses a basic condition that :
      • If ‘N’ is smaller than ‘1’(N<=1) we return ‘N’
      • Else we call the function again as ninjaJasoos(N-1) + ninjaJasoos(N-2).
    • In this way, we reached our answer.
    Space Complexity: O(n)Explanation:

    O(N),  where ‘N’ is the given number.  

    As recursion uses a stack of size ‘N’

    Time Complexity: O(2^n)Explanation:

    O(2^N), where ‘N’ i...

  • Answered by CodingNinjas
  • Q2. Basic HR Questions

    The most difficult situation you had overcome

    A situation where you brought the best in another person

    If in a situation with four people including you come up with a better solution than t...

Interview Preparation Tips

Eligibility criteriaCgpa was initially 6 and above but was later on cut to 7 and above due to high no of applicationsFractal Analytics interview preparation:Topics to prepare for the interview - Machine learning, dbms, sql, oops, python,Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be fast ans accurate on your aptitude amd verbal tests. 
Tip 2 : In coding round, depending on the difficulty of the questions the time in which you complete solving them should decrease .If almost everyone can solve them timming comes in to the equation for shortlisting
Tip 3 : While submitting your resume, please be honest about the projects you have done and do not bluff about it because in the interview when you ate drilled abt it, they can catch you easily.
Tip 4 : be confident and answer every question to the best of your ability and if u don't know something, tell them you don't know abt it .

Application resume tips for other job seekers

Tip 1 : Research the company and put the most revalent projects and skills that the company os looking for specifically
Tip 2 : Do not bluff or lie on your resume. It show's during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Fractal Analytics Software Engineer Interview Questions and Answers

Q1. Longest Common SubsequenceGiven two strings, 'S' and 'T' with lengths 'M' and 'N', find the length of the 'Longest Common Subsequence'. For a string 'str'(per se) of length K, the subsequences are the strings containing characters in the sa... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Get interview-ready with Top Fractal Analytics Interview Questions

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2021

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Joins in Sql, Modelling and visualization part in PowerBI
  • Ans. 

    Answering about joins in SQL and modeling/visualization in PowerBI

    • Joins in SQL are used to combine data from two or more tables based on a related column

    • There are different types of joins such as inner join, left join, right join, and full outer join

    • PowerBI is a data visualization tool that allows users to create interactive reports and dashboards

    • Data modeling in PowerBI involves creating relationships between tables a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with your resume and be confident

Skills evaluated in this interview

Top Fractal Analytics Data Engineer Interview Questions and Answers

Q1. In a word count spark program which command will run on driver and which will run on executor
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Jobs at Fractal Analytics

View all

I applied via LinkedIn and was interviewed before Nov 2021. 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 

SQL and Python coding questions, SQL mostly based on multiple joins

Round 3 - One-on-one 

(2 Questions)

  • Q1. Questions based on work ex and SQL and Python
  • Q2. Questions based on normalization
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round- Behavioral questions and some technical questions
Round 5 - HR 

(1 Question)

  • Q1. Why do you want to join the organisation? other behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - intermediate SQL and window functions are asked everytime

Decision Scientist Interview Questions asked at other Companies

Q1. Stats- Significance of Mean and Standard Deviation. Normal distribution, percentage distribution for every SD in Normal distribution
View answer (1)

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

Interview Questionnaire 

1 Question

  • Q1. Questions about the project, responsibilities. Basic oop concepts, programming questions, sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on understanding the fundamentals, show that you're willing to learn as you grow in your career

Top Fractal Analytics Data Engineer Interview Questions and Answers

Q1. In a word count spark program which command will run on driver and which will run on executor
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Interview Questionnaire 

2 Questions

  • Q1. More questions from Azure architecture and previous projects worked
  • Q2. Usecase related questions on Azure

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool, open minded and honest to the questions asked. Most importantly be very assertive and bold in your answers!

Top Fractal Analytics Data Engineer Interview Questions and Answers

Q1. In a word count spark program which command will run on driver and which will run on executor
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Since I was interviewed for ReactJS role. I was given a task to create To-do app a/c to their requirement. After submitting that, I got call to attend the technical round as they liked the app. In technica...

Interview Preparation Tips

Interview preparation tips for other job seekers - I would say that prepare well and have some in-depth knowledge of concepts depending on the role you're interviewing for.

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

Fractal Analytics Interview FAQs

How many rounds are there in Fractal Analytics interview?
Fractal Analytics interview process usually has 2-3 rounds. The most common rounds in the Fractal Analytics interview process are Technical, HR and Coding Test.
How to prepare for Fractal Analytics 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 Fractal Analytics. The most common topics and skills that interviewers at Fractal Analytics expect are Python, Analytics, SQL, Machine Learning and Consulting.
What are the top questions asked in Fractal Analytics interview?

Some of the top questions asked at the Fractal Analytics interview -

  1. What is truth? Like the one you have been taught or the one you learn yourself ...read more
  2. What are the important documents to be submitted during the R...read more
  3. Okay. How many people attended StanChart Mumbai Marath...read more
How long is the Fractal Analytics interview process?

The duration of Fractal Analytics interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Fractal Analytics Interview Process

based on 101 interviews in last 1 year

Interview experience

4.3
  
Good
View more

People are getting interviews through

based on 137 Fractal Analytics interviews
Job Portal
Campus Placement
Referral
Company Website
Recruitment Consultant
44%
18%
11%
7%
3%
17% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.7
 • 221 Interviews
Tiger Analytics Interview Questions
3.6
 • 209 Interviews
Axtria Interview Questions
3.0
 • 112 Interviews
C5i Interview Questions
4.1
 • 43 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Algonomy Interview Questions
3.9
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Fractal Analytics Reviews and Ratings

based on 755 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.7

Salary & Benefits

4.2

Job Security

4.2

Company culture

3.3

Promotions/Appraisal

3.7

Work Satisfaction

Explore 755 Reviews and Ratings
GCP Data Engineer

Hyderabad / Secunderabad,

Bangalore / Bengaluru

+1

4-9 Yrs

Not Disclosed

Opportunity For Azure Data Engineers || Fractal

Pune,

Gurgaon / Gurugram

+1

3-7 Yrs

Not Disclosed

Sap Bods Consultant

Chennai,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Consultant
1.1k salaries
unlock blur

₹6 L/yr - ₹24 L/yr

Data Engineer
663 salaries
unlock blur

₹7.4 L/yr - ₹28 L/yr

Senior Consultant
563 salaries
unlock blur

₹12.3 L/yr - ₹38 L/yr

Data Scientist
436 salaries
unlock blur

₹8.3 L/yr - ₹33 L/yr

Senior Engineer
190 salaries
unlock blur

₹11.6 L/yr - ₹36 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.6
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