Interview Questions (Day - 15)
Interview Questions (Day - 15)
SQL:
Note for 6th question : create a table with 10 entries in sql which contains employee
ID, employee name, employee age and employee salary
PowerBI:
1. Can you demonstrate how to create a filter in Power BI using both visual-level
and report-level filtering?
2. Discuss a real-world scenario where row-level security would be implemented
in Power BI, and explain the steps to set it up.
3. Can you provide an example of how you would create a data model in Power
BI for a sales analysis dashboard?
4. Show me how to create a slicer in Power BI and how it can be used to
interactively filter data in visualizations.
5. Write a DAX expression using the CALCULATE function to calculate the total
sales for a specific region and time period in Power BI.
Tableau:
1. Demonstrate how to connect Tableau to a CSV file and perform basic data
exploration tasks.
2. Explain how Tableau Data Server facilitates collaboration among team
members in a data analysis project.
3. How would you handle a large dataset in Tableau to optimize performance
and ensure efficient data analysis?
4. Compare and contrast Tableau Desktop, Tableau Prep, and Tableau Server
in terms of their functionalities and use cases.
5. Connect Tableau to a relational database (e.g., MySQL) and create a basic
visualization using the connected data.
SQL Coding :
1. Retrieve the orders placed on a specific date and sort them by the customer name in
alphabetical order. Dataset: Orders (order_id, order_date, customer_id)
3. Get the list of employees sorted by their salary in descending order. NULL values should
appear at the beginning. Dataset: Employees (employee_id, employee_name, salary)
4. Retrieve the customers whose names contain a space character. Dataset: Customers
(customer_id, customer_name)
5. Calculate the total quantity and total amount for each order.
6. Find the average age and the number of employees for each job title.