{"id":12127,"date":"2026-09-15T06:16:43","date_gmt":"2026-09-15T06:16:43","guid":{"rendered":"https:\/\/www.examlabs.com\/certification\/?p=12127"},"modified":"2026-09-15T06:16:43","modified_gmt":"2026-09-15T06:16:43","slug":"databricks-certified-data-analyst-associate-practice-test-questions-and-exam-dumps-part-5-q81-100","status":"publish","type":"post","link":"https:\/\/www.examlabs.com\/certification\/databricks-certified-data-analyst-associate-practice-test-questions-and-exam-dumps-part-5-q81-100\/","title":{"rendered":"Databricks Certified Data Analyst Associate Practice Test Questions and Exam Dumps Part 5 Q81-100"},"content":{"rendered":"<h2><b>View Full <a href=\"https:\/\/www.examlabs.com\/certified-data-analyst-associate-exam-dumps\">Databricks Certified Data Analyst Associate Exam Dumps<\/a> and Practice Test Dumps.<\/b><\/h2>\n<p>&nbsp;<\/p>\n<h3><b>Question 81<\/b><\/h3>\n<p><b>What is the primary benefit of using views in Databricks SQL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To store pre-computed physical copies of data on disk<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To save complex query logic as a virtual table for reuse and simplified reporting<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To replace Delta Lake transaction logs<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To encrypt cloud storage buckets automatically<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Views are virtual tables defined by a SQL query. They allow analysts to encapsulate complex join logic, aggregations, or security filters into a single reusable object, simplifying downstream queries and dashboard creation without duplicating physical data storage.<\/span><\/p>\n<h3><b>Question 82<\/b><\/h3>\n<p><b>Which function is used to return the current date in Databricks SQL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">NOW()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CURRENT_DATE()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">TODAY()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">GETDATE()<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 2<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The CURRENT_DATE() function returns the current date based on the SQL session timezone in standard YYYY-MM-DD format. It is commonly used for filtering real-time transactional data or calculating dynamic date ranges in reports.<\/span><\/p>\n<h3><b>Question 83<\/b><\/h3>\n<p><b>What does the LIMIT clause do when combined with ORDER BY?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It returns only the top N sorted records, such as the top 10 highest sales.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It deletes all sorted records permanently.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It reverses the sort order automatically.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It throws a syntax error exception.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Combining ORDER BY with LIMIT allows analysts to retrieve top-N or bottom-N analyses efficiently (e.g., finding the top 5 customers by revenue). The engine sorts the dataset first and then returns only the specified number of top rows.<\/span><\/p>\n<h3><b>Question 84<\/b><\/h3>\n<p><b>Which SQL keyword is used to assign a temporary name or alias to a table or column?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">AS<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">NAMED<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">TO<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">RENAME<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The AS keyword is used to create temporary aliases for columns or tables in SQL queries (e.g., SELECT count(*) AS total_orders). Aliasing improves readability, especially when using table prefixes or aggregate functions.<\/span><\/p>\n<h3><b>Question 85<\/b><\/h3>\n<p><b>What is the main purpose of Delta Lake schema evolution?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To allow users to add new columns to an existing table automatically during write operations<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To delete table schemas permanently<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To convert tables into CSV flat files<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To restrict all write operations<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Schema evolution (mergeSchema = true) allows incoming data structures to adapt safely by automatically adding new columns or expanding data types without failing the data pipeline or corrupting historical table structures.<\/span><\/p>\n<h3><b>Question 86<\/b><\/h3>\n<p><b>Which function calculates the total sum of a numeric column?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SUM()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">TOTAL()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">ADD()<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">COUNT()<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The SUM() aggregate function calculates the mathematical sum of all non-null values in a specified numeric column, serving as a core building block for financial and quantitative reporting.<\/span><\/p>\n<h3><b>Question 87<\/b><\/h3>\n<p><b>How can an analyst check the exact schema definition of a table in Databricks SQL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">By running DESCRIBE TABLE table_name<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">By deleting the table and recreating it<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">By checking local browser cache<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">By restarting the cluster<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The DESCRIBE TABLE command outputs the schema structure of a specified table, listing every column name, its corresponding data type, and whether null values are permitted.<\/span><\/p>\n<h3><b>Question 88<\/b><\/h3>\n<p><b>What does the TRIM() function do in Databricks SQL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It removes leading and trailing whitespace characters from a string.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It deletes rows from a table.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It shortens table names automatically.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">It rounds decimal numbers.<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The TRIM() function cleans text data by stripping out extraneous leading and trailing spaces, which is essential for standardizing string columns during data cleansing.<\/span><\/p>\n<h3><b>Question 89<\/b><\/h3>\n<p><b>Which join type returns all records when there is a match in either left or right table records?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Full Outer Join<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Inner Join<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Left Join<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Cross Join<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">A Full Outer Join combines results from both tables, returning matched rows and filling unmatched rows with NULL values on either side to ensure complete data visibility.<\/span><\/p>\n<h3><b>Question 90<\/b><\/h3>\n<p><b>What is the purpose of the GROUP BY clause?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To group rows sharing identical values into summary rows for aggregation<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To sort rows in ascending order<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To filter individual rows before processing<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To delete duplicate tables<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The GROUP BY clause aggregates rows with identical values into summary groups, enabling functions like SUM(), AVG(), and COUNT() to compute metrics per category.<\/span><\/p>\n<h3><b>Question 91<\/b><\/h3>\n<p><b>Which system catalog manages security, governance, and permissions across Databricks workspaces?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Unity Catalog<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hive Metastore<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Local File System<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Cloud Object Storage<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Unity Catalog provides centralized access control, auditing, and fine-grained governance for data, views, and volumes across all workspaces in a Databricks account.<\/span><\/p>\n<h3><b>Question 92<\/b><\/h3>\n<p><b>What is the function of the DATE_ADD() SQL function?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To add a specified number of days to a given date<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To combine two text strings<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To multiply numeric columns<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To calculate running totals<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">DATE_ADD(start_date, num_days) adds a specified integer number of days to a start date, which is useful for calculating future deadlines or rolling date windows.<\/span><\/p>\n<h3><b>Question 93<\/b><\/h3>\n<p><b>Which operator is used to perform pattern matching with wildcard characters in SQL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">LIKE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">IN<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">BETWEEN<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">IS<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The LIKE operator is used with wildcard characters (like % for multiple characters and _ for a single character) to filter text patterns (e.g., WHERE name LIKE &#8216;A%&#8217;).<\/span><\/p>\n<h3><b>Question 94<\/b><\/h3>\n<p><b>What does a SQL query return if an inner join finds no matching records between two tables?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">An empty result set (zero rows)<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">All records from the left table<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">All records from both tables<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A syntax error exception<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">An INNER JOIN requires matching keys to exist in both tables; if no keys match, no rows meet the criteria, resulting in an empty output set.<\/span><\/p>\n<h3><b>Question 95<\/b><\/h3>\n<p><b>Which command is used to remove a table definition from the metastore permanently?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">DROP TABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">DELETE TABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">REMOVE TABLE<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CLEAR TABLE<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The DROP TABLE command deletes the table metadata from the catalog, and depending on whether the table is managed or external, it may also remove underlying data files.<\/span><\/p>\n<h3><b>Question 96<\/b><\/h3>\n<p><b>What is the purpose of the COALESCE function in queries with multiple fallback columns?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To return the first non-null value from the provided list of expressions<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To multiply all column values together<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To sort rows alphabetically<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To delete null records from storage<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">COALESCE(col1, col2, &#8216;default&#8217;) scans arguments sequentially and returns the first value that is not null, preventing null pointer errors during data consolidation.<\/span><\/p>\n<h3><b>Question 97<\/b><\/h3>\n<p><b>Which Databricks feature optimizes query performance by vectorizing execution on modern CPU hardware?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Photon Engine<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hive SerDe<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">CSV Parser<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Spark Driver<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Photon is Databricks&#8217; native vectorized C++ query engine that accelerates relational scans, joins, and aggregations significantly on SQL Warehouses.<\/span><\/p>\n<h3><b>Question 98<\/b><\/h3>\n<p><b>What does the BETWEEN operator evaluate in a WHERE clause?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Whether a value falls within a specified inclusive range<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Whether a string contains specific wildcard letters<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Whether a column value is completely null<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Whether a table has active partitions<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The BETWEEN operator checks if a value is within a specified range (e.g., WHERE age BETWEEN 18 AND 30), inclusive of the boundary values.<\/span><\/p>\n<h3><b>Question 99<\/b><\/h3>\n<p><b>Why would an analyst use UNION instead of UNION ALL?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To combine query results while automatically removing duplicate rows<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To execute queries faster without sorting<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To multiply row counts into a Cartesian product<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">To join tables on a shared key column<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">UNION removes duplicate rows from the combined result set, whereas UNION ALL retains all rows including duplicates. UNION requires extra sorting overhead to filter duplicates.<\/span><\/p>\n<h3><b>Question 100<\/b><\/h3>\n<p><b>What is the role of the Bronze layer in the medallion architecture?<\/b><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ingesting raw source data in its original format without modifications<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Storing finalized executive dashboard charts<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Performing complex machine learning model training<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Deleting old log files from storage<\/span><\/li>\n<\/ol>\n<p><b>Correct Answer: 1<\/b><\/p>\n<p><b>Explanation<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The Bronze layer serves as the initial landing zone for raw, unprocessed ingestion from source systems (APIs, event streams, databases), preserving data in its original format for auditing and downstream cleansing.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>View Full Databricks Certified Data Analyst Associate Exam Dumps and Practice Test Dumps. &nbsp; Question 81 What is the primary benefit of using views in Databricks SQL? To store pre-computed physical copies of data on disk To save complex query logic as a virtual table for reuse and simplified reporting To replace Delta Lake transaction [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1648,1647],"tags":[],"_links":{"self":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12127"}],"collection":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/comments?post=12127"}],"version-history":[{"count":1,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12127\/revisions"}],"predecessor-version":[{"id":12148,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/posts\/12127\/revisions\/12148"}],"wp:attachment":[{"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/media?parent=12127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/categories?post=12127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.examlabs.com\/certification\/wp-json\/wp\/v2\/tags?post=12127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}