Practica 60 preguntas originales de DP-900 sobre conceptos de datos, datos relacionales y no relacionales, análisis, visualización y gobernanza.
Nivel: Microsoft Azure Data Fundamentals (DP-900)Dificultad: beginner60 preguntas60 min
Elige un modo, responde cada pregunta DP-900 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 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 8
What is a data warehouse?
A data warehouse consolidates transformed data for reporting and analytics. Queues, networks, and file shares have different purposes.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 20
Match each relational concept to its meaning.
Primary keys identify rows, foreign keys create links, tables organize data, and SQL queries relational data.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 37
What does ETL mean?
ETL extracts data, transforms it before loading, and then loads it into the destination. The other acronyms are incorrect.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 52
What is data lineage?
Lineage shows data origins and transformations across pipelines. Deduplication, encryption, and backups are separate processes.
Pregunta 53
What is data classification?
Classification assigns sensitivity labels such as public, internal, or confidential. Sorting, compression, and type changes are technical operations.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.
Pregunta 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.