تدرب على 60 سؤالًا أصليًا في Google Data Analytics تغطي دورة البيانات والجداول وSQL وR وTableau ولوحات المعلومات.
المستوى: Google Data Analytics Professional Certificateالصعوبة: intermediate60 سؤال60 دقيقة
اختر وضع التدريب وأجب عن كل سؤال ثم راجع الشرح. تُحفظ الأخطاء محليًا.
أيام متتالية: 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?