๐ The Complete Guide to Pass the DP-750 Beta Certification Exam โ Azure Databricks Data Engineer Associate
Today I have something important for you.
I've created a specific guide to help you pass your DP-750 beta certification.
How to master Azure Databricks, Unity Catalog governance, and Apache Spark to confidently pass the Microsoft DP-750 certification โ the most complete study roadmap for data engineers in 2025/2026.
Why DP-750 Is the Certification You Need Right Now
The data engineering landscape is shifting fast. Organizations are moving away from fragmented pipelines and siloed data warehouses toward unified, governed, and scalable Lakehouse architectures. Microsoft's DP-750: Implementing Data Engineering Solutions Using Azure Databricks is the certification that validates you can operate at that level.
This is not just another cloud certification. DP-750 tests your ability to:
- Build production-grade data pipelines using Apache Spark and Delta Live Tables
- Govern enterprise data with Unity Catalog โ the industry's first unified data and AI governance solution
- Deploy and maintain workloads with CI/CD, Databricks Asset Bundles, and Lakeflow Jobs
- Secure data at every layer โ row-level, column-level, and attribute-based access control
- Optimize performance using Spark internals, DAG analysis, and Delta table tuning
Score required to pass: 700 / 1000
The exam is currently in Beta โ an ideal window to get certified before the pool of certified professionals grows.
The Three Pillars of DP-750
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ DP-750 KNOWLEDGE PILLARS โ
โ โ
โ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ โ
โ โ Azure โ โ Unity Catalog โ โ Apache โ โ
โ โ Databricks โ โ Governance โ โ Spark โ โ
โ โ Platform โ โ โ โ Engine โ โ
โ โ โ โ โข Catalogs โ โ โ โ
โ โ โข Workspaces โ โ โข Schemas โ โ โข RDDs โ โ
โ โ โข Clusters โ โ โข Tables โ โ โข DataFrames โ โ
โ โ โข Notebooks โ โ โข Volumes โ โ โข Spark SQL โ โ
โ โ โข Delta Lake โ โ โข Lineage โ โ โข Streaming โ โ
โ โ โข Lakeflow โ โ โข ABAC/RBAC โ โ โข MLlib โ โ
โ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Exam Skills Breakdown โ What Microsoft Actually Tests
| Domain | Weight | Priority |
|---|---|---|
| Set up and configure an Azure Databricks environment | 15โ20% | Medium |
| Secure and govern Unity Catalog objects | 15โ20% | High |
| Prepare and process data | 30โ35% | Critical |
| Deploy and maintain data pipelines and workloads | 30โ35% | Critical |
The exam is heavily weighted toward data processing (Spark + Delta) and pipeline deployment (Lakeflow Jobs + CI/CD). Do not underestimate Unity Catalog โ it appears across all four domains.
Pillar 1 โ Azure Databricks Platform
What You Need to Know
Azure Databricks is a first-party Microsoft product built on Apache Spark, deployed natively within your Azure subscription. It is not just a managed Spark cluster โ it is a full Data Intelligence Platform that unifies:
- Data Engineering (ETL/ELT pipelines)
- Data Warehousing (SQL Warehouses)
- Data Science and ML (MLflow, Feature Store)
- Real-time Streaming (Structured Streaming + DLT)
- Governance (Unity Catalog)
Compute Types โ Know the Differences
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ COMPUTE DECISION TREE โ
โ โ
โ Interactive work? โ
โ โโโบ All-Purpose Cluster (shared or classic) โ
โ โ
โ Automated pipeline? โ
โ โโโบ Job Compute (isolated, cost-optimized) โ
โ โ
โ SQL analytics / BI dashboards? โ
โ โโโบ SQL Warehouse (serverless or pro) โ
โ โ
โ Need maximum performance? โ
โ โโโบ Enable Photon Acceleration โ
โ โ
โ Variable workloads? โ
โ โโโบ Enable Autoscaling + Auto Termination โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Key Configuration Settings for the Exam
- Photon Acceleration โ vectorized query engine, dramatically speeds up SQL and Delta operations
- Databricks Runtime versions โ always know which runtime supports which Spark version
- Instance Pools โ pre-warmed VMs that reduce cluster startup time
- Cluster Policies โ enforce governance on compute configuration at scale
- Library installation โ cluster-scoped vs. notebook-scoped vs. job-scoped
Delta Lake โ The Storage Foundation
Delta Lake is what separates Databricks from a plain Spark cluster. Every table you create in Unity Catalog is a Delta table by default.
# Create a managed Delta table
spark.sql("""
CREATE TABLE catalog.schema.sales_data (
order_id BIGINT,
customer_id BIGINT,
amount DECIMAL(10,2),
order_date DATE
)
USING DELTA
PARTITIONED BY (order_date)
""")
# Time Travel โ query historical versions
spark.sql("""
SELECT * FROM catalog.schema.sales_data
VERSION AS OF 5
""")
# Optimize and vacuum
spark.sql("OPTIMIZE catalog.schema.sales_data ZORDER BY (customer_id)")
spark.sql("VACUUM catalog.schema.sales_data RETAIN 168 HOURS")
Critical Delta concepts for the exam:
- ACID transactions โ atomicity, consistency, isolation, durability
-
Time Travel โ
VERSION AS OFandTIMESTAMP AS OF - OPTIMIZE โ compacts small files into larger ones
- ZORDER โ co-locates related data for faster queries
- Liquid Clustering โ the modern replacement for static partitioning
- Deletion Vectors โ soft deletes without full file rewrites
- VACUUM โ removes files no longer referenced by the Delta log
Pillar 2 โ Unity Catalog: Enterprise Governance
Unity Catalog is the centerpiece of DP-750. It is the industry's first unified governance solution for data and AI on the Lakehouse. Expect it in every domain of the exam.
The Three-Level Namespace
Unity Catalog Hierarchy
โ
โโโ Metastore (one per region โ account level)
โ โ
โ โโโ Catalog (top-level container โ e.g., "prod", "dev", "raw")
โ โ โ
โ โ โโโ Schema (logical grouping โ e.g., "sales", "finance")
โ โ โ โ
โ โ โ โโโ Tables (managed or external)
โ โ โ โโโ Views
โ โ โ โโโ Materialized Views
โ โ โ โโโ Volumes (unstructured file storage)
โ โ โ โโโ Functions
โ โ โ
โ โ โโโ Schema ...
โ โ
โ โโโ Catalog ...
โ
โโโ External Locations (S3, ADLS Gen2, GCS)
Securable Objects and Privileges
-- Grant read access to a group
GRANT SELECT ON TABLE catalog.schema.customers TO `data-analysts`;
-- Grant write access to a service principal
GRANT MODIFY ON SCHEMA catalog.schema TO `etl-service-principal`;
-- Grant full catalog access to a team
GRANT USE CATALOG, USE SCHEMA, SELECT, MODIFY
ON CATALOG prod_catalog
TO `data-engineering-team`;
-- Revoke access
REVOKE SELECT ON TABLE catalog.schema.pii_data FROM `external-user`;
Row-Level Security and Column Masking
-- Row filter: users only see their own region's data
CREATE FUNCTION catalog.schema.region_filter(region_col STRING)
RETURN IF(
IS_ACCOUNT_GROUP_MEMBER('admin'),
TRUE,
region_col = CURRENT_USER()
);
ALTER TABLE catalog.schema.sales_data
SET ROW FILTER catalog.schema.region_filter ON (region);
-- Column mask: hide PII for non-privileged users
CREATE FUNCTION catalog.schema.mask_email(email STRING)
RETURN IF(
IS_ACCOUNT_GROUP_MEMBER('pii-access'),
email,
CONCAT(LEFT(email, 2), '***@***.com')
);
ALTER TABLE catalog.schema.customers
ALTER COLUMN email
SET MASK catalog.schema.mask_email;
Data Lineage and Audit Logging
Unity Catalog automatically tracks column-level lineage โ which tables feed which downstream tables, which notebooks read which columns. This is critical for:
- Impact analysis โ what breaks if I change this table?
- Compliance โ where does this PII data flow?
- Debugging โ why is this column producing wrong values?
Data Lineage Flow Example:
raw_orders (Bronze)
โ
โผ (notebook: transform_orders.py)
cleaned_orders (Silver)
โ
โผ (DLT pipeline: aggregate_pipeline)
daily_revenue (Gold)
โ
โผ (Power BI / SQL Warehouse)
Executive Dashboard
Delta Sharing โ Secure External Data Sharing
# Share data with an external organization โ no data movement
spark.sql("""
CREATE SHARE partner_share
COMMENT 'Shared dataset for Partner Corp'
""")
spark.sql("""
ALTER SHARE partner_share
ADD TABLE catalog.schema.public_products
""")
spark.sql("""
CREATE RECIPIENT partner_corp
COMMENT 'External partner access'
""")
spark.sql("""
GRANT SELECT ON SHARE partner_share TO RECIPIENT partner_corp
""")
Pillar 3 โ Apache Spark: The Engine Under the Hood
Azure Databricks is built on Apache Spark. Understanding Spark internals is what separates candidates who pass from those who fail.
Spark Architecture โ How It Actually Works
Spark Cluster Architecture
โ
โโโ Driver Node (Master)
โ โโโ SparkSession / SparkContext
โ โโโ DAG Scheduler
โ โโโ Task Scheduler
โ โโโ Spark UI (port 4040)
โ
โโโ Worker Nodes (Executors)
โโโ Executor 1
โ โโโ Task A โ processes partition 1
โ โโโ Task B โ processes partition 2
โ โโโ Cache (in-memory storage)
โ
โโโ Executor 2
โ โโโ Task C โ processes partition 3
โ โโโ Task D โ processes partition 4
โ
โโโ Executor N ...
Transformations vs. Actions โ Lazy Evaluation
from pyspark.sql import SparkSession
from pyspark.sql.functions import col, sum, avg, count
spark = SparkSession.builder.appName("DP750-Study").getOrCreate()
# TRANSFORMATIONS โ lazy, build the DAG, nothing executes yet
df = spark.read.format("delta").load("/mnt/data/sales")
filtered = df.filter(col("amount") > 100) # lazy
grouped = filtered.groupBy("region") # lazy
result = grouped.agg(
sum("amount").alias("total_sales"),
avg("amount").alias("avg_sale"),
count("*").alias("num_orders")
) # lazy
# ACTION โ triggers actual execution
result.show() # triggers the full DAG
result.write.format("delta").mode("overwrite").saveAsTable("catalog.schema.regional_summary")
Structured Streaming โ Real-Time Pipelines
# Read from Azure Event Hubs as a stream
stream_df = (
spark.readStream
.format("eventhubs")
.options(**eventhubs_conf)
.load()
)
# Transform the stream
processed = (
stream_df
.select(
col("body").cast("string").alias("payload"),
col("enqueuedTime").alias("event_time")
)
.filter(col("payload").isNotNull())
)
# Write to Delta table with checkpointing
query = (
processed.writeStream
.format("delta")
.outputMode("append")
.option("checkpointLocation", "/mnt/checkpoints/events")
.trigger(processingTime="30 seconds")
.toTable("catalog.schema.streaming_events")
)
query.awaitTermination()
Performance Tuning โ What the Exam Tests
# Adaptive Query Execution (AQE) โ enabled by default in DBR 7.3+
spark.conf.set("spark.sql.adaptive.enabled", "true")
spark.conf.set("spark.sql.adaptive.coalescePartitions.enabled", "true")
spark.conf.set("spark.sql.adaptive.skewJoin.enabled", "true")
# Dynamic Partition Pruning
spark.conf.set("spark.sql.optimizer.dynamicPartitionPruning.enabled", "true")
# Broadcast join for small tables (avoids shuffle)
from pyspark.sql.functions import broadcast
result = large_df.join(broadcast(small_lookup_df), "key_column")
# Cache frequently accessed DataFrames
hot_data = spark.table("catalog.schema.dimension_table").cache()
hot_data.count() # materialize the cache
Spark performance issues to diagnose with Spark UI:
| Issue | Symptom | Fix |
|---|---|---|
| Data Skew | One task takes 10x longer | Salting, AQE skew join |
| Spilling | Tasks write to disk | Increase executor memory |
| Shuffle | Wide transformations are slow | Reduce partitions, broadcast joins |
| Small files | Many tiny tasks | OPTIMIZE, Auto Compaction |
| Caching | Same data read repeatedly |
.cache() or .persist()
|
Data Ingestion Patterns โ Lakeflow Connect and Auto Loader
Auto Loader โ Incremental File Ingestion
# Auto Loader โ incrementally ingests new files from cloud storage
df = (
spark.readStream
.format("cloudFiles")
.option("cloudFiles.format", "json")
.option("cloudFiles.schemaLocation", "/mnt/schema/orders")
.option("cloudFiles.inferColumnTypes", "true")
.load("/mnt/raw/orders/")
)
df.writeStream \
.format("delta") \
.option("checkpointLocation", "/mnt/checkpoints/orders") \
.option("mergeSchema", "true") \
.trigger(availableNow=True) \
.toTable("catalog.bronze.raw_orders")
Change Data Capture (CDC) with MERGE
# CDC pattern โ upsert incoming changes into a Delta table
from delta.tables import DeltaTable
target = DeltaTable.forName(spark, "catalog.silver.customers")
(
target.alias("target")
.merge(
source=cdc_df.alias("source"),
condition="target.customer_id = source.customer_id"
)
.whenMatchedUpdate(
condition="source.operation = 'UPDATE'",
set={
"name": "source.name",
"email": "source.email",
"updated_at": "source.updated_at"
}
)
.whenNotMatchedInsert(
condition="source.operation = 'INSERT'",
values={
"customer_id": "source.customer_id",
"name": "source.name",
"email": "source.email",
"created_at": "source.created_at"
}
)
.whenMatchedDelete(
condition="source.operation = 'DELETE'"
)
.execute()
)
Lakeflow Spark Declarative Pipelines (Delta Live Tables)
DLT is the declarative pipeline framework in Databricks. You define what the data should look like โ Databricks handles orchestration, retries, and data quality.
import dlt
from pyspark.sql.functions import col, current_timestamp
# Bronze layer โ raw ingestion
@dlt.table(
name="raw_orders",
comment="Raw orders ingested from cloud storage",
table_properties={"quality": "bronze"}
)
def raw_orders():
return (
spark.readStream
.format("cloudFiles")
.option("cloudFiles.format", "csv")
.load("/mnt/raw/orders/")
)
# Silver layer โ cleansed with quality expectations
@dlt.table(
name="cleaned_orders",
comment="Validated and cleansed orders",
table_properties={"quality": "silver"}
)
@dlt.expect_or_drop("valid_amount", "amount > 0")
@dlt.expect_or_drop("valid_customer", "customer_id IS NOT NULL")
@dlt.expect("valid_date", "order_date >= '2020-01-01'")
def cleaned_orders():
return (
dlt.read_stream("raw_orders")
.select(
col("order_id").cast("bigint"),
col("customer_id").cast("bigint"),
col("amount").cast("decimal(10,2)"),
col("order_date").cast("date"),
current_timestamp().alias("processed_at")
)
)
# Gold layer โ business aggregation
@dlt.table(
name="daily_revenue",
comment="Daily revenue aggregated by region",
table_properties={"quality": "gold"}
)
def daily_revenue():
return (
dlt.read("cleaned_orders")
.groupBy("order_date", "region")
.agg(
sum("amount").alias("total_revenue"),
count("*").alias("order_count")
)
)
CI/CD with Databricks Asset Bundles
The exam tests your ability to implement software development lifecycle (SDLC) practices in Databricks. Databricks Asset Bundles (DABs) are the modern way to package and deploy notebooks, jobs, and pipelines.
Bundle Structure
my-databricks-project/
โโโ databricks.yml โ bundle configuration
โโโ src/
โ โโโ notebooks/
โ โ โโโ ingest.py
โ โ โโโ transform.py
โ โโโ pipelines/
โ โโโ dlt_pipeline.py
โโโ resources/
โ โโโ jobs/
โ โ โโโ daily_etl_job.yml
โ โโโ pipelines/
โ โโโ revenue_pipeline.yml
โโโ tests/
โโโ unit/
โโโ integration/
databricks.yml โ Bundle Configuration
bundle:
name: dp750-data-pipeline
workspace:
host: https://adb-xxxx.azuredatabricks.net
targets:
dev:
mode: development
workspace:
root_path: /Users/${workspace.current_user.userName}/.bundle/dev
staging:
workspace:
root_path: /Shared/bundles/staging
prod:
mode: production
workspace:
root_path: /Shared/bundles/prod
resources:
jobs:
daily_etl:
name: "Daily ETL Pipeline"
schedule:
quartz_cron_expression: "0 0 6 * * ?"
timezone_id: "UTC"
tasks:
- task_key: ingest
notebook_task:
notebook_path: ./src/notebooks/ingest.py
- task_key: transform
depends_on:
- task_key: ingest
notebook_task:
notebook_path: ./src/notebooks/transform.py
Deploy with CLI
# Validate the bundle
databricks bundle validate --target dev
# Deploy to development
databricks bundle deploy --target dev
# Run a specific job
databricks bundle run daily_etl --target dev
# Deploy to production
databricks bundle deploy --target prod
Monitoring and Troubleshooting
Azure Monitor Integration
# Configure diagnostic settings to send logs to Log Analytics
az monitor diagnostic-settings create \
--name "databricks-diagnostics" \
--resource "/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.Databricks/workspaces/{ws}" \
--workspace "/subscriptions/{sub}/resourceGroups/{rg}/providers/Microsoft.OperationalInsights/workspaces/{law}" \
--logs '[{"category":"dbfs","enabled":true},{"category":"clusters","enabled":true},{"category":"jobs","enabled":true}]'
Spark UI โ What to Look For
Spark UI Navigation for Troubleshooting:
โ
โโโ Jobs tab
โ โโโ Find failed or slow jobs โ click to see stages
โ
โโโ Stages tab
โ โโโ Look for:
โ โโโ Skewed tasks (one task >> others in duration)
โ โโโ Spill to disk (shuffle read/write metrics)
โ โโโ GC time (memory pressure indicator)
โ
โโโ SQL / DataFrame tab
โ โโโ Query plan โ look for:
โ โโโ BroadcastHashJoin (good โ no shuffle)
โ โโโ SortMergeJoin (expensive โ involves shuffle)
โ โโโ Exchange (shuffle boundary โ minimize these)
โ
โโโ Storage tab
โโโ Cached RDDs/DataFrames โ verify cache is being used
Lakeflow Jobs โ Repair and Restart
# Programmatically repair a failed job run
import requests
headers = {"Authorization": f"Bearer {token}"}
# Get failed run details
run = requests.get(
f"{workspace_url}/api/2.1/jobs/runs/get",
headers=headers,
params={"run_id": failed_run_id}
).json()
# Repair โ re-run only failed tasks
repair = requests.post(
f"{workspace_url}/api/2.1/jobs/runs/repair",
headers=headers,
json={
"run_id": failed_run_id,
"rerun_all_failed_tasks": True
}
)
Exam Preparation Strategy
Study Path โ Week by Week
Week 1 โ Foundation
โโโ Azure Databricks workspace setup
โโโ Compute types and configuration
โโโ Delta Lake fundamentals
โโโ Unity Catalog hierarchy and objects
Week 2 โ Governance Deep Dive
โโโ Unity Catalog privileges and RBAC
โโโ Row-level security and column masking
โโโ Data lineage and audit logging
โโโ Delta Sharing
Week 3 โ Data Processing
โโโ Apache Spark architecture and internals
โโโ DataFrame API and Spark SQL
โโโ Structured Streaming
โโโ Auto Loader and CDC patterns
โโโ DLT / Lakeflow Declarative Pipelines
Week 4 โ Pipelines and Operations
โโโ Lakeflow Jobs and scheduling
โโโ Databricks Asset Bundles and CI/CD
โโโ Git integration and branching strategies
โโโ Monitoring with Spark UI and Azure Monitor
โโโ Performance tuning and optimization
Week 5 โ Practice and Review
โโโ Microsoft Learn free practice assessment
โโโ Review weak areas from practice tests
โโโ Hands-on labs in a real Databricks workspace
โโโ Review official study guide one more time
Official Microsoft Resources
| Resource | Link | Priority |
|---|---|---|
| Official Study Guide | DP-750 Study Guide | ๐ด Must |
| Learning Path | Azure Databricks Data Engineer | ๐ด Must |
| Apache Spark Module | Use Apache Spark in Azure Databricks | ๐ด Must |
| Data Analysis Module | Perform Data Analysis with Azure Databricks | ๐ก High |
| Instructor-Led Course | DP-750T00 Course | ๐ก High |
| Free Practice Assessment | Microsoft Learn Practice Test | ๐ด Must |
Recommended Udemy Course
For hands-on practice and structured video learning, the course by Enrique Aguilar Martรญnez on Udemy is one of the most comprehensive resources available for the DP-750:
๐ Microsoft DP-750: Azure Databricks Data Engineer Certification
Instructor: Enrique Aguilar Martรญnez
This course covers the full exam syllabus with real-world labs, hands-on exercises, and exam-focused explanations โ making it an excellent complement to the official Microsoft Learn content.
Quick Reference โ Key Concepts Cheat Sheet
Unity Catalog Privilege Hierarchy
ACCOUNT ADMIN
โโโ Metastore Admin
โโโ Catalog Owner / USE CATALOG
โโโ Schema Owner / USE SCHEMA
โโโ Table Owner / SELECT / MODIFY
โโโ Row Filters / Column Masks
Data Ingestion Tool Selection
| Scenario | Tool |
|---|---|
| Files landing in cloud storage (incremental) | Auto Loader (cloudFiles) |
| Real-time event stream | Spark Structured Streaming + Event Hubs |
| Database replication / CDC | Lakeflow Connect |
| One-time bulk load | COPY INTO |
| Complex transformation pipeline | Lakeflow Spark Declarative Pipelines (DLT) |
| Orchestrated multi-step workflow | Lakeflow Jobs |
| External orchestration | Azure Data Factory โ Databricks notebook |
SCD Type Selection
| Type | Description | Use Case |
|---|---|---|
| SCD Type 1 | Overwrite old value | Non-critical attribute changes |
| SCD Type 2 | Add new row with version | Full history required (audit, compliance) |
| SCD Type 3 | Add column for previous value | Only current + previous value needed |
Delta Table Optimization Strategy
Data Size < 1TB and query patterns change frequently?
โโโบ Liquid Clustering (adaptive, no static partitions)
Data Size > 1TB with predictable filter columns?
โโโบ Static Partitioning + ZORDER
Frequent point lookups on high-cardinality columns?
โโโบ Bloom Filter Index
Many small files accumulating?
โโโบ OPTIMIZE command + Auto Compaction
Soft deletes without full rewrites?
โโโบ Deletion Vectors (enabled by default in DBR 14+)
Why Azure Databricks Is the Future of Data Engineering
- Unified platform โ one environment for data engineering, data science, ML, and BI
- Open standards โ built on Apache Spark, Delta Lake, and MLflow โ no vendor lock-in on the data format
- Enterprise governance โ Unity Catalog provides fine-grained access control, lineage, and auditing across all data assets
- Cloud-native scalability โ clusters spin up in minutes, scale automatically, and terminate when idle โ you pay only for what you use
- First-party Azure integration โ native connectivity to Azure Data Lake Storage, Azure Data Factory, Microsoft Entra ID, Azure Monitor, and Azure Key Vault
- AI-ready โ the Databricks Data Intelligence Platform integrates GenAI capabilities directly into the data platform
License
Content compiled for educational purposes. All Microsoft product names, trademarks, and documentation are property of Microsoft Corporation. Udemy course reference belongs to its respective instructor and platform.
Sources: Microsoft Learn DP-750 Study Guide ยท Azure Databricks Learning Path ยท DP-750T00 Course ยท Use Apache Spark in Azure Databricks ยท Perform Data Analysis with Azure Databricks ยท Udemy DP-750 by Enrique Aguilar Martรญnez

























