Data Analytics
10+ Data Analytics Interview Questions and Answers

Asked in Paytm

Q. Lexicographically Smallest Array Problem Statement
You are given an array ARR
of 'N' integers and a positive integer 'K'.
Your task is to determine the lexicographically smallest array that can be obtained by p...read more
The task is to determine the lexicographically smallest array that can be obtained by performing at most 'K' swaps of consecutive elements.
Iterate through the array and swap elements to make the array lexicographically smallest.
Keep track of the number of swaps made and stop when the limit 'K' is reached.
Use a sorting algorithm to find the lexicographically smallest array after at most 'K' swaps.

Asked in Standard Chartered

Q. Ways To Make Coin Change
Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the c...read more
The task is to find the total number of ways to make change for a specified value using given denominations.
Create a dynamic programming table to store the number of ways to make change for each value up to the target value.
Iterate through each denomination and update the table accordingly.
The final answer will be the value in the table at the target value.
Consider edge cases such as when the target value is 0 or when there are no denominations that can make the change.
Data Analytics Interview Questions and Answers for Freshers

Asked in Amazon

Q. Pair Sum Problem Statement
You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.
Note:
Each pa...read more
Given an array and a target sum, find pairs of elements that add up to the target sum.
Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.
If the complement exists, add the pair to the result list.
Sort the result list based on the first element of each pair, and then the second element if the first elements are equal.

Asked in Flipkart

Q. K-th Largest Number in a BST
Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.
If there is no K-th largest e...read more
Find the K-th largest element in a binary search tree.
Perform an in-order traversal of the BST to get elements in ascending order
Return the (N-K)th element from the end of the in-order traversal
Handle cases where K is out of bounds or no K-th largest element exists

Asked in Amazon

Q. Rotting Oranges Problem Statement
You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:
- 0 - representing an empty cell
- 1 - representing a fresh orange...read more
Find the minimum time required to rot all fresh oranges in a grid.
Iterate through the grid to find rotten oranges and their adjacent fresh oranges.
Use BFS or DFS to simulate the rotting process and track the time taken.
Return the minimum time taken to rot all fresh oranges or -1 if not possible.

Asked in Amazon

Q. Longest Common Prefix Problem Statement
You are given an array ‘ARR’ consisting of ‘N’ strings. Your task is to find the longest common prefix among all these strings. If there is no common prefix, you have to ...read more
Find the longest common prefix among an array of strings.
Iterate through the characters of the first string and compare with corresponding characters of other strings.
Stop when a mismatch is found or when reaching the end of the shortest string.
Return the prefix found so far as the longest common prefix.
Data Analytics Jobs




Asked in DE Shaw

Q. Peak Element Finder
For a given array of integers arr
, identify the peak element. A peak element is an element that is greater than its neighboring elements. Specifically, if arr[i]
is the peak, then both arr[i...read more
Find the peak element in an array of integers.
Iterate through the array and check if the current element is greater than its neighbors.
Handle edge cases where the first or last element can be a peak.
Return the peak element found.

Asked in APT Research Private Limited

Q. Evaluate Division Problem Statement
Given an array of pairs of strings equations
representing a fraction and an array of real numbers values
. Each element in equations
denotes a fraction with the first string a...read more
Evaluate division problem statement with given fractions and values to calculate the value of a given fraction.
Use a graph data structure to represent the fractions and values.
Perform depth-first search (DFS) to find the value of the given fraction.
Multiply the values of the fractions along the path from numerator to denominator to get the final result.
Share interview questions and help millions of jobseekers 🌟

Asked in Info Edge

Q. Can you provide a general introduction?
I am a data analyst with a passion for uncovering insights through data and a love for hiking and photography.
Background in statistics and data visualization.
Enjoy hiking, which helps me appreciate nature and gather inspiration for data storytelling.
Photography allows me to capture moments, paralleling how I capture data trends.
I often analyze data related to outdoor activities, combining my hobbies with my profession.

Asked in IDFC FIRST Bank

Q. Tell me more about the data science puzzles and questions mentioned in your CV that were asked.
Discussed various data science puzzles and questions from my CV during the interview, showcasing analytical skills.
Explained the importance of data cleaning with an example of handling missing values in a dataset.
Demonstrated how to use regression analysis to predict outcomes, such as sales forecasting.
Discussed clustering techniques, like K-means, for customer segmentation in marketing.
Provided insights on A/B testing for optimizing web page designs based on user engagement.

Asked in Bread Financial

Q. sql and python , explain terms?
SQL is a language for managing databases, while Python is a versatile programming language used for data analysis and manipulation.
SQL (Structured Query Language): Used for querying and managing relational databases. Example: SELECT * FROM users WHERE age > 30;
Python: A high-level programming language known for its readability and versatility. Example: import pandas as pd; df = pd.read_csv('data.csv')
Data Manipulation: SQL is used for data retrieval and manipulation, while Py...read more

Asked in Labmentix

Q. What is data visualization?
Data visualisation is the graphical representation of data to help users understand trends, patterns, and insights.
Data visualisation uses charts, graphs, and maps to present data in a visually appealing way.
It helps in identifying correlations, outliers, and patterns in data.
Examples include bar charts, pie charts, scatter plots, and heat maps.
Interactive data visualisations allow users to explore data dynamically.

Asked in IBM

Q. what is DBMS and RDBMS
DBMS stands for Database Management System, while RDBMS stands for Relational Database Management System.
DBMS is a software system that allows users to define, create, maintain and control access to the database.
RDBMS is a type of DBMS that stores data in a structured format using tables with rows and columns.
Examples of DBMS include MySQL, Oracle Database, and Microsoft SQL Server.
Examples of RDBMS include MySQL, PostgreSQL, and Oracle Database.

Asked in TCS

Q. Tell me about yourself.
Data analytics involves collecting, processing, and analyzing data to derive insights and support decision-making.
Data Collection: Gathering data from various sources like surveys, databases, and APIs.
Data Cleaning: Removing inaccuracies and inconsistencies in the data to ensure quality.
Data Analysis: Using statistical methods and tools to interpret data and identify trends.
Data Visualization: Presenting data insights through charts and graphs for better understanding.
Example...read more

Asked in Amazon

Q. What is MySQL?
MySQL is an open-source relational database management system based on SQL for managing and organizing data.
MySQL uses Structured Query Language (SQL) for database operations.
It supports various data types like INT, VARCHAR, DATE, etc.
MySQL allows for complex queries using JOINs, e.g., SELECT * FROM users JOIN orders ON users.id = orders.user_id;
It is widely used in web applications, e.g., WordPress and Facebook.
MySQL provides ACID compliance for reliable transactions.

Asked in Infotech

Q. What is PowerBI?
PowerBI is a business analytics tool by Microsoft that provides interactive visualizations and business intelligence capabilities.
Developed by Microsoft
Allows users to create interactive visualizations and reports
Offers business intelligence capabilities
Can connect to various data sources such as Excel, SQL databases, and cloud services
Asked in MedDawn Solutions

Q. What skills do you have that are relevant to this role?
Data analytics requires skills in statistical analysis, data visualization, and programming to derive insights from data.
Proficiency in programming languages like Python or R for data manipulation and analysis.
Experience with data visualization tools such as Tableau or Power BI to present findings effectively.
Strong understanding of statistical methods to interpret data accurately, e.g., regression analysis.
Familiarity with SQL for querying databases and extracting relevant d...read more

Asked in Anolytics

Q. How would you evaluate someone's communication skills?
Effective communication in data analytics ensures clarity, collaboration, and actionable insights for stakeholders.
Use clear visualizations: Graphs and charts can simplify complex data, e.g., using a bar chart to show sales trends.
Tailor your message: Adjust your communication style based on the audience, such as technical details for analysts and high-level insights for executives.
Encourage feedback: Foster an environment where stakeholders can ask questions and provide inpu...read more
Interview Experiences of Popular Companies








Reviews
Interviews
Salaries
Users

