Practica 60 preguntas originales de Google Data Analytics sobre ciclo de datos, hojas de cálculo, SQL, R, Tableau y paneles.
Nivel: Google Data Analytics Professional CertificateDificultad: intermediate60 preguntas60 min
Elige un modo de práctica, responde cada pregunta y revisa la explicación. Los errores se guardan localmente.
Racha de días: 0 díasGuardado solo en este dispositivo
Progreso0 / 60
Tiempo restante: 00:00
Aún no hay errores guardados.
Ninguna pregunta coincide con tus filtros.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 13
What does TRIM do in a spreadsheet?
TRIM removes leading, trailing, and repeated spaces. Deleting rows, rounding, and uppercasing are separate operations.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 33
Which dplyr function selects rows that meet a condition?