DA0-001 Visualizing Data • Complete Question Bank
Complete DA0-001 Visualizing Data question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Country of origin (e.g., USA, Canada)
Customer satisfaction rating (1-5)
Temperature in Celsius
Annual income in dollars
Gender (Male, Female, Other)
Drag a concept onto its matching description — or click a concept then click the description.
Query and manipulate structured data in databases
General-purpose language for data analysis and modeling
Statistical computing and graphics
Interactive data visualization and dashboards
Spreadsheet for data manipulation and basic analysis
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;
Refer to the exhibit.
JSON configuration for a dashboard widget:
{
"chartType": "line",
"dataSource": {
"query": "SELECT date, avg(response_time) FROM logs GROUP BY date ORDER BY date"
},
"visualProperties": {
"xField": "date",
"yField": "avg(response_time)",
"aggregation": "none",
"interpolation": "linear"
}
}Refer to the exhibit. Sample syslog output: 2024-05-01 08:15:22 ERROR [app1] Connection timeout to DB 2024-05-01 08:17:45 ERROR [app1] Connection timeout to DB 2024-05-01 08:20:10 ERROR [app2] Invalid credentials 2024-05-01 08:22:33 ERROR [app1] Connection timeout to DB 2024-05-01 08:25:50 ERROR [app3] Disk full
{
"dataset": {
"access": {
"users": ["admin", "analyst"],
"permissions": ["read", "write"]
}
}
}Error: Incompatible data type for column 'revenue' in visualization chart. Expected numeric, received string.
chart: {
type: 'line',
data: {
labels: ['Q1','Q2','Q3','Q4'],
datasets: [{
label: 'Sales',
data: [100,200,150,300]
}]
},
options: {
scales: {
y: {
beginAtZero: false
}
}
}
}Refer to the exhibit. Tableau Workbook Log: Sheet: Sales by Region Mark Type: Map Latitude: [Region.Latitude] Longitude: [Region.Longitude] Color: SUM(Profit) Tooltip: Region, SUM(Sales), SUM(Profit) Error: Some regions display as null.