练习 60 道原创 Google 数据分析题,覆盖数据生命周期、电子表格、SQL、R、Tableau 与仪表板,每题附答案与解析。
等级: Google Data Analytics Professional Certificate难度: intermediate60 道题60 分钟
选择练习模式,回答每道 Google 数据分析题,然后查看解析。错题会保存在本机供复习。
连续学习: 0 天仅保存在此设备
进度0 / 60
剩余时间: 00:00
还没有保存的错题。
没有符合条件的题目。
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 13
What does TRIM do in a spreadsheet?
TRIM removes leading, trailing, and repeated spaces. Deleting rows, rounding, and uppercasing are separate operations.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 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.
题目 33
Which dplyr function selects rows that meet a condition?