DA0-001 Visualizing Data • Set 4
DA0-001 Visualizing Data Practice Test 4 — 15 questions with explanations. Free, no signup.
The exhibit shows a SQL query result intended for a bar chart of revenue by region. However, the chart shows only the top 10 regions, but the query returns all regions. What is the most likely cause?
Refer to the exhibit. Table Name: sales_data Columns: region, product, units_sold, price, date Query: SELECT region, SUM(units_sold * price) as revenue FROM sales_data GROUP BY region ORDER BY revenue DESC;