What will this query return?
SELECT c.name, o.amount FROM customers c LEFT JOIN orders o ON c.customer_id = o.customer_id;
SELECT c.name, o.amount FROM customers c LEFT JOIN orders o ON c.customer_id = o.customer_id;
Anonymous Quiz
28%
A. Only customers who placed orders
54%
B. All customers with their order amounts or NULL
5%
C. Only orders without customers
13%
D. Only matching rows from both tables
β€7
Which JOIN is mainly used to find records missing in another table?
Anonymous Quiz
7%
A. INNER JOIN
67%
B. LEFT JOIN with NULL check
14%
C. FULL JOIN
12%
D. CROSS JOIN
β€6
What happens if both tables contain duplicate values on the JOIN key?
Anonymous Quiz
9%
A. Query fails
41%
B. Only unique rows are returned
30%
C. Rows get multiplied
21%
D. JOIN ignores duplicates
β€8π1
Which JOIN allows a table to join with itself?
Anonymous Quiz
18%
A. INNER JOIN
10%
B. FULL JOIN
70%
C. SELF JOIN
2%
D. RIGHT JOIN
β€7
Data Analyst Interview Questions with Answers: Part-4
31. What are Pivot Tables?
Pivot tables summarize large datasets quickly.
Example: Rows β Product, Values β Sum of Sales
Result: Total sales per product in seconds.
32. Difference between VLOOKUP and XLOOKUP?
VLOOKUP works left to right only. XLOOKUP works both ways and handles missing values better.
Example: =XLOOKUP(A2, Products!A:A, Products!B:B)
Fetches product name using product ID.
33. What is conditional formatting?
Highlights data based on rules.
Example: Highlight sales > 10000 in green.
Helps spot top performers instantly.
34. What are COUNTIFS and SUMIFS?
They apply conditions while counting or summing.
Example: =SUMIFS(C:C, A:A, "East", B:B, "Laptop")
Total sales of laptops in East region.
35. What is data validation?
Restricts incorrect data entry.
Example: Create dropdown for Region (East, West, North).
Data β Data Validation β List.
36. How do you remove duplicates in Excel?
Select data, Data β Remove Duplicates
Example: Remove duplicate customer IDs.
37. What is IF formula used for?
Applies logical conditions.
Example: =IF(C2>5000,"High Sales","Low Sales")
38. Difference between relative and absolute reference?
Relative β A2 changes when copied
Absolute β $A$2 stays fixed
Example: =A2*$E$1 Tax rate fixed while copying formula.
39. How do you clean data in Excel?
Remove duplicates, TRIM extra spaces, Fix date formats, Handle blanks
Example: =TRIM(A2)
40. What are common Excel mistakes analysts make?
β’ Merged cells
β’ Hard-coded values
β’ No pivot tables
β’ Poor formatting
β’ No documentation
Double Tap β₯οΈ For Part-5
31. What are Pivot Tables?
Pivot tables summarize large datasets quickly.
Example: Rows β Product, Values β Sum of Sales
Result: Total sales per product in seconds.
32. Difference between VLOOKUP and XLOOKUP?
VLOOKUP works left to right only. XLOOKUP works both ways and handles missing values better.
Example: =XLOOKUP(A2, Products!A:A, Products!B:B)
Fetches product name using product ID.
33. What is conditional formatting?
Highlights data based on rules.
Example: Highlight sales > 10000 in green.
Helps spot top performers instantly.
34. What are COUNTIFS and SUMIFS?
They apply conditions while counting or summing.
Example: =SUMIFS(C:C, A:A, "East", B:B, "Laptop")
Total sales of laptops in East region.
35. What is data validation?
Restricts incorrect data entry.
Example: Create dropdown for Region (East, West, North).
Data β Data Validation β List.
36. How do you remove duplicates in Excel?
Select data, Data β Remove Duplicates
Example: Remove duplicate customer IDs.
37. What is IF formula used for?
Applies logical conditions.
Example: =IF(C2>5000,"High Sales","Low Sales")
38. Difference between relative and absolute reference?
Relative β A2 changes when copied
Absolute β $A$2 stays fixed
Example: =A2*$E$1 Tax rate fixed while copying formula.
39. How do you clean data in Excel?
Remove duplicates, TRIM extra spaces, Fix date formats, Handle blanks
Example: =TRIM(A2)
40. What are common Excel mistakes analysts make?
β’ Merged cells
β’ Hard-coded values
β’ No pivot tables
β’ Poor formatting
β’ No documentation
Double Tap β₯οΈ For Part-5
β€22π5
β
Data Analyst Interview Questions with Answers: Part-5
41. What is data cleaning?
Data cleaning is the process of fixing or removing incorrect, incomplete, or inconsistent data.
Example: Removing duplicate customer records, Fixing wrong date formats.
42. How do you handle missing data?
Common methods:
- Remove rows (if few missing)
- Replace with mean, median, or 0
- Use forward or backward fill
Example (SQL):
43. How do you treat outliers?
- Identify using sorting, box plots, or Z-score
- Remove or cap extreme values
Example: Sales = 10,000, 12,000, 15,000, 1,00,000 β outlier.
44. What is data normalization?
Scaling data between 0 and 1.
Example: Normalized value = (x - min) / (max - min)
Used in ML and comparisons.
45. What is data standardization?
Centers data around mean 0 with std dev 1.
Example: Z = (x - mean) / std
46. How do you check data quality?
- Accuracy
- Completeness
- Consistency
- Validity
- Timeliness
Example: Sales should never be negative.
47. What is duplicate data?
Same record appearing more than once.
Example: Same customer ID repeated multiple times.
48. How do you validate source data?
- Compare with source systems
- Check row counts
- Verify key metrics
Example: Total revenue in report = total revenue in database.
49. What is data transformation?
Converting data into usable format.
Examples:
- Converting dates
- Creating new columns
- Aggregating values
50. Why is data preparation important?
Clean data = correct insights. Poor data leads to wrong decisions.
Example: Wrong sales data β wrong business strategy.
Double Tap β₯οΈ For Part-6
41. What is data cleaning?
Data cleaning is the process of fixing or removing incorrect, incomplete, or inconsistent data.
Example: Removing duplicate customer records, Fixing wrong date formats.
42. How do you handle missing data?
Common methods:
- Remove rows (if few missing)
- Replace with mean, median, or 0
- Use forward or backward fill
Example (SQL):
SELECT COALESCE(sales, 0) AS sales FROM orders;43. How do you treat outliers?
- Identify using sorting, box plots, or Z-score
- Remove or cap extreme values
Example: Sales = 10,000, 12,000, 15,000, 1,00,000 β outlier.
44. What is data normalization?
Scaling data between 0 and 1.
Example: Normalized value = (x - min) / (max - min)
Used in ML and comparisons.
45. What is data standardization?
Centers data around mean 0 with std dev 1.
Example: Z = (x - mean) / std
46. How do you check data quality?
- Accuracy
- Completeness
- Consistency
- Validity
- Timeliness
Example: Sales should never be negative.
47. What is duplicate data?
Same record appearing more than once.
Example: Same customer ID repeated multiple times.
48. How do you validate source data?
- Compare with source systems
- Check row counts
- Verify key metrics
Example: Total revenue in report = total revenue in database.
49. What is data transformation?
Converting data into usable format.
Examples:
- Converting dates
- Creating new columns
- Aggregating values
50. Why is data preparation important?
Clean data = correct insights. Poor data leads to wrong decisions.
Example: Wrong sales data β wrong business strategy.
Double Tap β₯οΈ For Part-6
β€20
β
Data Analyst Interview Questions with Answers: Part-6
51. Difference between mean and median?
Mean is the average. Median is the middle value.
Example: Salaries - 20k, 22k, 25k, 30k, 1,00k
Mean = 39.4k (skewed)
Median = 25k (better representative)
52. What is standard deviation?
It measures how spread out data is from the mean.
Example: Avg sales = βΉ10,000
Std dev = βΉ500 β stable
Std dev = βΉ5,000 β volatile
53. What is variance?
Square of standard deviation. Shows data spread mathematically.
54. What is correlation?
Measures relationship between two variables. Range -1 to +1
Example: Ad spend vs sales = 0.8 β strong positive correlation.
55. Difference between correlation and causation?
Correlation does not mean one causes the other.
Example: Ice cream sales and drowning both increase in summer.
56. What is an outlier?
A value far from others.
Example: Order values - 500, 700, 800, 50,000
57. What is sampling?
Using a subset of data to represent full dataset.
Example: Survey 1,000 customers instead of 1 million.
58. What is distribution?
Pattern showing how data values are spread.
Example: Normal, skewed, uniform distributions.
59. What is skewness?
Measures asymmetry of data.
Example: Income data usually right-skewed.
60. When do you use median over mean?
When data has outliers.
Example: House prices, salaries.
Double Tap β₯οΈ For Part-7
51. Difference between mean and median?
Mean is the average. Median is the middle value.
Example: Salaries - 20k, 22k, 25k, 30k, 1,00k
Mean = 39.4k (skewed)
Median = 25k (better representative)
52. What is standard deviation?
It measures how spread out data is from the mean.
Example: Avg sales = βΉ10,000
Std dev = βΉ500 β stable
Std dev = βΉ5,000 β volatile
53. What is variance?
Square of standard deviation. Shows data spread mathematically.
54. What is correlation?
Measures relationship between two variables. Range -1 to +1
Example: Ad spend vs sales = 0.8 β strong positive correlation.
55. Difference between correlation and causation?
Correlation does not mean one causes the other.
Example: Ice cream sales and drowning both increase in summer.
56. What is an outlier?
A value far from others.
Example: Order values - 500, 700, 800, 50,000
57. What is sampling?
Using a subset of data to represent full dataset.
Example: Survey 1,000 customers instead of 1 million.
58. What is distribution?
Pattern showing how data values are spread.
Example: Normal, skewed, uniform distributions.
59. What is skewness?
Measures asymmetry of data.
Example: Income data usually right-skewed.
60. When do you use median over mean?
When data has outliers.
Example: House prices, salaries.
Double Tap β₯οΈ For Part-7
β€25π1
β
Data Analyst Interview Questions with Answers: Part-7
61. Why is data visualization important?
Data visualization converts raw numbers into visual formats so humans can understand patterns, trends, and problems quickly.
β’ Humans process visuals faster than tables
β’ Managers donβt read SQL or Excel sheets
β’ Decisions are made in meetings, not databases
Example: A line chart instantly shows sales are declining for 3 months
> Data visualization helps stakeholders quickly understand insights and take action without analyzing raw data.
62. Difference between bar chart and line chart?
β’ Bar Chart: Used for comparison between categories
β’ Line Chart: Used for trends over time
> If time is involved β line chart. If comparison is involved β bar chart.
63. When do you use a pie chart?
Pie charts show percentage or share of a whole.
β’ Use for fewer categories (β€ 5)
β’ When proportions matter more than exact values
> Pie charts are best for showing part-to-whole relationships with limited categories.
64. What is a dashboard?
A dashboard is a single screen view that tracks key metrics and performance indicators.
β’ Monitor business health
β’ Track KPIs in real time
β’ Support quick decisions
> A dashboard provides a high-level summary of business performance at a glance.
65. What makes a good dashboard?
A good dashboard is clear, focused, and actionable.
β’ One business goal per dashboard
β’ KPIs at the top
β’ Consistent colors
β’ Minimal clutter
> A good dashboard answers business questions clearly and helps decision-making.
66. What is a KPI card?
A KPI card displays one critical metric clearly.
β’ Highlighting performance
β’ Comparing actual vs target
> KPI cards highlight the most important metrics for quick evaluation.
67. Common visualization mistakes?
β’ Using wrong chart type
β’ Too many colors
β’ No axis labels
β’ Showing everything on one page
> Poor visualization can mislead users even if the data is correct.
68. How do you choose the right chart?
β’ Comparison β Bar
β’ Trend β Line
β’ Distribution β Histogram
β’ Relationship β Scatter
β’ Part-to-whole β Pie
> Chart selection depends on the goal.
69. What is drill-down?
Drill-down allows users to move from summary to detailed data.
β’ Yearly sales β Monthly β Daily
β’ Region β City β Store
> Drill-down helps users explore deeper insights without cluttering the dashboard.
70. What is data storytelling?
Data storytelling combines data, visualization, and narrative.
β’ Example: βSales dropped by 10% because website traffic declined in the North region after ad spend was reduced.β
> Data storytelling turns insights into actions by explaining what happened, why, and what to do next.
Double Tap β₯οΈ For Part-8
61. Why is data visualization important?
Data visualization converts raw numbers into visual formats so humans can understand patterns, trends, and problems quickly.
β’ Humans process visuals faster than tables
β’ Managers donβt read SQL or Excel sheets
β’ Decisions are made in meetings, not databases
Example: A line chart instantly shows sales are declining for 3 months
> Data visualization helps stakeholders quickly understand insights and take action without analyzing raw data.
62. Difference between bar chart and line chart?
β’ Bar Chart: Used for comparison between categories
β’ Line Chart: Used for trends over time
> If time is involved β line chart. If comparison is involved β bar chart.
63. When do you use a pie chart?
Pie charts show percentage or share of a whole.
β’ Use for fewer categories (β€ 5)
β’ When proportions matter more than exact values
> Pie charts are best for showing part-to-whole relationships with limited categories.
64. What is a dashboard?
A dashboard is a single screen view that tracks key metrics and performance indicators.
β’ Monitor business health
β’ Track KPIs in real time
β’ Support quick decisions
> A dashboard provides a high-level summary of business performance at a glance.
65. What makes a good dashboard?
A good dashboard is clear, focused, and actionable.
β’ One business goal per dashboard
β’ KPIs at the top
β’ Consistent colors
β’ Minimal clutter
> A good dashboard answers business questions clearly and helps decision-making.
66. What is a KPI card?
A KPI card displays one critical metric clearly.
β’ Highlighting performance
β’ Comparing actual vs target
> KPI cards highlight the most important metrics for quick evaluation.
67. Common visualization mistakes?
β’ Using wrong chart type
β’ Too many colors
β’ No axis labels
β’ Showing everything on one page
> Poor visualization can mislead users even if the data is correct.
68. How do you choose the right chart?
β’ Comparison β Bar
β’ Trend β Line
β’ Distribution β Histogram
β’ Relationship β Scatter
β’ Part-to-whole β Pie
> Chart selection depends on the goal.
69. What is drill-down?
Drill-down allows users to move from summary to detailed data.
β’ Yearly sales β Monthly β Daily
β’ Region β City β Store
> Drill-down helps users explore deeper insights without cluttering the dashboard.
70. What is data storytelling?
Data storytelling combines data, visualization, and narrative.
β’ Example: βSales dropped by 10% because website traffic declined in the North region after ad spend was reduced.β
> Data storytelling turns insights into actions by explaining what happened, why, and what to do next.
Double Tap β₯οΈ For Part-8
β€18π2
π¨Do not miss this (Top FREE AI certificate courses)
Enroll now in these 50+ Free AI courses along with courses on Vibe Coding with Claude Code -
https://docs.google.com/spreadsheets/d/1D8t7BIWIQEpufYRB5vlUwSjc-ppKgWJf9Wp4i1KHzbA/edit?usp=sharing
Limited Time Access - Only for next 24 hours!
Top FREE AI, ML, Python Certificate courses which will help to boost resume in getting better jobs.
π¨Once you learn, participate in this Data Science Hiring Hackathon and get a chance to get hired as a Data Scientist -
https://www.analyticsvidhya.com/datahack/contest/data-scientist-skill-test/?utm_source=av_socialutm_medium=love_data_telegram_post
SO hurry up!
Enroll now in these 50+ Free AI courses along with courses on Vibe Coding with Claude Code -
https://docs.google.com/spreadsheets/d/1D8t7BIWIQEpufYRB5vlUwSjc-ppKgWJf9Wp4i1KHzbA/edit?usp=sharing
Limited Time Access - Only for next 24 hours!
Top FREE AI, ML, Python Certificate courses which will help to boost resume in getting better jobs.
π¨Once you learn, participate in this Data Science Hiring Hackathon and get a chance to get hired as a Data Scientist -
https://www.analyticsvidhya.com/datahack/contest/data-scientist-skill-test/?utm_source=av_socialutm_medium=love_data_telegram_post
SO hurry up!
Google Docs
Top AI and ML Free Certification Courses
β€6
β
Data Analyst Interview Questions with Answers: Part-8
71. What is Power BI or Tableau used for?
Power BI and Tableau are Business Intelligence (BI) tools that convert raw data into interactive dashboards and reports. They help you connect to multiple data sources, clean and transform data, create visuals, and share insights with stakeholders.
Example: A company connects its sales database to Power BI and builds a dashboard showing revenue trends, top products, and customer performance.
π Power BI and Tableau help organizations transform raw data into interactive visual insights for decision-making.
72. What is a data model?
A data model defines how tables are connected using relationships, combining multiple tables for accurate analysis and improved dashboard performance.
Example: Orders Table β Customer Table β Product Table (all connected using IDs).
π A data model organizes relationships between tables to enable accurate reporting.
73. What is a relationship?
A relationship connects tables using a common column, with types like one-to-many, many-to-many, and one-to-one.
Example: One customer β many orders (Customer_ID links Customers table to Orders table).
π Proper relationships prevent duplicate results and incorrect calculations.
74. What is DAX?
DAX (Data Analysis Expressions) is a formula language used in Power BI for calculations, creating measures, time-based calculations, and business logic.
Example:
Total Sales = SUM(Sales[Amount]), YTD Sales = TOTALYTD(SUM(Sales[Amount]), Sales[Date]).
π DAX helps create advanced calculations and business metrics in Power BI.
75. Difference between measure and calculated column?
Calculated columns are calculated row by row, stored in tables, and use memory. Measures are calculated dynamically, used in visuals, and more efficient.
Example:
Calculated column (Profit = Sales[Revenue] - Sales[Cost]), Measure (Total Profit = SUM(Sales[Revenue]) - SUM(Sales[Cost])).
π Measures are preferred for performance optimization.
76. What is Power Query?
Power Query is a data transformation tool used before data enters Power BI, for cleaning, removing duplicates, changing data types, and more.
Example: Converting text date into proper date format before building dashboard.
π Power Query prepares raw data for analysis.
77. What are filters and slicers?
Filters restrict data in visuals or pages, while slicers are interactive filters visible to users.
Example: A slicer allows users to select Region or Product to change dashboard view.
π Slicers improve user interaction and dashboard flexibility.
78. What is row-level security (RLS)?
RLS restricts data visibility based on user roles, protecting sensitive data and enabling multi-user dashboards.
Example: Sales manager sees only their region, HR sees only employee data.
π RLS ensures users only access authorized data.
79. What is refresh schedule?
Refresh schedule automatically updates dashboard data, with options for manual, scheduled, or real-time refresh.
Example: Daily sales dashboard updates every morning at 8 AM.
π Refresh schedules ensure dashboards always show updated data.
80. How do you optimize reports?
Optimization techniques include removing unnecessary columns, using measures instead of calculated columns, avoiding too many visuals, and using star schema data models.
Example: Replacing multiple calculated columns with one measure improves performance.
π Optimized reports improve speed, performance, and user experience.
Double Tap β₯οΈ For Part-8
71. What is Power BI or Tableau used for?
Power BI and Tableau are Business Intelligence (BI) tools that convert raw data into interactive dashboards and reports. They help you connect to multiple data sources, clean and transform data, create visuals, and share insights with stakeholders.
Example: A company connects its sales database to Power BI and builds a dashboard showing revenue trends, top products, and customer performance.
π Power BI and Tableau help organizations transform raw data into interactive visual insights for decision-making.
72. What is a data model?
A data model defines how tables are connected using relationships, combining multiple tables for accurate analysis and improved dashboard performance.
Example: Orders Table β Customer Table β Product Table (all connected using IDs).
π A data model organizes relationships between tables to enable accurate reporting.
73. What is a relationship?
A relationship connects tables using a common column, with types like one-to-many, many-to-many, and one-to-one.
Example: One customer β many orders (Customer_ID links Customers table to Orders table).
π Proper relationships prevent duplicate results and incorrect calculations.
74. What is DAX?
DAX (Data Analysis Expressions) is a formula language used in Power BI for calculations, creating measures, time-based calculations, and business logic.
Example:
Total Sales = SUM(Sales[Amount]), YTD Sales = TOTALYTD(SUM(Sales[Amount]), Sales[Date]).
π DAX helps create advanced calculations and business metrics in Power BI.
75. Difference between measure and calculated column?
Calculated columns are calculated row by row, stored in tables, and use memory. Measures are calculated dynamically, used in visuals, and more efficient.
Example:
Calculated column (Profit = Sales[Revenue] - Sales[Cost]), Measure (Total Profit = SUM(Sales[Revenue]) - SUM(Sales[Cost])).
π Measures are preferred for performance optimization.
76. What is Power Query?
Power Query is a data transformation tool used before data enters Power BI, for cleaning, removing duplicates, changing data types, and more.
Example: Converting text date into proper date format before building dashboard.
π Power Query prepares raw data for analysis.
77. What are filters and slicers?
Filters restrict data in visuals or pages, while slicers are interactive filters visible to users.
Example: A slicer allows users to select Region or Product to change dashboard view.
π Slicers improve user interaction and dashboard flexibility.
78. What is row-level security (RLS)?
RLS restricts data visibility based on user roles, protecting sensitive data and enabling multi-user dashboards.
Example: Sales manager sees only their region, HR sees only employee data.
π RLS ensures users only access authorized data.
79. What is refresh schedule?
Refresh schedule automatically updates dashboard data, with options for manual, scheduled, or real-time refresh.
Example: Daily sales dashboard updates every morning at 8 AM.
π Refresh schedules ensure dashboards always show updated data.
80. How do you optimize reports?
Optimization techniques include removing unnecessary columns, using measures instead of calculated columns, avoiding too many visuals, and using star schema data models.
Example: Replacing multiple calculated columns with one measure improves performance.
π Optimized reports improve speed, performance, and user experience.
Double Tap β₯οΈ For Part-8
β€30π1π₯°1
Keyboard #Shortcut Keys
Ctrl+A - Select All
Ctrl+B - Bold
Ctrl+C - Copy
Ctrl+D - Fill Down
Ctrl+F - Find
Ctrl+G - Goto
Ctrl+H - Replace
Ctrl+I - Italic
Ctrl+K - Insert Hyperlink
Ctrl+N - New Workbook
Ctrl+O - Open
Ctrl+P - Print
Ctrl+R - Fill Right
Ctrl+S - Save
Ctrl+U - Underline
Ctrl+V - Paste
Ctrl W - Close
Ctrl+X - Cut
Ctrl+Y - Repeat
Ctrl+Z - Undo
F1 - Help
F2 - Edit
F3 - Paste Name
F4 - Repeat last action
F4 - While typing a formula, switch between absolute/relative refs
F5 - Goto
F6 - Next Pane
F7 - Spell check
F8 - Extend mode
F9 - Recalculate all workbooks
F10 - Activate Menu bar
F11 - New Chart
F12 - Save As
Ctrl+: - Insert Current Time
Ctrl+; - Insert Current Date
Ctrl+" - Copy Value from Cell Above
Ctrl+β - Copy Formula from Cell Above
Shift - Hold down shift for additional functions in Excelβs menu
Shift+F1 - Whatβs This?
Shift+F2 - Edit cell comment
Shift+F3 - Paste function into formula
Shift+F4 - Find Next
Shift+F5 - Find
Shift+F6 - Previous Pane
Shift+F8 - Add to selection
Shift+F9 - Calculate active worksheet
Shift+F10 - Display shortcut menu
Shift+F11 - New worksheet
Ctrl+F3 - Define name
Ctrl+F4 - Close
Ctrl+F5 - XL, Restore window size
Ctrl+F6 - Next workbook window
Shift+Ctrl+F6 - Previous workbook window
Ctrl+F7 - Move window
Ctrl+F8 - Resize window
Ctrl+F9 - Minimize workbook
Ctrl+F10 - Maximize or restore window
Ctrl+F11 - Inset 4.0 Macro sheet
Ctrl+F1 - File Open
Alt+F1 - Insert Chart
Alt+F2 - Save As
Alt+F4 - Exit
Alt+Down arrow - Display AutoComplete list
Alt+β - Format Style dialog box
Ctrl+Shift+~ - General format
Ctrl+Shift+! - Comma format
Ctrl+Shift+@ - Time format
Ctrl+Shift+# - Date format
Ctrl+Shift+$ - Currency format
Ctrl+Shift+% - Percent format
Ctrl+Shift+^ - Exponential format
Ctrl+Shift+& - Place outline border around selected cells
Ctrl+Shift+_ - Remove outline border
Ctrl+Shift+* - Select current region
Ctrl++ - Insert
Ctrl+- - Delete
Ctrl+1 - Format cells dialog box
Ctrl+2 - Bold
Ctrl+3 - Italic
Ctrl+4 - Underline
Ctrl+5 - Strikethrough
Ctrl+6 - Show/Hide objects
Ctrl+7 - Show/Hide Standard toolbar
Ctrl+8 - Toggle Outline symbols
Ctrl+9 - Hide rows
Ctrl+0 - Hide columns
Ctrl+Shift+( - Unhide rows
Ctrl+Shift+) - Unhide columns
Alt or F10 - Activate the menu
Ctrl+Tab - In toolbar: next toolbar
Shift+Ctrl+Tab - In toolbar: previous toolbar
Ctrl+Tab - In a workbook: activate next workbook
Shift+Ctrl+Tab - In a workbook: activate previous workbook
Tab - Next tool
Shift+Tab - Previous tool
Enter - Do the command
Shift+Ctrl+F - Font Drop down List
Shift+Ctrl+F+F - Font tab of Format Cell Dialog box
Shift+Ctrl+P - Point size Drop down List
Ctrl + E - Align center
Ctrl + J - justify
Ctrl + L - align
Ctrl + R - align right
Alt + Tab - switch applications
Windows + P - Project screen
Windows + E - open file explorer
Windows + D - go to desktop
Windows + M - minimize all windows
Windows + S - search
Ctrl+A - Select All
Ctrl+B - Bold
Ctrl+C - Copy
Ctrl+D - Fill Down
Ctrl+F - Find
Ctrl+G - Goto
Ctrl+H - Replace
Ctrl+I - Italic
Ctrl+K - Insert Hyperlink
Ctrl+N - New Workbook
Ctrl+O - Open
Ctrl+P - Print
Ctrl+R - Fill Right
Ctrl+S - Save
Ctrl+U - Underline
Ctrl+V - Paste
Ctrl W - Close
Ctrl+X - Cut
Ctrl+Y - Repeat
Ctrl+Z - Undo
F1 - Help
F2 - Edit
F3 - Paste Name
F4 - Repeat last action
F4 - While typing a formula, switch between absolute/relative refs
F5 - Goto
F6 - Next Pane
F7 - Spell check
F8 - Extend mode
F9 - Recalculate all workbooks
F10 - Activate Menu bar
F11 - New Chart
F12 - Save As
Ctrl+: - Insert Current Time
Ctrl+; - Insert Current Date
Ctrl+" - Copy Value from Cell Above
Ctrl+β - Copy Formula from Cell Above
Shift - Hold down shift for additional functions in Excelβs menu
Shift+F1 - Whatβs This?
Shift+F2 - Edit cell comment
Shift+F3 - Paste function into formula
Shift+F4 - Find Next
Shift+F5 - Find
Shift+F6 - Previous Pane
Shift+F8 - Add to selection
Shift+F9 - Calculate active worksheet
Shift+F10 - Display shortcut menu
Shift+F11 - New worksheet
Ctrl+F3 - Define name
Ctrl+F4 - Close
Ctrl+F5 - XL, Restore window size
Ctrl+F6 - Next workbook window
Shift+Ctrl+F6 - Previous workbook window
Ctrl+F7 - Move window
Ctrl+F8 - Resize window
Ctrl+F9 - Minimize workbook
Ctrl+F10 - Maximize or restore window
Ctrl+F11 - Inset 4.0 Macro sheet
Ctrl+F1 - File Open
Alt+F1 - Insert Chart
Alt+F2 - Save As
Alt+F4 - Exit
Alt+Down arrow - Display AutoComplete list
Alt+β - Format Style dialog box
Ctrl+Shift+~ - General format
Ctrl+Shift+! - Comma format
Ctrl+Shift+@ - Time format
Ctrl+Shift+# - Date format
Ctrl+Shift+$ - Currency format
Ctrl+Shift+% - Percent format
Ctrl+Shift+^ - Exponential format
Ctrl+Shift+& - Place outline border around selected cells
Ctrl+Shift+_ - Remove outline border
Ctrl+Shift+* - Select current region
Ctrl++ - Insert
Ctrl+- - Delete
Ctrl+1 - Format cells dialog box
Ctrl+2 - Bold
Ctrl+3 - Italic
Ctrl+4 - Underline
Ctrl+5 - Strikethrough
Ctrl+6 - Show/Hide objects
Ctrl+7 - Show/Hide Standard toolbar
Ctrl+8 - Toggle Outline symbols
Ctrl+9 - Hide rows
Ctrl+0 - Hide columns
Ctrl+Shift+( - Unhide rows
Ctrl+Shift+) - Unhide columns
Alt or F10 - Activate the menu
Ctrl+Tab - In toolbar: next toolbar
Shift+Ctrl+Tab - In toolbar: previous toolbar
Ctrl+Tab - In a workbook: activate next workbook
Shift+Ctrl+Tab - In a workbook: activate previous workbook
Tab - Next tool
Shift+Tab - Previous tool
Enter - Do the command
Shift+Ctrl+F - Font Drop down List
Shift+Ctrl+F+F - Font tab of Format Cell Dialog box
Shift+Ctrl+P - Point size Drop down List
Ctrl + E - Align center
Ctrl + J - justify
Ctrl + L - align
Ctrl + R - align right
Alt + Tab - switch applications
Windows + P - Project screen
Windows + E - open file explorer
Windows + D - go to desktop
Windows + M - minimize all windows
Windows + S - search
β€28π10
β
Data Analyst Interview Questions with Answers: Part-9
81. How do you analyze a sales drop?
βFirst, I confirm the drop by comparing it with the previous period. Then I break the data by dimensions like time, region, product, and channel to identify where the decline is happening. Once I isolate the problem area, I look for possible reasons such as reduced traffic, pricing changes, or stock issues, and then I validate the findings with data.β
82. How do you define success metrics?
βI define success metrics based on the business objective. For example, if the goal is revenue growth, I track metrics like sales growth rate and average order value. If itβs a marketing campaign, I focus on conversion rate and ROI. I avoid vanity metrics and stick to what actually drives decisions.β
83. What business metrics have you worked on?
βIβve worked on metrics like revenue, month-over-month growth, customer churn, retention rate, average order value, and conversion rate. These metrics helped stakeholders understand performance and take corrective actions.β
84. How do you prioritize insights?
βI prioritize insights based on business impact and urgency. An insight affecting revenue or customer retention gets higher priority than a minor operational issue. I also consider stakeholder expectations and timelines before finalizing priorities.β
85. How do you validate insights before sharing them?
βI validate insights by cross-checking numbers with the source data, recalculating key metrics, comparing trends with historical data, and sometimes reviewing them with stakeholders. This ensures accuracy and avoids wrong decisions.β
86. What questions do you ask stakeholders before starting analysis?
βI usually ask what decision they want to make using the data, which metrics define success, the time period they care about, and who the final audience is. These questions help me align the analysis with business needs.β
87. How do you handle vague or unclear requirements?
βWhen requirements are vague, I ask follow-up questions and create a basic draft or sample dashboard. I share it early, collect feedback, and iterate. This approach saves time and ensures expectations are aligned.β
88. How do you measure the business impact of your work?
βI measure impact by linking insights to outcomes like revenue increase, cost reduction, time saved, or process improvement. For example, a dashboard that reduced manual reporting time by 40% is a clear business impact.β
89. How do you explain numbers to non-technical managers?
βI avoid technical terms and focus on what the numbers mean for the business. I use simple visuals, highlight trends, and clearly explain the implication and recommended action instead of explaining how the data was processed.β
90. How do you recommend actions based on data?
βI follow a simple structure: what happened, why it happened, and what should be done next. I always back recommendations with data and, if possible, estimate the potential impact so stakeholders can make informed decisions.β
Double Tap β₯οΈ For Part-10
81. How do you analyze a sales drop?
βFirst, I confirm the drop by comparing it with the previous period. Then I break the data by dimensions like time, region, product, and channel to identify where the decline is happening. Once I isolate the problem area, I look for possible reasons such as reduced traffic, pricing changes, or stock issues, and then I validate the findings with data.β
82. How do you define success metrics?
βI define success metrics based on the business objective. For example, if the goal is revenue growth, I track metrics like sales growth rate and average order value. If itβs a marketing campaign, I focus on conversion rate and ROI. I avoid vanity metrics and stick to what actually drives decisions.β
83. What business metrics have you worked on?
βIβve worked on metrics like revenue, month-over-month growth, customer churn, retention rate, average order value, and conversion rate. These metrics helped stakeholders understand performance and take corrective actions.β
84. How do you prioritize insights?
βI prioritize insights based on business impact and urgency. An insight affecting revenue or customer retention gets higher priority than a minor operational issue. I also consider stakeholder expectations and timelines before finalizing priorities.β
85. How do you validate insights before sharing them?
βI validate insights by cross-checking numbers with the source data, recalculating key metrics, comparing trends with historical data, and sometimes reviewing them with stakeholders. This ensures accuracy and avoids wrong decisions.β
86. What questions do you ask stakeholders before starting analysis?
βI usually ask what decision they want to make using the data, which metrics define success, the time period they care about, and who the final audience is. These questions help me align the analysis with business needs.β
87. How do you handle vague or unclear requirements?
βWhen requirements are vague, I ask follow-up questions and create a basic draft or sample dashboard. I share it early, collect feedback, and iterate. This approach saves time and ensures expectations are aligned.β
88. How do you measure the business impact of your work?
βI measure impact by linking insights to outcomes like revenue increase, cost reduction, time saved, or process improvement. For example, a dashboard that reduced manual reporting time by 40% is a clear business impact.β
89. How do you explain numbers to non-technical managers?
βI avoid technical terms and focus on what the numbers mean for the business. I use simple visuals, highlight trends, and clearly explain the implication and recommended action instead of explaining how the data was processed.β
90. How do you recommend actions based on data?
βI follow a simple structure: what happened, why it happened, and what should be done next. I always back recommendations with data and, if possible, estimate the potential impact so stakeholders can make informed decisions.β
Double Tap β₯οΈ For Part-10
β€25
β
Data Analyst Interview Questions with Answers: Part-10
91. Explain your best data analytics project.
βIn my recent project, I worked on a sales performance dashboard. The objective was to understand why growth had slowed. I used SQL to extract data from sales and customer tables, cleaned it using Power Query, and built a Power BI dashboard showing revenue trends, top products, and regional performance. The insights helped the business focus on underperforming regions.β
92. What data sources did you use?
βI mainly worked with structured data from relational databases like sales, customers, and product tables. In some cases, I also used Excel files shared by business teams.β
93. How did you clean the data?
βI removed duplicate records, handled missing values based on business logic, standardized text fields like region names, and corrected data types such as dates stored as text. This ensured consistency before analysis.β
94. What insight had the most impact?
βThe most impactful insight was identifying that a specific region was driving the overall sales decline due to reduced customer traffic. This helped the team take targeted action instead of broad changes.β
95. What challenges did you face in the project?
βOne challenge was inconsistent data coming from multiple sources. I resolved this by validating data with stakeholders and applying clear transformation rules in Power Query.β
96. How did you solve that challenge?
βI created a clean data model, documented assumptions, and validated key metrics with the business team before finalizing the dashboard. This reduced rework later.β
97. How did stakeholders use your dashboard?
βStakeholders used the dashboard to track daily performance, compare regions, and identify problem areas quickly. It reduced dependency on manual reports.β
98. What would you improve if you did the project again?
βI would automate more data refresh processes and include predictive indicators like early warning signals for sales drops.β
99. How do you handle tight deadlines?
βI prioritize tasks based on impact, focus on core metrics first, and deliver a working version quickly. I then improve it iteratively based on feedback.β
100. Why should we hire you as a data analyst?
βI combine strong technical skills with business understanding. I donβt just analyze dataβI translate it into clear insights and actionable recommendations that help teams make better decisions.β
Double Tap β₯οΈ For More
91. Explain your best data analytics project.
βIn my recent project, I worked on a sales performance dashboard. The objective was to understand why growth had slowed. I used SQL to extract data from sales and customer tables, cleaned it using Power Query, and built a Power BI dashboard showing revenue trends, top products, and regional performance. The insights helped the business focus on underperforming regions.β
92. What data sources did you use?
βI mainly worked with structured data from relational databases like sales, customers, and product tables. In some cases, I also used Excel files shared by business teams.β
93. How did you clean the data?
βI removed duplicate records, handled missing values based on business logic, standardized text fields like region names, and corrected data types such as dates stored as text. This ensured consistency before analysis.β
94. What insight had the most impact?
βThe most impactful insight was identifying that a specific region was driving the overall sales decline due to reduced customer traffic. This helped the team take targeted action instead of broad changes.β
95. What challenges did you face in the project?
βOne challenge was inconsistent data coming from multiple sources. I resolved this by validating data with stakeholders and applying clear transformation rules in Power Query.β
96. How did you solve that challenge?
βI created a clean data model, documented assumptions, and validated key metrics with the business team before finalizing the dashboard. This reduced rework later.β
97. How did stakeholders use your dashboard?
βStakeholders used the dashboard to track daily performance, compare regions, and identify problem areas quickly. It reduced dependency on manual reports.β
98. What would you improve if you did the project again?
βI would automate more data refresh processes and include predictive indicators like early warning signals for sales drops.β
99. How do you handle tight deadlines?
βI prioritize tasks based on impact, focus on core metrics first, and deliver a working version quickly. I then improve it iteratively based on feedback.β
100. Why should we hire you as a data analyst?
βI combine strong technical skills with business understanding. I donβt just analyze dataβI translate it into clear insights and actionable recommendations that help teams make better decisions.β
Double Tap β₯οΈ For More
β€20π1
What is a subquery in SQL?
Anonymous Quiz
10%
A. A query that runs after SELECT
82%
B. A query inside another query
6%
C. A temporary table stored permanently
2%
D. A query used only with JOIN
β€5
Which clause most commonly uses subqueries?
Anonymous Quiz
12%
A. ORDER BY
24%
B. GROUP BY
61%
C. WHERE
3%
D. LIMIT
β€5
What makes a correlated subquery different from a normal subquery?
Anonymous Quiz
7%
A. It runs only once
16%
B. It does not use outer query columns
71%
C. It depends on values from the outer query
6%
D. It cannot be used in SELECT
β€6
What is the main advantage of using a CTE over a subquery?
Anonymous Quiz
26%
A. Faster execution always
6%
B. Permanent storage
60%
C. Better readability and reusability
7%
D. Avoids GROUP BY
β€5
Which SQL syntax correctly defines a CTE?
Anonymous Quiz
18%
CREATE CTE cte_name AS (...)
63%
WITH cte_name AS ( SELECT ... ) SELECT * FROM cte_name;
14%
SELECT * INTO cte_name FROM table;
5%
FROM cte_name AS ( SELECT ... )
β€4
πΉ DATA ANALYST β INTERVIEW REVISION SHEET
1οΈβ£ Role Clarity
> βA data analyst collects, cleans, analyzes data, and converts it into insights that help businesses make decisions.β
2οΈβ£ SQL (Most Important)
Must-know clauses:
β’ SELECT, WHERE, ORDER BY, LIMIT
β’ GROUP BY, HAVING
β’ JOINS (INNER, LEFT)
β’ Subqueries, CTEs
β’ Window functions (ROW_NUMBER, RANK)
Golden rules:
β’ WHERE β before aggregation
β’ HAVING β after aggregation
β’ LEFT JOIN β keeps all left table rows
β’ NULLs break calculations β use COALESCE
Classic questions:
β’ Top N per group
β’ Find duplicates
β’ Running totals
3οΈβ£ Excel Essentials
Formulas:
β’ IF, XLOOKUP
β’ COUNTIFS, SUMIFS
β’ TRIM, LEFT, RIGHT
Core features:
β’ Pivot tables
β’ Conditional formatting
β’ Data validation (dropdowns)
Avoid:
β’ Merged cells
β’ Hard-coded values
4οΈβ£ Power BI / Tableau
Concepts:
β’ Data model (star schema)
β’ Relationships (one-to-many)
β’ Measures > calculated columns
Must-know DAX:
β’ Total Sales = SUM(Sales[Amount])
β’ YTD Sales = TOTALYTD(SUM(Sales[Amount]), Sales[Date])
Design rules:
β’ KPIs on top
β’ One story per dashboard
β’ Minimal visuals
5οΈβ£ Statistics (Only What Matters)
β’ Mean vs Median
β’ Standard deviation
β’ Correlation β causation
β’ Outliers distort averages
β’ Use median for Salaries, House prices
6οΈβ£ Data Cleaning (Interview Gold)
Steps you should say:
1. Remove duplicates
2. Handle missing values
3. Fix data types
4. Standardize text
7οΈβ£ Business Metrics
β’ Revenue
β’ Growth rate
β’ Conversion rate
β’ Churn
β’ Retention
β’ Average order value
Always connect metrics to business impact.
8οΈβ£ Case Question Framework (Very Important)
Always answer like this:
1. What happened
2. Why it happened
3. What should be done
Example:
> βSales dropped due to lower traffic in one region, so Iβd recommend increasing marketing spend there.β
9οΈβ£ Project Explanation Template
> βThe goal was . I used to clean data, to analyze, and to visualize. The key insight was . The business impact was .β
Memorize this.
π HR Power Answers
Why data analyst?
> βI enjoy finding patterns in data and turning them into actionable insights.β
Strength:
βI combine technical skills with business understanding.β
Weakness:
βI used to over-analyze, but now I focus on impact.β
π§ Last-Day Interview Tips
β’ Think out loud
β’ Ask clarifying questions
β’ Donβt jump to tools immediately
β’ Focus on impact, not syntax
π¬ Tap β€οΈ for more!
1οΈβ£ Role Clarity
> βA data analyst collects, cleans, analyzes data, and converts it into insights that help businesses make decisions.β
2οΈβ£ SQL (Most Important)
Must-know clauses:
β’ SELECT, WHERE, ORDER BY, LIMIT
β’ GROUP BY, HAVING
β’ JOINS (INNER, LEFT)
β’ Subqueries, CTEs
β’ Window functions (ROW_NUMBER, RANK)
Golden rules:
β’ WHERE β before aggregation
β’ HAVING β after aggregation
β’ LEFT JOIN β keeps all left table rows
β’ NULLs break calculations β use COALESCE
Classic questions:
β’ Top N per group
β’ Find duplicates
β’ Running totals
3οΈβ£ Excel Essentials
Formulas:
β’ IF, XLOOKUP
β’ COUNTIFS, SUMIFS
β’ TRIM, LEFT, RIGHT
Core features:
β’ Pivot tables
β’ Conditional formatting
β’ Data validation (dropdowns)
Avoid:
β’ Merged cells
β’ Hard-coded values
4οΈβ£ Power BI / Tableau
Concepts:
β’ Data model (star schema)
β’ Relationships (one-to-many)
β’ Measures > calculated columns
Must-know DAX:
β’ Total Sales = SUM(Sales[Amount])
β’ YTD Sales = TOTALYTD(SUM(Sales[Amount]), Sales[Date])
Design rules:
β’ KPIs on top
β’ One story per dashboard
β’ Minimal visuals
5οΈβ£ Statistics (Only What Matters)
β’ Mean vs Median
β’ Standard deviation
β’ Correlation β causation
β’ Outliers distort averages
β’ Use median for Salaries, House prices
6οΈβ£ Data Cleaning (Interview Gold)
Steps you should say:
1. Remove duplicates
2. Handle missing values
3. Fix data types
4. Standardize text
7οΈβ£ Business Metrics
β’ Revenue
β’ Growth rate
β’ Conversion rate
β’ Churn
β’ Retention
β’ Average order value
Always connect metrics to business impact.
8οΈβ£ Case Question Framework (Very Important)
Always answer like this:
1. What happened
2. Why it happened
3. What should be done
Example:
> βSales dropped due to lower traffic in one region, so Iβd recommend increasing marketing spend there.β
9οΈβ£ Project Explanation Template
> βThe goal was . I used to clean data, to analyze, and to visualize. The key insight was . The business impact was .β
Memorize this.
π HR Power Answers
Why data analyst?
> βI enjoy finding patterns in data and turning them into actionable insights.β
Strength:
βI combine technical skills with business understanding.β
Weakness:
βI used to over-analyze, but now I focus on impact.β
π§ Last-Day Interview Tips
β’ Think out loud
β’ Ask clarifying questions
β’ Donβt jump to tools immediately
β’ Focus on impact, not syntax
π¬ Tap β€οΈ for more!
β€19π2
β
Step-by-Step Approach to Learn Data Analytics ππ§
β Excel Fundamentals:
β Master formulas, pivot tables, data validation, charts, and graphs.
β SQL Basics:
β Learn to query databases, use SELECT, FROM, WHERE, JOIN, GROUP BY, and aggregate functions.
β Data Visualization:
β Get proficient with tools like Tableau or Power BI to create insightful dashboards.
β Statistical Concepts:
β Understand descriptive statistics (mean, median, mode), distributions, and hypothesis testing.
β Data Cleaning & Preprocessing:
β Learn how to handle missing data, outliers, and data inconsistencies.
β Exploratory Data Analysis (EDA):
β Explore datasets, identify patterns, and formulate hypotheses.
β Python for Data Analysis (Optional but Recommended):
β Learn Pandas and NumPy for data manipulation and analysis.
β Real-World Projects:
β Analyze datasets from Kaggle, UCI Machine Learning Repository, or your own collection.
β Business Acumen:
β Understand key business metrics and how data insights impact business decisions.
β Build a Portfolio:
β Showcase your projects on GitHub, Tableau Public, or a personal website. Highlight the impact of your analysis.
π Tap β€οΈ for more!
β Excel Fundamentals:
β Master formulas, pivot tables, data validation, charts, and graphs.
β SQL Basics:
β Learn to query databases, use SELECT, FROM, WHERE, JOIN, GROUP BY, and aggregate functions.
β Data Visualization:
β Get proficient with tools like Tableau or Power BI to create insightful dashboards.
β Statistical Concepts:
β Understand descriptive statistics (mean, median, mode), distributions, and hypothesis testing.
β Data Cleaning & Preprocessing:
β Learn how to handle missing data, outliers, and data inconsistencies.
β Exploratory Data Analysis (EDA):
β Explore datasets, identify patterns, and formulate hypotheses.
β Python for Data Analysis (Optional but Recommended):
β Learn Pandas and NumPy for data manipulation and analysis.
β Real-World Projects:
β Analyze datasets from Kaggle, UCI Machine Learning Repository, or your own collection.
β Business Acumen:
β Understand key business metrics and how data insights impact business decisions.
β Build a Portfolio:
β Showcase your projects on GitHub, Tableau Public, or a personal website. Highlight the impact of your analysis.
π Tap β€οΈ for more!
β€25π5
If you want to Excel as a Data Analyst, master these powerful skills:
β’ SQL Queries β SELECT, JOINs, GROUP BY, CTEs, Window Functions
β’ Excel Functions β VLOOKUP, XLOOKUP, PIVOT TABLES, POWER QUERY
β’ Data Cleaning β Handle missing values, duplicates, and inconsistencies
β’ Python for Data Analysis β Pandas, NumPy, Matplotlib, Seaborn
β’ Data Visualization β Create dashboards in Power BI/Tableau
β’ Statistical Analysis β Hypothesis testing, correlation, regression
β’ ETL Process β Extract, Transform, Load data efficiently
β’ Business Acumen β Understand industry-specific KPIs
β’ A/B Testing β Data-driven decision-making
β’ Storytelling with Data β Present insights effectively
Like it if you need a complete tutorial on all these topics! πβ€οΈ
β’ SQL Queries β SELECT, JOINs, GROUP BY, CTEs, Window Functions
β’ Excel Functions β VLOOKUP, XLOOKUP, PIVOT TABLES, POWER QUERY
β’ Data Cleaning β Handle missing values, duplicates, and inconsistencies
β’ Python for Data Analysis β Pandas, NumPy, Matplotlib, Seaborn
β’ Data Visualization β Create dashboards in Power BI/Tableau
β’ Statistical Analysis β Hypothesis testing, correlation, regression
β’ ETL Process β Extract, Transform, Load data efficiently
β’ Business Acumen β Understand industry-specific KPIs
β’ A/B Testing β Data-driven decision-making
β’ Storytelling with Data β Present insights effectively
Like it if you need a complete tutorial on all these topics! πβ€οΈ
β€41π14