Luyện 60 câu hỏi Google Data Analytics gốc về vòng đời dữ liệu, bảng tính, SQL, R, Tableau và bảng điều khiển.
Cấp độ: Google Data Analytics Professional CertificateĐộ khó: intermediate60 câu hỏi60 phút
Chọn chế độ luyện tập, trả lời từng câu rồi xem lời giải. Câu sai được lưu cục bộ.
Chuỗi ngày: 0 ngàyChỉ lưu trên thiết bị này
Tiến độ0 / 60
Thời gian còn lại: 00:00
Chưa có câu sai được lưu.
Không có câu hỏi phù hợp với bộ lọc.
Câu hỏi 1
What is the first phase of the data analysis process?
The data analysis process starts with Ask: defining the problem and questions before collecting or analyzing data. Prepare, Process, and Act come later.
Câu hỏi 2
What happens during the Prepare phase of data analysis?
Prepare involves gathering the right data and keeping it secure, organized, and ready for analysis. Dashboards, models, and deletion are not the main goals of this phase.
Câu hỏi 3
What does the Analyze phase focus on?
Analyze is where data is explored, cleaned, and transformed so patterns and conclusions can be identified. Question definition happens in Ask and reporting happens in Share/Act.
Câu hỏi 4
What is a primary data source?
Primary data is collected firsthand for a specific analysis. Data from other organizations is secondary, and a spreadsheet or website can contain either type.
Câu hỏi 5
Structured data has no fixed format.
Structured data is organized in a fixed format such as rows and columns. Unstructured data, like text and images, has no fixed structure.
Câu hỏi 6
Which example is unstructured data?
Customer reviews are text without a fixed row-and-column structure. Tables, databases, and CSV files are structured data.
Câu hỏi 7
What is data bias?
Bias in data can come from sampling, collection, or labeling and can make conclusions less accurate. It is not a formula, duplicate, or encryption issue.
Câu hỏi 8
What does data ethics require?
Data ethics means using data in ways that are fair, transparent, and respect privacy. It does not require publishing everything or collecting/storing data without limits.
Câu hỏi 9
What does the Share phase include?
Share is about presenting findings clearly so stakeholders can act. Collecting, cleaning, and selecting databases belong to earlier phases.
Câu hỏi 10
What is a cell in a spreadsheet?
A cell is where a row and column meet and can hold a value or formula. Tabs, charts, and tables are different spreadsheet objects.
Câu hỏi 11
What does a pivot table do?
Pivot tables aggregate and rearrange data so patterns can be seen quickly. They do not delete rows, encrypt files, or only make charts.
Câu hỏi 12
Which spreadsheet function finds a value by looking up a matching key?
XLOOKUP searches a range for a key and returns a matching value. SUM, COUNT, and TODAY perform different calculations.
Câu hỏi 13
What does TRIM do in a spreadsheet?
TRIM removes leading, trailing, and repeated spaces. Deleting rows, rounding, and uppercasing are separate operations.
Câu hỏi 14
What is conditional formatting?
Conditional formatting changes cell appearance when values meet conditions, such as highlighting scores above a threshold. It is not row formatting, merging, or freezing.
Câu hỏi 15
What does COUNTIF do?
COUNTIF counts cells meeting one condition. SUM adds values, MAX finds the largest, and COUNTA counts nonempty cells without a condition.
Câu hỏi 16
Which of the following are text-cleaning spreadsheet functions? Select all that apply.
TRIM removes spaces, CLEAN removes nonprintable characters, and UPPER changes text to uppercase. NOW returns the current date and time.
Câu hỏi 17
What is data validation in a spreadsheet?
Data validation controls allowed input, such as a list or number range. It is not spell check, formula summary, or a chart.
Câu hỏi 18
What does SPLIT do in Google Sheets?
SPLIT separates text into multiple cells using a delimiter. Merging, splitting tabs, and removing duplicates are different operations.
Câu hỏi 19
What is a named range?
A named range gives a range a memorable name for formulas. It is not a chart title, formula name, or sheet protection.
Câu hỏi 20
Which SQL clause filters rows based on a condition?
WHERE filters rows before grouping or sorting. ORDER BY sorts, GROUP BY aggregates, and LIMIT limits the number of rows.
Câu hỏi 21
Which SQL keyword returns all columns from a table?
SELECT * returns every column. SELECT ALL is not a standard wildcard, SHOW COLUMNS describes columns, and RETURN is not a SQL clause.
Câu hỏi 22
What does GROUP BY do in SQL?
GROUP BY groups rows so aggregate functions such as COUNT, SUM, and AVG can be applied per group. Sorting, deduplication, and joining are separate operations.
Câu hỏi 23
Which SQL function counts the number of rows?
COUNT returns the number of rows or non-null values. SUM adds numeric values, AVG averages them, and LENGTH measures text.
Câu hỏi 24
What does DISTINCT do in SQL?
SELECT DISTINCT removes duplicate values from the returned rows. ORDER BY sorts, filtering handles conditions, and CREATE TABLE creates tables.
Câu hỏi 25
Which JOIN returns only rows that match in both tables?
INNER JOIN keeps only matching rows from both tables. LEFT and RIGHT JOIN keep unmatched rows from one side, and FULL OUTER JOIN keeps both sides.
Câu hỏi 26
What does ORDER BY do in SQL?
ORDER BY sorts rows by one or more columns. WHERE filters, GROUP BY groups, and LIMIT limits rows.
Câu hỏi 27
What is a primary key in a relational database?
A primary key uniquely identifies each row and cannot be NULL. Foreign keys reference other tables, and indexes speed up searches.
Câu hỏi 28
What does LIMIT do in SQL?
LIMIT controls how many rows the query returns. Column selection uses SELECT, and LIMIT does not stop or resize tables.
Câu hỏi 29
What does CASE do in SQL?
CASE evaluates conditions and returns different values based on them. It is not automatic column creation, a join, or a count.
Câu hỏi 30
What is R?
R is a programming language designed for statistics, data analysis, and visualization. It is not a spreadsheet, database, or storage service.
Câu hỏi 31
What is a data frame in R?
A data frame stores tabular data with named columns and rows. Vectors are one-dimensional, and plots are graphical output.
Câu hỏi 32
dplyr is a base R package included in every R installation.
dplyr is part of the tidyverse and must be installed and loaded. It is not included in base R by default.
Câu hỏi 33
Which dplyr function selects rows that meet a condition?