{"id":19435,"date":"2024-08-28T06:45:26","date_gmt":"2024-08-28T06:45:26","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=19435"},"modified":"2024-08-28T06:45:26","modified_gmt":"2024-08-28T06:45:26","slug":"distance-based-outlier-detection-and-a-nested-loop-method","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/","title":{"rendered":"Distance-Based Outlier Detection and a Nested Loop Method"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\" alt=\"\" \/><\/p>\n<p>In the ever-evolving field of data science, detecting outliers\u2014data points that significantly differ from the rest\u2014plays a crucial role in ensuring the integrity and accuracy of datasets. Outliers can indicate anomalies, errors, or even novel insights, making their detection essential in various applications, including fraud detection, network security, and quality control. Among the myriad methods developed for outlier detection, distance-based methods have garnered significant attention due to their simplicity and effectiveness in identifying outliers in multidimensional data. This article delves into the concept of distance-based outlier detection, exploring the nested loop method, one of the fundamental approaches used in this context.<\/p>\n<h2>What are Outliers?<\/h2>\n<p>Outliers are data points that deviate markedly from the other observations in a dataset. They can result from variability in the data, measurement errors, or indicate novel and potentially significant findings. Identifying these outliers is essential in data preprocessing and analysis, as they can heavily influence the results of statistical analyses and machine learning models.<\/p>\n<p><strong>Distance-Based Outlier Detection<\/strong> is a technique that identifies outliers based on their distance from other points in the dataset. The idea is that outliers are data points that are far away from the majority of the other points. This method is particularly effective in high-dimensional spaces where traditional outlier detection methods may struggle.<\/p>\n<h3>Distance-Based Outlier Detection<\/h3>\n<p>Distance-based outlier detection operates on the premise that an outlier is a data point that lies at a significant distance from most other data points. This method is highly effective for datasets where the notion of &quot;closeness&quot; or &quot;similarity&quot; among data points can be quantified using distance metrics like Euclidean distance.<\/p>\n<h3>Key Concepts of Distance-Based Outlier Detection<\/h3>\n<p>Here are some Key Concepts of Distance-Based Outlier Detection:<\/p>\n<ul>\n<li><strong>Distance Metric:<\/strong> A crucial component of distance-based outlier detection is the choice of the distance metric, which quantifies how far apart two data points are. Common distance metrics include Euclidean distance, Manhattan distance, and Mahalanobis distance. The choice of metric depends on the nature of the data and the specific application.<\/li>\n<li><strong>Neighborhood:<\/strong> For each data point, a neighborhood is defined based on a threshold distance, \u03b5, or a specified number of nearest neighbors, k. Points that have fewer than a certain number of neighbors within this threshold distance are considered outliers.<\/li>\n<li><strong>Outlier Score:<\/strong> The outlier score quantifies the extent to which a point is considered an outlier. This score can be based on the distance to the k-th nearest neighbor or the average distance to all neighbors within a certain radius.<\/li>\n<\/ul>\n<h2>What are Nested Loop Method?<\/h2>\n<p>The nested loop method is a fundamental and straightforward approach for distance-based outlier detection. Despite its simplicity, it is a powerful technique for identifying outliers in small to medium-sized datasets. The method operates in two loops: an outer loop and an inner loop.<\/p>\n<h3>Steps Involved in Nested Loop Method<\/h3>\n<p>Below are some Steps Involved in Nested Loop Method:<\/p>\n<ul>\n<li><strong>Outer Loop:<\/strong> The outer loop iterates over each data point in the dataset. For each point, it calculates the distance to all other points in the dataset.<\/li>\n<li><strong>Inner Loop:<\/strong> For each point in the outer loop, the inner loop counts the number of data points that lie within a specified distance threshold, \u03b5, from the current point.<\/li>\n<li><strong>Outlier Determination:<\/strong> After counting the neighbors within the threshold distance for each data point, a decision is made. If the number of neighbors is below a predefined threshold (typically very low), the point is flagged as an outlier.<\/li>\n<\/ul>\n<p><strong>Example<\/strong><br \/>\nConsider a dataset with five data points: A, B, C, D, and E. The nested loop method will proceed as follows:<\/p>\n<ul>\n<li><strong>Outer Loop:<\/strong> Start with point A.<\/li>\n<li><strong>Inner Loop:<\/strong> Calculate the distance from A to B, A to C, A to D, and A to E.<\/li>\n<li>Count the number of points within the distance threshold \u03b5.<\/li>\n<li>Move to point B and repeat the process.<\/li>\n<li>Continue until all points have been evaluated.<\/li>\n<li>Points with fewer neighbors within the threshold \u03b5 are considered outliers.<\/li>\n<\/ul>\n<h3>Advantages of Nested Loop Methods<\/h3>\n<p>Below are some Advantages of Nested Loop Method:<\/p>\n<ul>\n<li><strong>Simplicity:<\/strong> The nested loop method is straightforward to implement and understand.<\/li>\n<li><strong>Effectiveness:<\/strong> It works well in detecting outliers in small to medium-sized datasets.<\/li>\n<\/ul>\n<h3>Disadvantages of Nested Loop Method:<\/h3>\n<p>Below are some DIsadvantages of Nested Loop Method<\/p>\n<ul>\n<li><strong>Computational Complexity:<\/strong> The method has a time complexity of O(n\u00b2), making it computationally expensive for large datasets.<\/li>\n<li><strong>Scalability:<\/strong> It is not suitable for very large datasets or high-dimensional spaces without optimizations.<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><br \/>\nDistance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets. While the nested loop method is straightforward and effective for smaller datasets, its computational cost makes it less suitable for large-scale data. Despite this, the fundamental principles of distance-based outlier detection remain valuable, and advancements in algorithms continue to improve its efficiency and applicability in real-world scenarios.<\/p>\n<h2>FAQs related to Distance-Based Outlier Detection and a Nested Loop Method<\/h2>\n<p>Below are some FAQs related to Distance-Based Outlier Detection and a Nested Loop Method<\/p>\n<p><strong>1. What are outliers, and why are they important?<\/strong><br \/>\nOutliers are data points that significantly differ from other observations in a dataset. They are important because they can indicate anomalies, errors, or novel insights, influencing the outcomes of data analysis.<\/p>\n<p><strong>2. What is distance-based outlier detection?<\/strong><br \/>\nDistance-based outlier detection identifies outliers by measuring the distance of each data point from others in the dataset. Points that are far from most others are considered outliers.<\/p>\n<p><strong>3. How does the nested loop method work in distance-based outlier detection?<\/strong><br \/>\nThe nested loop method iterates over each data point, calculating its distance to all other points. It then counts how many points are within a certain distance threshold. Points with fewer neighbors within this threshold are considered outliers.<\/p>\n<p><strong>4. What are the limitations of the nested loop method?<\/strong><br \/>\nThe primary limitation is its computational complexity, with a time complexity of O(n\u00b2), making it less suitable for large datasets.<\/p>\n<p><strong>5. Can distance-based outlier detection be used in high-dimensional data?<\/strong><br \/>\nYes, but the choice of distance metric and the efficiency of the algorithm become crucial in high-dimensional spaces to avoid the &quot;curse of dimensionality.&quot;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the ever-evolving field of data science, detecting outliers\u2014data points that significantly differ from the rest\u2014plays a crucial role in ensuring the integrity and accuracy of datasets. Outliers can indicate anomalies, errors, or even novel insights, making their detection essential in various applications, including fraud detection, network security, and quality control. Among the myriad methods [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[237],"tags":[],"class_list":["post-19435","post","type-post","status-publish","format-standard","hentry","category-data-mining"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Distance-Based Outlier Detection and a Nested Loop Method<\/title>\n<meta name=\"description\" content=\"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Distance-Based Outlier Detection and a Nested Loop Method\" \/>\n<meta property=\"og:description\" content=\"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-28T06:45:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Distance-Based Outlier Detection and a Nested Loop Method\",\"datePublished\":\"2024-08-28T06:45:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\"},\"wordCount\":1021,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\",\"articleSection\":[\"Data Mining\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\",\"name\":\"Distance-Based Outlier Detection and a Nested Loop Method\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\",\"datePublished\":\"2024-08-28T06:45:26+00:00\",\"description\":\"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Mining\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/data-mining\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Distance-Based Outlier Detection and a Nested Loop Method\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Distance-Based Outlier Detection and a Nested Loop Method","description":"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/","og_locale":"en_US","og_type":"article","og_title":"Distance-Based Outlier Detection and a Nested Loop Method","og_description":"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.","og_url":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2024-08-28T06:45:26+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Distance-Based Outlier Detection and a Nested Loop Method","datePublished":"2024-08-28T06:45:26+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/"},"wordCount":1021,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png","articleSection":["Data Mining"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/","url":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/","name":"Distance-Based Outlier Detection and a Nested Loop Method","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png","datePublished":"2024-08-28T06:45:26+00:00","description":"Distance-based outlier detection, particularly using the nested loop method, is a powerful tool for identifying anomalies in datasets.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1724827503556-Distance-Based%20Outlier%20Detection%20and%20a%20Nested%20Loop%20Method.png"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/distance-based-outlier-detection-and-a-nested-loop-method\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Data Mining","item":"https:\/\/prepbytes.com\/blog\/category\/data-mining\/"},{"@type":"ListItem","position":3,"name":"Distance-Based Outlier Detection and a Nested Loop Method"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19435","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=19435"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19435\/revisions"}],"predecessor-version":[{"id":19436,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/19435\/revisions\/19436"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=19435"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=19435"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=19435"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}