Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Free Resources

Difficulty IndexLearn — Free ChaptersIT GlossaryFree Tools & LabsStudy GuidesCareer RoadmapsBrowse by VendorCisco Command ReferenceCCNA Scenarios

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

← Mining Data practice sets

DA0-001 Mining Data • Complete Question Bank

DA0-001 Mining Data — All Questions With Answers

Complete DA0-001 Mining Data question bank — all 0 questions with answers and detailed explanations.

113
Questions
Free
No signup
Certifications/DA0-001/Practice Test/Mining Data/All Questions
Question 1easymultiple choice
Read the full Mining Data explanation →

A data analyst needs to retrieve all unique job titles from an employees table. Which SQL keyword should be used in the SELECT clause?

Question 2mediummultiple choice
Read the full Mining Data explanation →

A data analyst is profiling a new dataset containing customer information. When assessing data quality, which metric would be most appropriate to determine if the 'email' column contains valid email addresses?

Question 3hardmultiple choice
Read the full Mining Data explanation →

A data analyst is working with a sales table that contains columns: sale_id, product_id, sale_date, and amount. They need to calculate a 7-day moving average of sales amount for each product, ordered by sale_date. Which window function syntax should they use?

Question 4mediummultiple choice
Read the full Mining Data explanation →

A data analyst needs to extract the year from a column named 'order_date' in a SQL database. The database supports standard SQL functions. Which function should they use?

Question 5easymultiple choice
Read the full Mining Data explanation →

A data analyst wants to retrieve the top 5 highest-paid employees from a table named 'employees' that has columns 'employee_id', 'salary', and 'name'. Which SQL query should they use?

Question 6mediummultiple choice
Read the full Mining Data explanation →

A data analyst is performing exploratory data analysis on a dataset containing house prices. They want to identify outliers in the 'price' column using the IQR method. The first quartile (Q1) is $200,000, the third quartile (Q3) is $350,000, and the IQR is $150,000. What is the upper bound for identifying outliers?

Question 7hardmultiple choice
Read the full Mining Data explanation →

A data analyst needs to perform stratified sampling on a customer database to ensure proportional representation across three regions: North (40%), South (30%), and West (30%). The total sample size required is 1,000. How many customers should be sampled from the North region?

Question 8mediummultiple choice
Read the full Mining Data explanation →

A data analyst uses a CTE to find employees who earn more than the average salary in their department. Which SQL clause is used to define the CTE?

Question 9mediummultiple choice
Study the full Python automation breakdown →

A data analyst is using pandas in Python to merge two DataFrames: sales (columns: sale_id, product_id, amount) and products (columns: product_id, product_name). Which pandas function should they use to combine these DataFrames on the 'product_id' column?

Question 10easymultiple choice
Read the full Mining Data explanation →

In SQL, which string function would you use to remove leading and trailing spaces from a column named 'city'?

Question 11hardmultiple choice
Read the full Mining Data explanation →

A data analyst is writing a query to rank products by total sales amount within each category. They want ties to have the same rank and no gaps in the ranking sequence. Which window function should they use?

Question 12mediummultiple choice
Read the full Mining Data explanation →

A data analyst needs to count the number of orders placed by each customer, but only for customers who have placed more than 5 orders. Which SQL clause should be used to filter the aggregated results?

Question 13mediummulti select
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer table. Which TWO of the following are key metrics to assess data quality? (Select TWO.)

Question 14hardmulti select
Read the full Mining Data explanation →

A data analyst is using a recursive CTE to traverse a hierarchical organizational chart. Which THREE components are required to define a recursive CTE? (Select THREE.)

Question 15mediummulti select
Read the full Mining Data explanation →

A data analyst wants to sample a large dataset of customer transactions. Which TWO sampling methods are probability-based and ensure every element has a known chance of being selected? (Select TWO.)

Question 16easymultiple choice
Read the full Mining Data explanation →

In a dataset of customer orders, you need to count the number of distinct customers who have placed orders. Which SQL aggregate function should you use?

Question 17easymultiple choice
Study the full Python automation breakdown →

You are using pandas in Python to clean a dataset. You notice several rows with missing values in the 'age' column. Which method would you use to remove those rows?

Question 18mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to retrieve the top 5 highest-paid employees from an 'employees' table, including ties. Which SQL clause should be used?

Question 19mediummultiple choice
Read the full Mining Data explanation →

You are analyzing sales data and need to calculate the moving average of monthly sales over the previous 3 months for each month. Which type of function is best suited for this task?

Question 20mediummultiple choice
Read the full Mining Data explanation →

A data quality assessment reveals that a column named 'email' contains values like 'user@example' (missing domain extension). Which data profiling technique would best identify such pattern violations?

Question 21mediummultiple choice
Read the full Mining Data explanation →

A data analyst needs to sample 10% of customers from each of three regions (North, South, Central) to ensure proportional representation. Which sampling method should be used?

Question 22easymultiple choice
Read the full Mining Data explanation →

In SQL, you want to retrieve all products whose names start with 'Pro'. Which WHERE clause should you use?

Question 23hardmultiple choice
Read the full Mining Data explanation →

You have a table 'Orders' with columns order_id, customer_id, order_date, and amount. You need to write a query that returns each customer's most recent order date and the amount for that order. Which approach is correct?

Question 24mediummultiple choice
Read the full Mining Data explanation →

During exploratory data analysis, you calculate the IQR for a numeric column and find that several data points fall below Q1 - 1.5*IQR. These points are likely:

Question 25hardmultiple choice
Read the full Mining Data explanation →

You have a hierarchical table 'Employees' with columns emp_id, emp_name, manager_id (referencing emp_id). You need to generate a full reporting chain from a given employee up to the CEO. Which SQL construct is most appropriate?

Question 26mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to extract the year from a date column 'order_date' in a SQL database. Which function should be used?

Question 27easymultiple choice
Read the full Mining Data explanation →

In pandas, you have a DataFrame 'df' with columns 'product' and 'sales'. You want to calculate the total sales per product. Which method should you use?

Question 28mediummulti select
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer table. Which TWO metrics are most useful for understanding the completeness of the data? (Choose two.)

Question 29hardmulti select
Read the full Mining Data explanation →

A data analyst needs to identify the top 3 most frequent product categories from a sales table. Which SQL techniques can be used to achieve this? (Choose two.)

Question 30mediummulti select
Read the full Mining Data explanation →

A data analyst is cleaning text data in a SQL database. Which THREE string functions are commonly used to standardize and clean text? (Choose three.)

Question 31easymultiple choice
Read the full Mining Data explanation →

A data analyst needs to retrieve only unique job titles from the 'employees' table. Which SQL keyword should be used in the SELECT clause?

Question 32mediummultiple choice
Read the full Mining Data explanation →

A dataset contains sales transactions with columns 'order_date', 'amount', and 'region'. The analyst wants to calculate the total sales per region for orders placed in 2023, but only include regions where total sales exceed $10,000. Which SQL clause should be used to filter the aggregated results?

Question 33hardmultiple choice
Read the full Mining Data explanation →

In a table 'employee_hierarchy' with columns 'employee_id', 'manager_id', and 'employee_name', an analyst needs to generate a list of all employees under a specific manager, including multiple levels of subordinates. Which SQL construct is most appropriate for querying this hierarchical data efficiently?

Question 34mediummultiple choice
Read the full Mining Data explanation →

A data analyst runs a query to count the number of customers in each city. The query uses COUNT(*) and GROUP BY city. However, the result includes NULL for some cities. What will COUNT(*) return for a group where the city is NULL?

Question 35easymultiple choice
Read the full Mining Data explanation →

A table 'orders' contains columns 'order_id', 'customer_id', 'order_date', and 'total'. An analyst needs to find orders placed between January 1, 2023 and December 31, 2023. Which WHERE clause is correct?

Question 36mediummultiple choice
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer dataset. Which metric would best reveal the number of distinct values in the 'state' column?

Question 37hardmultiple choice
Study the full Python automation breakdown →

An analyst is using Python pandas and has a DataFrame 'sales' with columns 'date', 'product', 'revenue'. They need to create a pivot table showing total revenue per product per month. Which pandas function is most appropriate?

Question 38mediummultiple choice
Read the full Mining Data explanation →

A dataset contains a 'salary' column. The analyst wants to identify outliers using the IQR method. If Q1 = 40,000 and Q3 = 70,000, what is the upper threshold for a non-outlier?

Question 39mediummultiple choice
Read the full Mining Data explanation →

An analyst is sampling a large customer database to estimate the average purchase amount. To ensure that the sample proportionally represents different customer segments (e.g., age groups), which sampling method should be used?

Question 40easymultiple choice
Read the full Mining Data explanation →

Which SQL aggregate function would an analyst use to calculate the average value of a numeric column?

Question 41mediummultiple choice
Read the full Mining Data explanation →

A data analyst is cleaning a dataset and finds that some cells in the 'email' column contain leading spaces. Which string function should be used to remove these spaces?

Question 42hardmultiple choice
Read the full Mining Data explanation →

In a table 'sales_team' with columns 'salesperson', 'quarter', and 'revenue', an analyst wants to assign a rank to each salesperson within their quarter based on revenue, with the highest revenue getting rank 1. However, if two salespeople have the same revenue, they should receive the same rank, and the next rank should be the next consecutive integer (no gaps). Which window function should be used?

Question 43mediummulti select
Read the full Mining Data explanation →

A data analyst is conducting exploratory data analysis (EDA) on a dataset. Which TWO tasks are typically performed during EDA? (Select two.)

Question 44hardmulti select
Read the full Mining Data explanation →

An analyst is using SQL to analyze employee data. Which THREE of the following are valid uses of the WHERE clause? (Select three.)

Question 45mediummulti select
Read the full Mining Data explanation →

A data analyst needs to perform a stratified random sample of a customer database. Which TWO steps are essential for this sampling method? (Select two.)

Question 46easymultiple choice
Read the full Mining Data explanation →

A data analyst needs to count the number of distinct product categories in a table named 'products'. Which SQL function should be used in the SELECT clause?

Question 47easymultiple choice
Read the full Mining Data explanation →

A data analyst wants to identify customers whose last name starts with 'Mc' from the 'customers' table. Which WHERE clause condition should be used?

Question 48mediummultiple choice
Read the full Mining Data explanation →

A data analyst is reviewing sales data and wants to find orders where the order total is between $100 and $500, inclusive. Which WHERE clause is correct?

Question 49mediummultiple choice
Read the full Mining Data explanation →

A data analyst runs the query: SELECT AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 60000. What is the purpose of the HAVING clause?

Question 50easymultiple choice
Read the full Mining Data explanation →

Which SQL function can be used to extract the year from a date column 'order_date'?

Question 51mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to assign a unique sequential integer to each row in a result set, starting at 1, based on the order of the 'sales_amount' column descending. Which window function should be used?

Question 52hardmultiple choice
Read the full Mining Data explanation →

A data analyst is using a recursive CTE to traverse an organizational hierarchy. What is the purpose of the anchor member in the recursive CTE?

Question 53mediummultiple choice
Read the full Mining Data explanation →

A data analyst is profiling a dataset and finds that the 'email' column contains some NULL values. Which SQL query can be used to count how many rows have a NULL email?

Question 54easymultiple choice
Read the full Mining Data explanation →

Which data sampling method involves selecting every k-th element from a list after a random start?

Question 55mediummultiple choice
Read the full Mining Data explanation →

A data analyst is using pandas to read a CSV file named 'sales.csv'. Which line of code correctly reads the file into a DataFrame?

Question 56hardmultiple choice
Read the full Mining Data explanation →

A data analyst is using the IQR method to identify outliers in a dataset. The first quartile (Q1) is 25 and the third quartile (Q3) is 45. What is the upper bound for identifying outliers?

Question 57mediummultiple choice
Read the full Mining Data explanation →

A data analyst needs to create a new column 'full_name' by concatenating 'first_name' and 'last_name' with a space. Which SQL function should be used in the SELECT clause?

Question 58mediummulti select
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer table. Which TWO metrics are commonly used to assess the completeness of a column? (Select TWO.)

Question 59hardmulti select
Read the full Mining Data explanation →

A data analyst is investigating a correlation between two continuous variables. Which THREE of the following are appropriate steps in this exploratory data analysis? (Select THREE.)

Question 60mediummulti select
Read the full Mining Data explanation →

A data analyst wants to retrieve the top 5 highest-paid employees from the 'employees' table. Which SQL clauses could be used to achieve this? (Select TWO.)

Question 61easymultiple choice
Read the full Mining Data explanation →

A data analyst needs to count the number of customers who have placed at least one order. Which SQL query should be used?

Question 62mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to find the top 5 products by total sales amount, but only for products that have been sold more than 50 times. Which SQL query accomplishes this?

Question 63hardmultiple choice
Read the full Mining Data explanation →

An analyst needs to compute a running total of sales for each department, ordered by date. Which window function is most appropriate?

Question 64mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to generate a report showing employee names and their department names, but some employees are not assigned to any department. The analyst wants to include all employees. Which JOIN type should be used?

Question 65mediummultiple choice
Read the full Mining Data explanation →

A dataset contains a column 'birthdate' in 'YYYY-MM-DD' format. The analyst needs to calculate the average age of customers as of today. Which combination of functions is most appropriate?

Question 66easymultiple choice
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer table. Which metric would best help identify missing values in the 'phone' column?

Question 67mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to randomly select 100 customers from a database for a survey, ensuring that the sample reflects the proportion of male and female customers in the population. Which sampling method is most appropriate?

Question 68hardmultiple choice
Read the full Mining Data explanation →

In a table with columns 'employee_id' and 'manager_id', a data analyst needs to retrieve the hierarchy level of each employee, where the top manager has manager_id NULL. Which SQL feature is best suited?

Question 69mediummultiple choice
Study the full Python automation breakdown →

A data analyst is using pandas in Python to clean a dataset. Which method is most appropriate to replace missing numerical values with the median of the column?

Question 70easymultiple choice
Read the full Mining Data explanation →

An analyst wants to identify outliers in a dataset using the IQR method. Which values are typically considered outliers?

Question 71hardmultiple choice
Read the full Mining Data explanation →

A dataset contains transaction amounts with a few extremely high values. The analyst wants to reduce the impact of these outliers on the average. Which measure of central tendency is most robust?

Question 72mediummultiple choice
Read the full Mining Data explanation →

A data analyst uses a CTE to simplify a complex query. Which keyword is used to define a CTE?

Question 73mediummulti select
Read the full Mining Data explanation →

A data analyst is exploring a sales dataset and wants to identify columns that are likely to be foreign keys. Which TWO characteristics would indicate a foreign key?

Question 74hardmulti select
Study the full Python automation breakdown →

A data analyst is using Python pandas to perform exploratory data analysis. Which THREE methods are commonly used to assess data quality and distributions?

Question 75easymulti select
Read the full Mining Data explanation →

A data analyst needs to sample records from a large dataset for a quick analysis. Which TWO sampling methods are examples of probability sampling?

Question 76easymultiple choice
Read the full Mining Data explanation →

A data analyst runs the following query: SELECT DISTINCT city FROM customers. What is the primary purpose of using the DISTINCT keyword in this query?

Question 77easymultiple choice
Read the full Mining Data explanation →

In a sales database, an analyst needs to retrieve all orders where the order amount is between $100 and $500. Which WHERE clause should be used?

Question 78mediummultiple choice
Read the full Mining Data explanation →

A data analyst uses the following query: SELECT department, AVG(salary) AS avg_salary FROM employees GROUP BY department HAVING AVG(salary) > 50000. What is the purpose of the HAVING clause in this query?

Question 79mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to concatenate first_name and last_name columns with a space in between. Which string function combination should be used in SQL?

Question 80mediummultiple choice
Read the full Mining Data explanation →

An analyst needs to retrieve the year from an order_date column (datetime type). Which function should be used in SQL?

Question 81hardmultiple choice
Read the full Mining Data explanation →

A data analyst is using a window function to assign a unique rank to each employee within their department based on salary, with ties receiving the same rank and leaving gaps. Which function should be used?

Question 82hardmultiple choice
Read the full Mining Data explanation →

A data analyst needs to create a recursive CTE to traverse a hierarchical employee-manager table. Which of the following is a key requirement for a recursive CTE?

Question 83mediummultiple choice
Read the full Mining Data explanation →

A data analyst is performing data profiling on a customer table. Which metric provides the number of unique values in a column?

Question 84mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to ensure a sample proportionally represents different regions in a population. Which sampling method should be used?

Question 85mediummultiple choice
Read the full Mining Data explanation →

During EDA, an analyst calculates the Z-score for each data point in a dataset. A data point with a Z-score of 3.5 is identified. What does this indicate?

Question 86easymultiple choice
Study the full Python automation breakdown →

A data analyst uses Python's pandas library to read a CSV file into a DataFrame. Which function is used to read the file?

Question 87hardmultiple choice
Read the full Mining Data explanation →

An analyst writes a SQL query that uses a window function: SELECT employee_id, salary, LAG(salary, 1) OVER (ORDER BY salary DESC) AS prev_salary FROM employees. What does the LAG function return for the row with the highest salary?

Question 88mediummulti select
Read the full Mining Data explanation →

A data analyst needs to identify duplicate customer records based on email and phone number. Which SQL techniques can be used to find duplicates? (Select TWO).

Question 89hardmulti select
Read the full Mining Data explanation →

A data analyst is performing EDA on a dataset with numerical features. Which methods are appropriate for identifying outliers? (Select TWO).

Question 90mediummulti select
Read the full Mining Data explanation →

An analyst needs to aggregate sales data by region and product, then sort the results by total sales in descending order. Which SQL clauses are required? (Select THREE).

Question 91easymultiple choice
Read the full Mining Data explanation →

A data analyst needs to retrieve all unique job titles from the employees table. Which SQL clause should be used with the SELECT statement?

Question 92mediummultiple choice
Read the full Mining Data explanation →

A data analyst wants to find customers whose last name starts with 'Mc' and have made purchases in 2023. The purchase table has a purchase_date column. Which SQL query accomplishes this?

Question 93hardmultiple choice
Read the full Mining Data explanation →

A data analyst is writing a query to rank products by total sales within each category, showing dense rank and avoiding gaps. Which window function should be used?

Question 94mediummultiple choice
Read the full Mining Data explanation →

An analyst needs to count the number of orders per customer but only for customers who have placed more than 5 orders. Which SQL construct allows filtering after aggregation?

Question 95easymultiple choice
Read the full Mining Data explanation →

A data analyst wants to create a temporary result set that can be referenced within a single SQL statement. Which feature should be used?

Question 96hardmultiple choice
Read the full Mining Data explanation →

A data analyst is using pandas to clean a DataFrame. They need to replace missing values in the 'age' column with the median age. Which method should they use?

Question 97mediummultiple choice
Read the full Mining Data explanation →

During data profiling, an analyst wants to identify the number of distinct values in a column. Which SQL function should be used?

Question 98mediummultiple choice
Read the full Mining Data explanation →

A data analyst needs to sample 1000 customers from a database of 100,000 customers for a survey, ensuring every customer has an equal chance of selection. Which sampling method is most appropriate?

Question 99mediummultiple choice
Read the full Mining Data explanation →

In a dataset of employee salaries, the analyst notices one value that is significantly higher than the rest. Using the IQR method, which values are typically considered outliers?

Question 100easymultiple choice
Read the full Mining Data explanation →

A data analyst wants to combine first_name and last_name columns into a single full_name column in a SQL query. Which string function should be used?

Question 101hardmultiple choice
Read the full Mining Data explanation →

A data analyst needs to calculate the running total of sales for each product over time. Which window function clause is essential for this calculation?

Question 102mediummultiple choice
Read the full Mining Data explanation →

An analyst is performing EDA and wants to measure the strength and direction of linear relationship between two continuous variables. Which statistical measure should they compute?

Question 103mediummulti select
Read the full Mining Data explanation →

A data analyst is validating referential integrity between orders and customers tables. Which TWO of the following checks should the analyst perform?

Question 104hardmulti select
Read the full Mining Data explanation →

An analyst is using a CTE to compute hierarchical data. Which TWO statements about recursive CTEs are true?

Question 105easymulti select
Read the full Mining Data explanation →

A data analyst wants to export a summary report from a DataFrame in pandas. Which THREE methods are commonly used for data export?

Question 106mediummultiple choice
Read the full Mining Data explanation →

A data analyst is using SQL to filter a sales table for transactions that occurred in either 'Q1' or 'Q3' of 2023 and have a sale amount greater than $100. Which WHERE clause correctly implements this condition?

Question 107mediummulti select
Read the full Mining Data explanation →

A data analyst is reviewing a dataset of customer transactions and wants to assess data quality by profiling the 'order_date' column. Which TWO profiling tasks are most appropriate for this date column? (Select TWO).

Question 108hardmulti select
Read the full Mining Data explanation →

An e-commerce company wants to analyze sales performance across product categories. The dataset includes transaction amounts and a column 'category' with values (Electronics, Clothing, Home). The analyst decides to use stratified sampling to ensure proportional representation. Which THREE steps are required to implement this? (Select THREE).

Question 109easymulti select
Read the full Mining Data explanation →

A data analyst is using pandas to clean a DataFrame that contains missing values in the 'age' and 'income' columns. Which THREE pandas methods are appropriate for handling missing data? (Select THREE).

Question 110mediummulti select
Read the full Mining Data explanation →

An analyst needs to identify outliers in a numeric column 'transaction_amount' using the interquartile range (IQR) method. Which TWO steps are part of this process? (Select TWO).

Question 111hardmulti select
Read the full Mining Data explanation →

A data analyst uses a Common Table Expression (CTE) to query hierarchical employee data (manager_id references employee_id). Which THREE statements about recursive CTEs are correct? (Select THREE).

Question 112easymulti select
Read the full Mining Data explanation →

A data analyst needs to retrieve the top 5 most expensive products from a 'products' table sorted by price descending. Which TWO SQL clauses are required to achieve this? (Select TWO).

Question 113mediummulti select
Study the full Python automation breakdown →

An analyst wants to use Python (pandas) to compute the average sales amount per region from a DataFrame 'df' with columns 'region' and 'sales'. Which TWO pandas operations are needed? (Select TWO).

Practice tests

Scored 10-question sessions with instant feedback and explanations.

DA0-001 Practice Test 1 — 25 Questions→DA0-001 Practice Test 2 — 25 Questions→DA0-001 Practice Test 3 — 25 Questions→DA0-001 Practice Test 4 — 25 Questions→DA0-001 Practice Test 5 — 25 Questions→DA0-001 Practice Exam 1 — 20 Questions→DA0-001 Practice Exam 2 — 20 Questions→DA0-001 Practice Exam 3 — 20 Questions→DA0-001 Practice Exam 4 — 20 Questions→Free DA0-001 Practice Test 1 — 30 Questions→Free DA0-001 Practice Test 2 — 30 Questions→Free DA0-001 Practice Test 3 — 30 Questions→DA0-001 Practice Questions 1 — 50 Questions→DA0-001 Practice Questions 2 — 50 Questions→DA0-001 Exam Simulation 1 — 100 Questions→

Practice by domain

Each domain maps to a weighted exam section. Focus on the domain where you are weakest.

Data Concepts and EnvironmentsAnalysing DataVisualising DataReporting InsightsMining DataComparing and Contrasting Data ConceptsMining and Acquiring DataAnalyzing and Modeling DataVisualizing DataCommunicating Data Insights

Practice by scenario

Filter questions by type — troubleshooting, exhibit, drag-and-drop, PBQ, ACLs, OSPF, and more.

Browse scenarios→

Continue studying

All Mining Data setsAll Mining Data questionsDA0-001 Practice Hub