Upload Button Icon Add office photos
Engaged Employer

i

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

ScatterPie Analytics Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ScatterPie Analytics Interview Questions and Answers

Updated 26 Jun 2025
Popular Designations

13 Interview questions

A Business Intelligence Intern was asked 2w ago
Q. Explain Tableau Projects.
Ans. 

Tableau Projects are organizational units for managing and sharing Tableau content like workbooks and data sources.

  • Projects help in organizing related workbooks and data sources in a hierarchical structure.

  • For example, a project can be created for 'Sales Analysis' containing all related dashboards and reports.

  • Permissions can be set at the project level, allowing control over who can view or edit content.

  • Projects c...

View all Business Intelligence Intern interview questions
A Business Intelligence Intern was asked 2w ago
Q. What are the key steps involved in creating a dashboard in Tableau?
Ans. 

Creating a dashboard in Tableau involves data connection, visualization design, and interactivity setup.

  • 1. Connect to Data: Import data from various sources like Excel, SQL databases, or cloud services.

  • 2. Data Preparation: Clean and transform data using Tableau Prep or built-in tools to ensure accuracy.

  • 3. Create Visualizations: Use charts, graphs, and maps to represent data insights effectively.

  • 4. Design Dashboard...

View all Business Intelligence Intern interview questions
An Artificial Intelligence Intern was asked 2w ago
Q. Given dict(zip(array1, array2)), what does the zip function do?
Ans. 

The zip function combines elements from two or more iterables into tuples, creating pairs of corresponding elements.

  • Creates an iterator of tuples: zip(array1, array2) pairs elements from both arrays.

  • Example: zip(['a', 'b'], [1, 2]) results in [('a', 1), ('b', 2)].

  • Useful for parallel iteration over multiple lists or arrays.

  • Can be used with more than two arrays: zip(array1, array2, array3).

View all Artificial Intelligence Intern interview questions
An Artificial Intelligence Intern was asked 2w ago
Q. What are support vector machines?
Ans. 

Support Vector Machines (SVM) are supervised learning models used for classification and regression tasks.

  • SVM works by finding the hyperplane that best separates different classes in the feature space.

  • It uses support vectors, which are data points closest to the hyperplane, to define the decision boundary.

  • SVM can handle both linear and non-linear classification using kernel functions (e.g., polynomial, RBF).

  • Exampl...

View all Artificial Intelligence Intern interview questions
An AWS Developer was asked 7mo ago
Q. Cost Optimization on Snowflake
Ans. 

Cost optimization on Snowflake involves utilizing features like virtual warehouses, auto-suspend, and resource monitoring.

  • Utilize virtual warehouses efficiently based on workload requirements

  • Enable auto-suspend to automatically pause warehouses when not in use

  • Monitor resource usage and adjust configurations accordingly

View all AWS Developer interview questions
An AWS Developer was asked 7mo ago
Q. How do you connect to a SharePoint database?
Ans. 

To connect to a SharePoint database, you can use SharePoint's REST API or Microsoft Graph API.

  • Use SharePoint's REST API to interact with SharePoint data through standard HTTP requests.

  • Authenticate using OAuth tokens to access SharePoint resources securely.

  • Utilize Microsoft Graph API for a unified endpoint to access data across Microsoft services.

  • Ensure proper permissions are set up for the application accessing th...

View all AWS Developer interview questions
An AWS Developer was asked 7mo ago
Q. Write a query to find the 2nd highest salary using a window function.
Ans. 

Use window function to find 2nd highest salary in SQL

  • Use the ROW_NUMBER() function to assign a unique row number to each row based on the salary in descending order

  • Filter the results where the row number is 2 to get the 2nd highest salary

View all AWS Developer interview questions
Are these interview questions helpful?
An AWS Developer was asked 7mo ago
Q. What is your expected CTC?
Ans. 

Expected CTC at Scatterpie

  • Research industry standards for AWS Developer roles at Scatterpie

  • Consider your experience, skills, and qualifications

  • Factor in location, company size, and benefits package

  • Negotiate based on market trends and personal value

View all AWS Developer interview questions
An AWS Developer was asked 7mo ago
Q. Write a PySpark script to extract, transform, and load data.
Ans. 

Using PySpark for ETL processes to manipulate and analyze large datasets efficiently.

  • Use SparkSession to initialize PySpark: `spark = SparkSession.builder.appName('ETL Example').getOrCreate()`

  • Load data from various sources: `df = spark.read.csv('path/to/file.csv', header=True)`

  • Transform data using DataFrame operations: `df_filtered = df.filter(df['age'] > 30)`

  • Perform aggregations: `df_grouped = df.groupBy('depa...

View all AWS Developer interview questions
A Data Analyst was asked
Q. How would you identify the top 10 and bottom 10 employees based on their ranking?
Ans. 

The top 10 and bottom 10 employees based on their rank need to be identified.

  • Sort the employees based on their rank in ascending order.

  • Select the top 10 employees from the sorted list.

  • Select the bottom 10 employees from the sorted list.

View all Data Analyst interview questions

ScatterPie Analytics Interview Experiences

25 interviews found

AWS Developer Interview Questions & Answers

user image ABHISHEK JHA

posted on 9 Nov 2024

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Project Experience and end to end architecture
  • Ans. 

    I have experience working on projects with end-to-end architecture, including design, development, testing, and deployment.

    • Designed and implemented scalable AWS architectures using services like EC2, S3, Lambda, API Gateway, etc.

    • Developed applications using AWS SDKs and integrated with other AWS services.

    • Performed testing and debugging of applications on AWS infrastructure.

    • Deployed applications on AWS using CI/CD pipel...

  • Answered by AI
  • Q2. PySpark Coding question to Extract Transform & Load
  • Ans. 

    Using PySpark for ETL processes to manipulate and analyze large datasets efficiently.

    • Use SparkSession to initialize PySpark: `spark = SparkSession.builder.appName('ETL Example').getOrCreate()`

    • Load data from various sources: `df = spark.read.csv('path/to/file.csv', header=True)`

    • Transform data using DataFrame operations: `df_filtered = df.filter(df['age'] > 30)`

    • Perform aggregations: `df_grouped = df.groupBy('departmen...

  • Answered by AI
  • Q3. Cost Optimization on Snowflake
  • Ans. 

    Cost optimization on Snowflake involves utilizing features like virtual warehouses, auto-suspend, and resource monitoring.

    • Utilize virtual warehouses efficiently based on workload requirements

    • Enable auto-suspend to automatically pause warehouses when not in use

    • Monitor resource usage and adjust configurations accordingly

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Project end to end
  • Q2. How to connect to a share point database
  • Ans. 

    To connect to a SharePoint database, you can use SharePoint's REST API or Microsoft Graph API.

    • Use SharePoint's REST API to interact with SharePoint data through standard HTTP requests.

    • Authenticate using OAuth tokens to access SharePoint resources securely.

    • Utilize Microsoft Graph API for a unified endpoint to access data across Microsoft services.

    • Ensure proper permissions are set up for the application accessing the Sha...

  • Answered by AI
  • Q3. Normalization & de normalization
  • Q4. Questions on SQL Joins
  • Q5. Question to find the 2nd highest salary using window function
  • Ans. 

    Use window function to find 2nd highest salary in SQL

    • Use the ROW_NUMBER() function to assign a unique row number to each row based on the salary in descending order

    • Filter the results where the row number is 2 to get the 2nd highest salary

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Why are you looking for a job change
  • Q2. How was the experience at previous company
  • Q3. Expected CTC at Scatterpie
  • Ans. 

    Expected CTC at Scatterpie

    • Research industry standards for AWS Developer roles at Scatterpie

    • Consider your experience, skills, and qualifications

    • Factor in location, company size, and benefits package

    • Negotiate based on market trends and personal value

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It had 2 technical rounds, 30 min each and 1 HR round. Given it is a startup they have budget constraints and do not communicate well.

Skills evaluated in this interview

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. How much experience you have in tableau?
  • Ans. 

    I have hands-on experience with Tableau, focusing on data visualization and dashboard creation for insightful business analysis.

    • Completed a project where I created interactive dashboards to visualize sales data, improving decision-making for the sales team.

    • Utilized Tableau to analyze customer feedback data, identifying trends that led to a 15% increase in customer satisfaction.

    • Participated in a team project that involv...

  • Answered by AI
  • Q2. Show your projects
  • Ans. 

    I have worked on various BI projects, focusing on data visualization, analysis, and reporting to drive business decisions.

    • Developed a sales dashboard using Tableau to visualize monthly sales trends and identify top-performing products.

    • Created an automated reporting system in Excel that reduced report generation time by 50%.

    • Conducted a customer segmentation analysis using SQL to target marketing efforts more effectively...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This was an excellent company to start my career with, and it is very suitable for future employees. They provide all the necessary study materials for training and then evaluate individuals based on that material. There are just a few travel-related issues, but they are manageable.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Join, adf related questions
  • Q2. Databricks basics related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What questions were asked about your BI project and the skill sets mentioned in your resume?
  • Q2. SQL query and dashboard creation

Interview Preparation Tips

Interview preparation tips for other job seekers - Create an excellent project on Business Intelligence and concentrate on its execution.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Mostly from the projects mentioned in the resume
  • Q2. The technical assessment involved basic Tableau and SQL skills knowledge abt KPI's
  • Q3. Asked to perfrom SQL Queries in front of the interviewer
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Questions was asked about assessment given during the technical round.
  • Q2. What projects have you done on tableau?
  • Ans. 

    I have completed several projects using Tableau, focusing on data visualization and insights for business decision-making.

    • Developed a sales dashboard to track monthly performance and identify trends over time.

    • Created a customer segmentation analysis to visualize demographics and purchasing behavior.

    • Built an interactive report for marketing campaigns, showcasing ROI and engagement metrics.

    • Designed a financial overview d...

  • Answered by AI
  • Q3. Do you know about KPI's
  • Ans. 

    KPIs, or Key Performance Indicators, are measurable values that demonstrate how effectively an organization is achieving key business objectives.

    • KPIs help organizations assess their success in reaching targets.

    • Examples include sales growth, customer satisfaction scores, and operational efficiency.

    • KPIs can be financial (e.g., profit margin) or non-financial (e.g., employee turnover rate).

    • They should be SMART: Specific, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep working hard on your skills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Technical assignment based on Tableau and they provided proper dataset
  • Q2. Explained the projects I made previously

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Ask about Projects which I have created
  • Q2. What are the key steps involved in creating a dashboard in Tableau?
  • Ans. 

    Creating a dashboard in Tableau involves data connection, visualization design, and interactivity setup.

    • 1. Connect to Data: Import data from various sources like Excel, SQL databases, or cloud services.

    • 2. Data Preparation: Clean and transform data using Tableau Prep or built-in tools to ensure accuracy.

    • 3. Create Visualizations: Use charts, graphs, and maps to represent data insights effectively.

    • 4. Design Dashboard Layo...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Project Related questions on Resume
  • Q2. Technical Assessment based on data Analytics and Visualization
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Project related questions where asked
  • Q2. Technical assignment based on tableau and dashboard making.

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about ScatterPie Analytics?
Ask anonymously on communities.

ScatterPie Analytics Interview FAQs

How many rounds are there in ScatterPie Analytics interview?
ScatterPie Analytics interview process usually has 2 rounds. The most common rounds in the ScatterPie Analytics interview process are Technical, HR and One-on-one Round.
How to prepare for ScatterPie 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 ScatterPie Analytics. The most common topics and skills that interviewers at ScatterPie Analytics expect are SQL, Tableau, Data Visualization, Data Modeling and Data Analysis.
What are the top questions asked in ScatterPie Analytics interview?

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

  1. What are the key steps involved in creating a dashboard in Table...read more
  2. Question to find the 2nd highest salary using window funct...read more
  3. PySpark Coding question to Extract Transform & L...read more
How long is the ScatterPie Analytics interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 24 interview experiences

Difficulty level

Easy 24%
Moderate 76%

Duration

Less than 2 weeks 86%
2-4 weeks 10%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

ZoomRx Interview Questions
3.0
 • 38 Interviews
Jasper Colin Interview Questions
4.1
 • 31 Interviews
Decision Point Interview Questions
3.9
 • 14 Interviews
YouGov Interview Questions
3.6
 • 10 Interviews
RELX Group Interview Questions
3.5
 • 9 Interviews
View all

ScatterPie Analytics Reviews and Ratings

based on 71 reviews

4.2/5

Rating in categories

4.3

Skill development

3.7

Work-life balance

3.9

Salary

3.9

Job security

4.2

Company culture

3.9

Promotions

4.2

Work satisfaction

Explore 71 Reviews and Ratings
Power Bi Developer

Pune

3-5 Yrs

Not Disclosed

Tableau Developer

Pune,

Gurgaon / Gurugram

+1

3-6 Yrs

Not Disclosed

Sales Manager

Mumbai

4-6 Yrs

Not Disclosed

Explore more jobs
Data Analyst
64 salaries
unlock blur

₹5 L/yr - ₹10.9 L/yr

Senior Data Analyst
38 salaries
unlock blur

₹6 L/yr - ₹12.8 L/yr

Associate Data Analyst
31 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Tableau Developer
12 salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Data Engineer
11 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Explore more salaries
Compare ScatterPie Analytics with

Markelytics Solutions

4.8
Compare

Jasper Colin

4.1
Compare

Cotecna Inspection India

3.6
Compare

Value Rcm Solutions

4.1
Compare
write
Share an Interview