Pass Microsoft DP-200 Exam in First Attempt Easily
Latest Microsoft DP-200 Practice Test Questions, Exam Dumps
Accurate & Verified Answers As Experienced in the Actual Test!
Coming soon. We are working on adding products for this exam.
Microsoft DP-200 Practice Test Questions, Microsoft DP-200 Exam dumps
Looking to pass your tests the first time. You can study with Microsoft DP-200 certification practice test questions and answers, study guide, training courses. With Exam-Labs VCE files you can prepare with Microsoft DP-200 Implementing an Azure Data Solution exam dumps questions and answers. The most complete solution for passing with Microsoft certification DP-200 exam dumps questions and answers, study guide, training course.
Microsoft Azure Data Engineer Associate Certification: Comprehensive Guide to DP-200 Success
The Microsoft Azure Data Engineer Associate certification represented one of the most technically demanding and professionally significant credentials in the Azure certification portfolio during its active examination period, validating that practitioners could implement the data storage solutions, data processing workflows, and data security frameworks that production Azure data engineering environments require. The DP-200 examination, titled Implementing an Azure Data Solution, paired with its companion DP-201 Designing an Azure Data Solution examination to constitute the complete Azure Data Engineer Associate credential — with DP-200 emphasizing hands-on implementation competency and DP-201 emphasizing architectural design judgment. This division of responsibilities between the two examinations reflected the genuine distinction between knowing how to configure Azure data services correctly and knowing how to select and combine those services into architectures that meet specific business and technical requirements.
The certification's active examination period attracted substantial candidate interest because Azure data engineering was among the fastest-growing professional specializations in the cloud technology market, with organizations of every size accelerating their migration of data workloads to Azure and creating intense demand for practitioners who could implement the data pipelines, storage solutions, and analytics platforms that these migrations required. Understanding the examination's scope, its technical depth requirements, and the preparation approach most likely to produce successful outcomes was consequently a question of significant practical importance for data engineering practitioners evaluating where to invest their professional development time and resources. The technical skills the certification assessed — spanning Azure Data Factory pipeline development, Azure Databricks notebook-based data processing, Azure SQL Database and SQL Data Warehouse implementation, Azure Data Lake Storage configuration, and Azure Stream Analytics real-time processing — remained central to Azure data engineering practice well beyond the examination's active period.
Azure Data Factory Pipeline Development
Azure Data Factory is the cloud-based data integration service that serves as the primary ETL and data movement platform for most Azure data engineering implementations, and the DP-200 examination assessed its configuration and operational management with the depth that its central role in Azure data architectures warrants. Candidates needed to demonstrate practical ability to create and configure ADF pipelines that orchestrate data movement and transformation workflows across diverse source and destination systems, understanding not just the mechanics of pipeline construction but the operational considerations that determine whether pipelines will function reliably in production environments with real data volumes, variable source system availability, and the error handling requirements that production data workflows demand.
The linked service and dataset configuration that precedes actual pipeline construction in ADF development workflows is a foundational operational skill that examination candidates needed to understand precisely because misconfigured linked services and datasets are among the most common sources of ADF pipeline failures in production environments. Linked services define the connection parameters for external data sources and destinations including authentication credentials, network connectivity configurations, and integration runtime assignments that determine where data movement operations execute — in the Azure-hosted shared integration runtime for cloud-to-cloud data movement or in a self-hosted integration runtime deployed within an on-premises or private network environment for data sources inaccessible from the public internet. Dataset configuration defines the structural representation of data in a specific location accessible through a linked service, including schema definitions, file format parameters, and partition configurations that affect how ADF reads and writes data efficiently at scale. Candidates who had personally built ADF pipelines that moved data from on-premises SQL Server through a self-hosted integration runtime into Azure Data Lake Storage Gen2, incorporating schema mapping, data type conversion, and partition-aware writing, developed the operational familiarity with ADF's configuration requirements that examination scenario questions probed at a level that documentation study alone could not reliably produce.
Azure Databricks Implementation Skills
Azure Databricks is the Apache Spark-based analytics platform that provides the distributed data processing capability required for the large-scale data transformation, machine learning feature engineering, and exploratory data analysis workloads that exceed the capacity of single-node processing environments. The DP-200 examination assessed Azure Databricks implementation skills at the level of practical notebook development and cluster configuration rather than deep Apache Spark internals, reflecting the examination's focus on Azure service implementation rather than distributed computing theory. Candidates needed to demonstrate ability to create and configure Databricks workspaces, provision clusters with appropriate node types and autoscaling configurations, develop PySpark and Spark SQL notebooks that perform realistic data transformation tasks, and integrate Databricks with other Azure data services including Azure Data Lake Storage Gen2, Azure SQL Database, and Azure Data Factory.
The Delta Lake format that Azure Databricks supports provides ACID transaction semantics, schema enforcement, and time travel capabilities to data stored in Azure Data Lake Storage Gen2, and understanding its operational characteristics and configuration requirements was an important component of DP-200 preparation because Delta Lake had become a standard component of Azure data lake architectures by the time the examination was active. Reading from and writing to Delta Lake tables using PySpark, managing Delta table schema evolution, using time travel queries to access historical data versions, and optimizing Delta table performance through compaction and Z-ordering operations were specific technical skills that examination candidates needed to understand at a level sufficient to evaluate their appropriate application in realistic data engineering scenarios. Candidates who developed genuine PySpark coding fluency through regular notebook practice — working through data transformation exercises that involved filtering, aggregating, joining, and reshaping real datasets — performed significantly better on Databricks-related examination questions than those who studied the platform's features without developing hands-on coding capability.
Azure SQL Database Management
Azure SQL Database is the fully managed relational database service that provides the familiar SQL Server programming model in a platform-as-a-service deployment that eliminates the operational overhead of managing underlying infrastructure, and the DP-200 examination covered its implementation and management with the depth that its widespread use in Azure data architectures warrants. The examination tested candidates on the complete Azure SQL Database provisioning and configuration workflow including selecting appropriate service tier and compute tier based on workload requirements, configuring database-level and server-level firewall rules that control network access, implementing transparent data encryption and advanced data security features, and configuring geo-replication and failover groups for high availability and disaster recovery.
Performance management for Azure SQL Database is a topic area that the examination addressed through scenario-based questions requiring candidates to identify appropriate responses to described performance problems, and developing genuine performance tuning judgment requires the kind of hands-on experience with query performance analysis tools that examination preparation in a live Azure environment provides. The Query Performance Insight feature in the Azure portal provides visual analysis of the queries consuming the most database resources, enabling data engineers to identify optimization candidates without requiring deep SQL Server query plan analysis expertise. Automatic tuning features including automatic index management and query plan regression correction provide continuous performance optimization that reduces the operational burden of manual index management, and candidates needed to understand both how to enable these features and the operational implications of allowing automatic tuning to make schema changes to production databases. The elastic pool configuration that allows multiple databases to share a common compute and storage resource pool is a cost optimization pattern that examination questions explored through scenarios requiring candidates to evaluate whether elastic pool consolidation is appropriate for a described workload mix.
Azure Synapse Analytics Implementation
Azure Synapse Analytics — available during the DP-200 examination period under its earlier name Azure SQL Data Warehouse — is the massively parallel processing data warehouse service that provides the analytical query performance required for business intelligence and reporting workloads operating on data volumes that exceed the capacity of single-node database engines. The distributed architecture of Azure Synapse Analytics, where data is distributed across sixty compute nodes according to a hash distribution or round-robin distribution strategy and queries execute in parallel across all nodes, requires data engineers to understand distribution design principles that have no equivalent in single-node database environments and that significantly affect analytical query performance when applied correctly or incorrectly.
Table distribution design is the most consequential architectural decision in Azure Synapse Analytics implementation because it determines how data is physically placed across the sixty compute nodes and how queries join and aggregate that data. Hash distribution assigns rows to specific nodes based on the hash value of a designated distribution column, ensuring that rows with the same distribution column value are always co-located on the same node — a property that eliminates data movement during joins between hash-distributed tables when the join is performed on the distribution column. Round-robin distribution assigns rows to nodes sequentially without regard to data content, providing even distribution but requiring data movement during most join operations because related rows may be on different nodes. Replicated tables maintain a full copy on every compute node, eliminating data movement for joins but requiring storage of multiple full copies of the table — a viable optimization only for small dimension tables that are frequently joined with large fact tables. Candidates who understood these distribution strategies at the level required to evaluate the performance implications of distribution design choices for realistic data warehouse schema descriptions were well-prepared for the examination's Synapse Analytics scenario questions.
Azure Data Lake Storage Configuration
Azure Data Lake Storage Gen2 is the hierarchical namespace-enabled object storage service that serves as the foundational data persistence layer for most Azure data lake architectures, and the DP-200 examination covered its configuration and management with the depth reflecting its central role in Azure data engineering deployments. The hierarchical namespace capability that distinguishes ADLS Gen2 from standard Azure Blob Storage enables atomic directory operations, POSIX-compliant access control lists, and the distributed processing performance optimizations that Apache Spark and other parallel processing frameworks require for efficient large-scale data processing. Understanding the operational implications of this hierarchical namespace — including how it affects access control configuration, how it enables atomic rename operations used by transactional data writing patterns, and how it integrates with Azure Active Directory for identity-based access control — was essential examination preparation for data engineers working with ADLS Gen2.
Access control configuration for ADLS Gen2 involves the interaction of two distinct security mechanisms — RBAC roles assigned at the storage account or container level and POSIX ACLs assigned at the file and directory level — whose interaction determines the effective permissions of a given security principal for a specific file system path. Understanding when to use each mechanism and how they interact is both an examination topic and a genuine operational skill that affects the security and usability of data lake implementations. Service principal authentication, managed identity authentication, and shared access signature tokens provide different authentication mechanisms for service-to-service access between Azure services and ADLS Gen2, and candidates needed to understand when each mechanism is appropriate based on the security requirements, operational simplicity, and credential management capabilities of different integration scenarios. The storage account network configuration including virtual network service endpoints and private endpoints that restrict network access to authorized virtual networks rather than the public internet is a security hardening pattern that examination questions addressed through scenarios requiring candidates to identify appropriate network access configurations for described security requirements.
Stream Analytics Real Time Processing
Azure Stream Analytics is the fully managed real-time stream processing service that enables data engineers to build continuous query applications that process high-velocity event streams from sources including Azure Event Hubs, Azure IoT Hub, and Azure Blob Storage, producing analytical outputs including aggregations, anomaly detections, and enriched event streams that feed downstream storage and visualization systems. The DP-200 examination covered Stream Analytics implementation at the level of job configuration, query development using Stream Analytics SQL, and integration with upstream event sources and downstream output destinations — reflecting the practical implementation skills that data engineers need to deploy production real-time processing solutions.
Stream Analytics SQL is a declarative query language that extends standard SQL with time-based windowing functions that aggregate streaming events over defined time windows — tumbling windows that partition time into non-overlapping fixed-duration intervals, hopping windows that partition time into overlapping intervals enabling running aggregations, sliding windows that produce output whenever an event occurs within a defined time range of other events, and session windows that group events separated by less than a defined gap duration. Understanding the behavioral differences between these window types and selecting the appropriate window type for specific real-time analytics requirements is an examination topic that requires working through concrete scenarios rather than memorizing abstract definitions — a type of understanding best developed through the hands-on experience of writing Stream Analytics queries and observing how different window configurations affect the timing and content of query outputs. Reference data joins that enrich streaming events with lookup data from static or slowly changing datasets stored in Azure Blob Storage or Azure SQL Database are a common Stream Analytics pattern that examination questions explored through scenarios requiring candidates to design enrichment solutions for described event processing requirements.
Security And Compliance Implementation
Data security and compliance implementation is a cross-cutting concern that the DP-200 examination addressed across all Azure data services rather than treating as an isolated topic domain, reflecting the reality that security considerations affect every design and configuration decision in production data engineering implementations. The examination tested candidates on the security features and configuration requirements of each Azure data service covered in the curriculum, requiring them to understand how to implement encryption at rest and in transit, configure role-based access control, manage service principal authentication, implement network security through private endpoints and virtual network service endpoints, and apply data masking and classification features that support compliance with privacy regulations.
Azure Key Vault integration with Azure data services provides centralized cryptographic key management that enables organizations to maintain control over the keys that protect their data without managing key storage infrastructure directly, and the DP-200 examination covered Key Vault integration patterns for customer-managed encryption key configurations on Azure SQL Database, Azure Storage, and Azure Databricks. Understanding how to configure Azure data services to retrieve encryption keys from Key Vault at runtime, how to manage key rotation without disrupting encrypted data access, and how to configure Key Vault access policies that grant specific services and administrators the minimum necessary permissions for their operational requirements represents the key management knowledge that examination questions probed through realistic security configuration scenarios. Advanced Threat Protection across Azure SQL Database and Azure Storage provides behavioral anomaly detection that identifies potentially malicious access patterns, and candidates needed to understand both how to enable and configure these features and what types of threats they detect and respond to.
Azure Cosmos DB Integration
Azure Cosmos DB is the globally distributed, multi-model NoSQL database service that the DP-200 examination addressed as a component of Azure data engineering architectures where its specific capabilities — global distribution with configurable consistency levels, multiple API compatibility including SQL, MongoDB, Cassandra, Gremlin, and Table APIs, and guaranteed single-digit millisecond read and write latency at any scale — make it the appropriate storage solution for requirements that relational databases and object storage cannot efficiently serve. The examination tested candidates on Cosmos DB provisioning and configuration including account creation with appropriate API selection, database and container creation with partition key selection, throughput provisioning using request units, and consistency level configuration that governs the trade-off between read consistency and replication latency across globally distributed deployments.
Partition key selection is the most consequential design decision in Cosmos DB implementation because it determines how data is distributed across logical and physical partitions, how efficiently queries can be routed to specific partitions rather than requiring cross-partition fan-out, and whether write throughput can be distributed evenly across the provisioned capacity or whether hot partition bottlenecks will limit throughput to a fraction of provisioned capacity. Examination candidates needed to understand the properties of an effective partition key — high cardinality that distributes data across many distinct partition values, even distribution of read and write traffic across partition values, and frequent appearance in query filter conditions to enable single-partition query routing — well enough to evaluate the partition key choices for described data models and workload patterns and identify problematic designs before they cause production performance issues. The integration of Cosmos DB with Azure Data Factory for bulk data movement, with Azure Functions for event-driven processing of Cosmos DB change feed events, and with Azure Synapse Analytics Link for analytical query access without impacting operational workload performance are integration patterns that examination questions explored as components of complete Azure data architecture scenarios.
Monitoring And Troubleshooting Data Solutions
Monitoring and troubleshooting Azure data solutions is a practical skill domain that the DP-200 examination assessed through scenario-based questions requiring candidates to identify appropriate monitoring configurations and diagnostic approaches for described operational problems across the Azure data services in the curriculum. Effective monitoring of production Azure data engineering solutions requires understanding both the platform-level monitoring capabilities that Azure Monitor provides — metrics collection, log analytics, alerting, and diagnostic settings configuration — and the service-specific monitoring features that individual data services expose through their management interfaces and logging outputs.
Azure Data Factory monitoring capabilities include the ADF monitoring interface that provides pipeline run history, activity run details, and trigger run records that together enable data engineers to identify failed pipeline runs, examine the specific activity failure that caused a pipeline to fail, and analyze execution duration patterns that indicate performance degradation over time. The integration of ADF diagnostics with Azure Monitor Log Analytics enables retention of pipeline run history beyond ADF's native forty-five day retention window and enables complex analytical queries across pipeline run data using Kusto Query Language. Azure Databricks cluster event logs, driver logs, and executor logs provide the diagnostic information required to troubleshoot Spark job failures and performance problems, and candidates needed to understand how to access these logs and what information each log source provides for different categories of operational problems. The examination's scenario-based troubleshooting questions rewarded candidates who approached problem diagnosis systematically — identifying the most specific diagnostic information source available for the described symptom rather than defaulting to general-purpose monitoring tools regardless of the specific problem type.
Preparation Strategy Study Resources
Developing an effective preparation strategy for the DP-200 examination required honest assessment of current Azure data engineering knowledge against the examination's topic coverage, systematic study of the identified gaps using appropriate learning resources, and consistent hands-on practice with Azure data services in a live Azure environment throughout the preparation period. The official Microsoft Learn learning paths specifically designed for the DP-200 examination provided free, structured learning content organized around the examination's objectives and including hands-on sandbox exercises that enabled candidates to practice Azure service configurations without requiring a personal Azure subscription for learning exercises.
The Exam Ref DP-200 Implementing an Azure Data Solution published by Microsoft Press provided the most comprehensive text-based study resource available for the examination, covering all examination topic areas with configuration guidance, conceptual explanations, and review questions that helped candidates assess their comprehension of each topic area. Video training courses from providers including Pluralsight, LinkedIn Learning, and A Cloud Guru provided instructor-led visual instruction that many candidates found valuable for topics including Azure Databricks notebook development and Azure Synapse Analytics distribution design where seeing configurations demonstrated in a working environment accelerated comprehension. Practice examination platforms including MeasureUp and Whizlabs provided question banks with detailed explanations that helped candidates develop scenario reasoning skills and identify specific knowledge gaps requiring additional study before the examination date. The most effective preparation approach integrated all of these resource types — text study for conceptual foundation, video instruction for visual comprehension of complex configurations, hands-on Azure practice for operational familiarity, and practice examinations for examination-technique development and gap identification — rather than relying exclusively on any single resource type.
Career Impact Professional Growth
The Azure Data Engineer Associate certification produced measurable career impact for practitioners who earned it during its active examination period, reflecting the genuine market demand for verified Azure data engineering competency that the certification's existence and growth trajectory demonstrated. Data engineering roles requiring Azure expertise commanded premium compensation relative to equivalent roles without cloud platform specificity, and the certification provided a recognized credential that substantiated candidates' Azure data engineering capability claims in hiring processes where unverified experience claims were difficult for hiring managers to evaluate reliably. Mid-level data engineers with Azure Data Engineer Associate certification and practical project experience at enterprise organizations in the United States typically earned base salaries in the range of one hundred twenty thousand to one hundred sixty thousand dollars, with senior data engineers commanding base salaries well above one hundred eighty thousand dollars at major technology companies and financial institutions.
The professional growth trajectory that Azure data engineering skills and certification enabled extended beyond compensation into the organizational influence and technical leadership opportunities that senior data engineering practitioners access. Data architects who design the complete data platform strategies for large organizations, analytics engineering leads who establish the data modeling and transformation standards that downstream analytics teams depend on, and data platform engineering managers who lead teams building and operating the infrastructure that powers organizational analytics capabilities are roles that practitioners with strong Azure data engineering foundations and demonstrated leadership capability progress toward over careers spanning five to ten years. The technical depth required to perform effectively in these senior roles — the ability to evaluate architectural trade-offs across Azure data services, design data platforms that balance performance, cost, security, and operational simplicity appropriately for specific organizational contexts, and communicate technical decisions clearly to both engineering peers and business stakeholders — is developed most reliably through the combination of structured certification preparation and the genuine production deployment experience that gives abstract architectural principles concrete operational meaning.
Conclusion
The Microsoft Azure Data Engineer Associate certification represented a genuinely rigorous assessment of the practical Azure data engineering skills that production data platform implementations require, and the preparation journey it demanded — spanning Azure Data Factory pipeline development, Azure Databricks distributed processing, Azure SQL Database and Synapse Analytics implementation, ADLS Gen2 configuration, Stream Analytics real-time processing, and the security and monitoring practices that production data solutions require — produced practitioners with comprehensive Azure data engineering capability that served them well throughout the careers that followed.
The most enduring lesson that thorough DP-200 preparation imparted to serious candidates was that Azure data engineering excellence requires not just familiarity with individual Azure data services but the integrated architectural thinking that connects service-level implementation decisions to system-level outcomes — understanding how partition key selection in Cosmos DB affects the throughput and query performance of entire application workloads, how distribution design in Azure Synapse Analytics determines the query execution performance of analytical workloads operating on hundreds of gigabytes of data, how integration runtime placement in Azure Data Factory affects the network routing and authentication patterns of data movement operations, and how the interaction between RBAC roles and POSIX ACLs in ADLS Gen2 determines the effective access control behavior of complex multi-team data lake environments. This systems-level thinking, developed through the combination of systematic conceptual study and extensive hands-on practice with Azure data services in realistic data engineering scenarios, is the professional capability that the certification was designed to validate and that organizations deploying Azure data platforms most urgently needed their data engineering practitioners to demonstrate.
Use Microsoft DP-200 certification exam dumps, practice test questions, study guide and training course - the complete package at discounted price. Pass with DP-200 Implementing an Azure Data Solution practice test questions and answers, study guide, complete training course especially formatted in VCE files. Latest Microsoft certification DP-200 exam dumps will guarantee your success without studying for endless hours.
- AZ-104 - Microsoft Azure Administrator
- DP-700 - Implementing Data Engineering Solutions Using Microsoft Fabric
- AZ-305 - Designing Microsoft Azure Infrastructure Solutions
- PL-300 - Microsoft Power BI Data Analyst
- SC-300 - Microsoft Identity and Access Administrator
- MD-102 - Endpoint Administrator
- AB-100 - Agentic AI Business Solutions Architect
- AI-900 - Microsoft Azure AI Fundamentals
- MS-102 - Microsoft 365 Administrator
- AZ-900 - Microsoft Azure Fundamentals
- AB-900 - Microsoft 365 Copilot and Agent Administration Fundamentals
- AI-102 - Designing and Implementing a Microsoft Azure AI Solution
- SC-200 - Microsoft Security Operations Analyst
- SC-401 - Administering Information Security in Microsoft 365
- AZ-700 - Designing and Implementing Microsoft Azure Networking Solutions
- DP-600 - Implementing Analytics Solutions Using Microsoft Fabric
- AB-730 - AI Business Professional
- AB-731 - AI Transformation Leader
- SC-100 - Microsoft Cybersecurity Architect
- AZ-500 - Microsoft Azure Security Technologies
- GH-300 - GitHub Copilot
- PL-400 - Microsoft Power Platform Developer
- AZ-204 - Developing Solutions for Microsoft Azure
- AZ-140 - Configuring and Operating Microsoft Azure Virtual Desktop
- SC-900 - Microsoft Security, Compliance, and Identity Fundamentals
- DP-300 - Administering Microsoft Azure SQL Solutions
- AZ-400 - Designing and Implementing Microsoft DevOps Solutions
- AZ-801 - Configuring Windows Server Hybrid Advanced Services
- PL-600 - Microsoft Power Platform Solution Architect
- MB-800 - Microsoft Dynamics 365 Business Central Functional Consultant
- PL-200 - Microsoft Power Platform Functional Consultant
- AZ-800 - Administering Windows Server Hybrid Core Infrastructure
- MS-700 - Managing Microsoft Teams
- PL-900 - Microsoft Power Platform Fundamentals
- AI-103 - Developing AI Apps and Agents on Azure
- MB-330 - Microsoft Dynamics 365 Supply Chain Management
- DP-900 - Microsoft Azure Data Fundamentals
- MB-310 - Microsoft Dynamics 365 Finance Functional Consultant
- AI-300 - Operationalizing Machine Learning and Generative AI Solutions
- MB-280 - Microsoft Dynamics 365 Customer Experience Analyst
- MB-820 - Microsoft Dynamics 365 Business Central Developer
- DP-100 - Designing and Implementing a Data Science Solution on Azure
- MS-721 - Collaboration Communications Systems Engineer
- MB-230 - Microsoft Dynamics 365 Customer Service Functional Consultant
- GH-200 - GitHub Actions
- MB-700 - Microsoft Dynamics 365: Finance and Operations Apps Solution Architect
- MB-335 - Microsoft Dynamics 365 Supply Chain Management Functional Consultant Expert
- DP-420 - Designing and Implementing Cloud-Native Applications Using Microsoft Azure Cosmos DB
- MB-500 - Microsoft Dynamics 365: Finance and Operations Apps Developer
- GH-900 - GitHub Foundations
- MS-900 - Microsoft 365 Fundamentals
- GH-500 - GitHub Advanced Security
- PL-500 - Microsoft Power Automate RPA Developer
- GH-100 - GitHub Administration
- AZ-120 - Planning and Administering Microsoft Azure for SAP Workloads
- MB-240 - Microsoft Dynamics 365 for Field Service
- DP-800 - Developing AI-Enabled Database Solutions
- SC-400 - Microsoft Information Protection Administrator
- MB-920 - Microsoft Dynamics 365 Fundamentals Finance and Operations Apps (ERP)
- DP-203 - Data Engineering on Microsoft Azure
- 98-382 - Introduction to Programming Using JavaScript
- MO-200 - Microsoft Excel (Excel and Excel 2019)
- SC-500 - Implementing End-to-End Security Controls for Cloud and AI Workloads
- MS-203 - Microsoft 365 Messaging
- MB-910 - Microsoft Dynamics 365 Fundamentals Customer Engagement Apps (CRM)
- 98-367 - Security Fundamentals
- DP-750 - Implementing Data Engineering Solutions Using Azure Databricks
- 62-193 - Technology Literacy for Educators
- 98-383 - Introduction to Programming Using HTML and CSS
- AI-901 - Microsoft Azure AI Fundamentals
- MO-400 - Microsoft Outlook (Outlook and Outlook 2019)