Latih 60 soal DP-900 asli tentang konsep data, data relasional dan non-relasional, analitik, visualisasi, dan tata kelola.
Tingkat: Microsoft Azure Data Fundamentals (DP-900)Kesulitan: beginner60 soal60 mnt
Pilih mode latihan, jawab setiap soal, lalu tinjau penjelasan. Jawaban salah disimpan secara lokal.
Hari beruntun: 0 hariTersimpan hanya di perangkat ini
Kemajuan0 / 60
Waktu tersisa: 00:00
Belum ada jawaban salah tersimpan.
Tidak ada soal yang cocok dengan filter.
Soal 1
What is structured data?
Structured data fits neatly into tables with defined rows, columns, and types. Semi-structured data such as JSON has flexibility, and unstructured data includes media files.
Soal 2
What is semi-structured data?
Semi-structured data has some organization, such as JSON fields or XML tags, but does not require a fixed table schema. Relational data is structured, and media files are unstructured.
Soal 3
What is unstructured data?
Unstructured data, such as images, videos, documents, and free text, has no predefined model. Relational tables and key-value stores impose structure.
Soal 4
What is a database?
A database stores related data in an organized way so applications can insert, update, query, and manage it. Firewalls, servers, and languages are not databases.
Soal 5
What is an OLTP workload?
OLTP handles many small, fast transactions such as orders and payments. OLAP supports analytical queries over large historical datasets, and media storage or backups are different.
Soal 6
What is an OLAP workload?
OLAP systems support business intelligence and analytics over large datasets. OLTP systems process short transactions, while printing and email are unrelated.
Soal 7
What is a data lake?
A data lake stores large volumes of raw data in native formats, including structured, semi-structured, and unstructured data. Relational databases require schema, and spreadsheets or tapes are limited.
Soal 8
What is a data warehouse?
A data warehouse consolidates transformed data for reporting and analytics. Queues, networks, and file shares have different purposes.
Soal 9
Which processing model processes data in defined chunks?
Batch processing handles data in scheduled chunks, such as nightly jobs. Stream processing handles events as they arrive, and transaction logging records changes.
Soal 10
Which processing model handles events as they arrive?
Stream processing reacts to events in near real time. Batch processing waits for scheduled chunks, and indexing or cold storage are storage concepts.
Soal 11
What is a table in a relational database?
Tables are the core relational structure, with rows as records and columns as attributes. JSON documents, graph edges, and storage accounts are non-relational concepts.
Soal 12
What is a primary key?
A primary key uniquely identifies rows so no duplicate record exists. Large columns, backups, and addresses do not provide relational identity.
Soal 13
What is a foreign key?
A foreign key references a primary key in another table to create relationships. It does not store passwords, duplicate rows, or backups.
Soal 14
Which language is used to query and manage relational databases?
SQL, or Structured Query Language, is used for relational database queries and management. HTML and CSS describe web pages, and YAML is a configuration format.
Soal 15
Which Azure service provides a fully managed relational database?
Azure SQL Database is a managed relational database with automated backups, patching, and high availability. Blob and Queue Storage are non-relational, and Front Door routes traffic.
Soal 16
Which Azure services offer managed MySQL and PostgreSQL databases?
Azure Database for MySQL and Azure Database for PostgreSQL provide managed open-source relational databases. Cosmos DB, Table Storage, Files, and Blob Storage are non-relational or file services.
Soal 17
Which model gives you full control of SQL Server installed on virtual machines?
Running SQL Server on Azure VMs is IaaS because you manage the operating system and database software. PaaS manages the platform, SaaS delivers software, and FaaS runs functions.
Soal 18
What does ACID stand for in relational databases?
ACID properties ensure reliable transactions: atomicity, consistency, isolation, and durability. The other phrases are not the ACID acronym.
Soal 19
Which SQL statement retrieves data from a table?
SELECT retrieves rows and columns from tables. INSERT adds data, DELETE removes data, and CREATE defines objects.
Soal 20
Match each relational concept to its meaning.
Primary keys identify rows, foreign keys create links, tables organize data, and SQL queries relational data.
Soal 21
Which NoSQL data model stores flexible documents such as JSON?
Document databases store JSON-like documents with flexible fields. Relational tables and SQL views require fixed schemas.
Soal 22
Which NoSQL data model stores simple key-value pairs?
Key-value stores map unique keys to values, offering fast lookups. Documents, graphs, and relational tables have different structures.
Soal 23
Which NoSQL data model stores nodes and relationships?
Graph databases store nodes and edges to model relationships such as social networks. Documents, key-value pairs, and column families have different shapes.
Soal 24
Which NoSQL data model stores data in wide columns optimized for large scans?
Columnar NoSQL databases group data by columns for large analytical workloads. Relational, graph, and document models organize data differently.
Soal 25
Which Azure service is a multi-model NoSQL database?
Azure Cosmos DB supports multiple data models including document, key-value, graph, and columnar. SQL Database and PostgreSQL are relational, and Synapse is analytics.
Soal 26
Which Azure storage service stores unstructured objects such as images and documents?
Blob Storage stores unstructured objects at scale. SQL Database is relational, Files provides shares, and Queue Storage stores messages.
Soal 27
Which Azure storage service stores messages for decoupling application components?
Queue Storage holds messages that producers and consumers process asynchronously. Table Storage is NoSQL, Files provides shares, and Cosmos DB is a database.
Soal 28
Which Azure storage service provides managed SMB file shares?
Azure Files provides managed SMB and NFS file shares. Blob is object storage, Queue is messaging, and Table is NoSQL key-value storage.
Soal 29
Which Azure storage service provides a NoSQL key-value store with simple API access?
Table Storage is a schemaless NoSQL key-value store. SQL Database is relational, Synapse is analytics, and Data Factory orchestrates pipelines.
Soal 30
Match each NoSQL data model to its primary structure.
Documents store flexible records, key-value stores map keys to values, graphs store nodes and edges, and columnar stores use wide columns.
Soal 31
Which Azure service combines data warehousing and big data analytics in one workspace?
Azure Synapse Analytics unifies SQL warehouses, Apache Spark, pipelines, and visualization. App Service hosts apps, DNS resolves names, and Bastion secures VM access.
Soal 32
Which Azure service orchestrates and schedules data movement pipelines?
Data Factory creates and schedules pipelines that copy and transform data. Blob Storage stores data, VMs run workloads, and Policy enforces rules.
Soal 33
Which Azure service runs real-time analytics on streaming data?
Stream Analytics processes streaming events with SQL-like queries. Backup protects data, Traffic Manager routes traffic, and DNS resolves names.
Soal 34
Which Azure service ingests large volumes of streaming events?
Event Hubs ingests and buffers millions of streaming events for downstream processing. Files, Table Storage, and CDN serve other purposes.
Soal 35
Which Azure service provides a managed Apache Spark-based analytics platform?
Azure Databricks offers a fast, collaborative Apache Spark platform for data engineering and analytics. App Service hosts web apps, Front Door routes traffic, and Monitor observes systems.
Soal 36
What does ELT mean?
ELT extracts data, loads it into the target system, and transforms it there. The other combinations are not the standard ELT meaning.
Soal 37
What does ETL mean?
ETL extracts data, transforms it before loading, and then loads it into the destination. The other acronyms are incorrect.
Soal 38
Which Azure storage service is optimized for big data analytics and data lakes?
Azure Data Lake Storage provides hierarchical, scalable storage built for analytics. Queue and Table Storage serve messaging and NoSQL needs, and CDN caches content.
Soal 39
What is a data lakehouse?
A lakehouse stores raw data like a lake while adding warehouse features such as schema management and SQL analytics. It is not a room, view, or queue.
Soal 40
Match each Azure analytics service to its main purpose.
Data Factory orchestrates pipelines, Stream Analytics queries streams, Synapse provides analytics, and Event Hubs ingests events.
Soal 41
Which Microsoft tool creates interactive reports and dashboards?
Power BI is the Microsoft business intelligence tool for reports and dashboards. DevOps, VS Code, and Terminal are developer tools.
Soal 42
Which tool is used to author Power BI reports on a desktop?
Power BI Desktop is the authoring environment for reports. Power BI Service hosts and shares reports, and the other tools manage Azure or SQL Server.
Soal 43
Where are Power BI reports published and shared with others?
Power BI Service is the cloud workspace where reports, dashboards, and datasets are shared. Desktop is for authoring, and Explorer or Blob Storage do not host Power BI reports.
Soal 44
What is a Power BI dataset?
A dataset contains the data and relationships Power BI uses in reports. Security rules, templates, and VMs are unrelated.
Soal 45
What is a Power BI dashboard?
A dashboard is a single page that displays key visualizations from one or more reports. Queries, sources, and backups are not dashboards.
Soal 46
What is a measure in Power BI?
Measures use Data Analysis Expressions (DAX) to calculate values such as totals and percentages dynamically. Labels, tables, and ports are not measures.
Soal 47
What is row-level security in Power BI?
Row-level security filters data by user identity so each user sees only permitted rows. It does not block all access or alter report text.
Soal 48
Which feature keeps Power BI data current by updating sources on a schedule?
Scheduled refresh pulls updated data from sources automatically. Printing, themes, and web publishing do not refresh data.
Soal 49
What are Power BI Service workspaces used for?
Workspaces organize and share Power BI content with teams. They are not disks, DNS zones, or keys.
Soal 50
Match each Power BI component to its purpose.
Desktop authors reports, Service shares them, measures calculate values, and dashboards display visuals on one page.
Soal 51
Which Microsoft tool helps you catalog, classify, and govern data assets?
Microsoft Purview provides data cataloging, classification, lineage, and governance. DevOps is for software delivery, Defender is security, and CDN is content delivery.
Soal 52
What is data lineage?
Lineage shows data origins and transformations across pipelines. Deduplication, encryption, and backups are separate processes.
Soal 53
What is data classification?
Classification assigns sensitivity labels such as public, internal, or confidential. Sorting, compression, and type changes are technical operations.
Soal 54
Which Azure feature hides sensitive values from query results?
Dynamic data masking limits sensitive data exposure in query results while preserving the stored value. Row-level security filters rows, and scaling or balancing are availability features.
Soal 55
Which encryption protects data stored on disk?
Encryption at rest protects stored data using service or customer-managed keys. TLS protects data in transit, and DNSSEC or SMB signing serve other purposes.
Soal 56
Which encryption protects data while it travels over networks?
TLS encrypts data in transit between clients and services. Encryption at rest protects stored data, BitLocker encrypts disks, and masking hides values.
Soal 57
Which access model grants permissions by assigning roles to users and groups?
RBAC assigns roles such as Reader, Contributor, and Owner to control resource access. NSGs filter traffic, Front Door routes traffic, and Monitor observes systems.
Soal 58
Which Azure identity service authenticates users and controls access to resources?
Microsoft Entra ID provides authentication and authorization. DNS resolves names, Blob stores data, and VNets provide networking.
Soal 59
What is data residency?
Data residency ensures data is stored in approved regions for compliance or performance. Deletion, compression, and access grants are different.