{"id":11942,"date":"2023-01-27T07:17:32","date_gmt":"2023-01-27T07:17:32","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=11942"},"modified":"2023-08-29T07:23:20","modified_gmt":"2023-08-29T07:23:20","slug":"asymptotic-notation-types-and-uses","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/","title":{"rendered":"Asymptotic Notation: Types and Uses"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\" alt=\"\" \/><\/p>\n<p>Asymptotic notation is a fundamental concept in computer science and mathematics that allows us to describe the behavior of algorithms and functions as their input size approaches infinity. Asymptotic notation provides a simplified way to analyze and compare the efficiency of algorithms, focusing on their growth rates without being concerned with constant factors and lower-order terms. In this article, we delve into the properties of asymptotic notation, namely Big O, Omega, and Theta notation. By understanding these properties, we can gain valuable insights into algorithm performance and make informed decisions when designing or analyzing algorithms.<\/p>\n<p><strong>Best Case<\/strong> \u2212 Minimum time for the execution.<br \/>\n<strong>Average Case<\/strong> \u2212 Average time for the execution.<br \/>\n<strong>Worst Case<\/strong> \u2212 Maximum time for the execution.<\/p>\n<p>Asymptotic notations are mathematical tools to express the time complexity of algorithms for asymptotic analysis.<\/p>\n<p><strong>Note:<\/strong> if there&#8217;s no input to the algorithm, Then it is considered to work in a constant time. Other than the &quot;input&quot; all other factors are considered to be constant.<\/p>\n<h2>Three Main Asymptotic Notation<\/h2>\n<ul>\n<li>\u039f Big  Oh Notation <\/li>\n<li>\u03a9 OmegaNotation<\/li>\n<li>\u03b8   Theta Notation<\/li>\n<\/ul>\n<h3>Big O Asymptotic Notation, \u039f<\/h3>\n<p>The Asymptotic Notation \u039f(n) represents the upper bound of an algorithm&#8217;s running time. It measures or calculates the worst-case time complexity or the maximum or longest amount of time an algorithm can possibly take to complete. For example, O(log n)  represents a binary search algorithm&#8217;s upper bound.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584352-Asymptotic%20Notation1.png\" alt=\"\" \/><\/p>\n<p>g(n) is an Asymptotic upper bound for f(n)<br \/>\nO(g(n))={f(n): there exist a positive constants  c and No  such that 0&lt;=f(n) &lt;=cg(n)for all n&gt;=No<\/p>\n<h3>Omega Asymptotic  Notation, \u03a9<\/h3>\n<p>The Omega  Asymptotic Notation \u039f(n) represents the lower bound of an algorithm&#8217;s running time. It measures the best-case time complexity or the minimum amount of time an algorithm can possibly take to complete.  example, a Bubble Sort algorithm has a running time of \u03a9(N) because in the best-case scenario, the list is already sorted, and the bubble sort will terminate after the first iteration.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584355-Asymptotic%20Notation2.png\" alt=\"\" \/><\/p>\n<p>g(n) is an asymptotic lower bound for f(n)<br \/>\n\u03a9(f(n)) \u2265 { g(n) : there exists c &gt; 0 and n0 such that g(n) \u2264 c.f(n) for all n &gt; n0. }<\/p>\n<h3>Theta  Asymptotic  Notation, \u03b8<\/h3>\n<p>The  Theta Asymptotic Notation \u039f(n) represents the both lower bound and upper bound  of an algorithm&#8217;s running time. It measures the average case of time complexity. When we use big-\u0398 notation, we&#8217;re saying that we have an asymptotically tight bound on the running time. <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584356-Asymptotic%20Notation3.png\" alt=\"\" \/><\/p>\n<p>g(n) is an asymptotic tight  bound for f(n)<br \/>\nThe function f is said to be \u0398(g), if there are constants c1, c2 &gt; 0 and a natural number n0 such that c1<em> g(n) \u2264 f(n) \u2264 c2 <\/em> g(n) for all n \u2265 n0<\/p>\n<h2>Properties of Asymptotic Notation:<\/h2>\n<ol>\n<li>\n<p><strong>General Properties:<\/strong><br \/>\nIf f(n) is O(g(n)) and k is constant then k*f(n) is also O(g(n)).<\/p>\n<\/li>\n<li>\n<p><strong>Transitive Properties:<\/strong><br \/>\nIf  g(n) is O(h(n))  and f(n) is O(g(n)) then f(n) = O(h(n)).<\/p>\n<\/li>\n<li>\n<p><strong>Reflexive Properties:<\/strong><br \/>\nIf f(n) is given then f(n) is O(f(n)). Since the max value of  f(n) will be f(n) itself<br \/>\nHence x = f(n) and y = O(f(n) tie themselves in reflexive relation always.<\/p>\n<\/li>\n<li>\n<p><strong>Symmetric Properties:<\/strong><br \/>\nIf f(n) is \u0398(g(n)) then g(n) is \u0398(f(n)).<\/p>\n<\/li>\n<li>\n<p><strong>Transpose Symmetric Properties:<\/strong><br \/>\nIf f(n) is O(g(n)) then g(n) is \u03a9 (f(n)).<\/p>\n<\/li>\n<li>\n<p><strong>Some More Properties:<\/strong><\/p>\n<ol>\n<li>If <strong>f(n) = O(g(n))<\/strong> and <strong>f(n) = \u03a9(g(n))<\/strong> then <strong>f(n) = \u0398(g(n))<\/strong><\/li>\n<li>If <strong>f(n) = O(g(n))<\/strong> and <strong>d(n)=O(e(n))<\/strong> then <strong>f(n) + d(n) = O( max( g(n), e(n) ))<\/strong> <\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p><strong>Conclusion:<\/strong><br \/>\nIn the realm of algorithm analysis, the properties of asymptotic notation\u2014Big O, Omega, and Theta\u2014serve as indispensable tools for quantifying the efficiency of algorithms as input sizes become large. By abstracting away constant factors and lower-order terms, these notations allow us to focus on the fundamental growth rates of algorithms. Big O notation helps us establish upper bounds on an algorithm&#8217;s runtime, Omega notation provides lower bounds, and Theta notation offers a tight range of growth rates. Armed with these notations, we can make informed decisions about algorithm selection, optimization, and scalability, contributing to the development of more efficient and effective software solutions.<\/p>\n<h2>FAQ (Frequently Asked Questions) Related to asymptotic notation<\/h2>\n<p>Here are some FAQs related to asymptotic notation.<\/p>\n<p><strong>Q1: What is asymptotic notation?<\/strong><br \/>\nAsymptotic notation is a mathematical framework used to analyze the performance of algorithms and functions as their input size approaches infinity. It abstracts away constant factors and lower-order terms, focusing on the fundamental growth rates of these algorithms and functions.<\/p>\n<p><strong>Q2: What is Big O notation?<\/strong><br \/>\nBig O notation, often denoted as O(), describes the upper bound or worst-case behavior of an algorithm. It provides an estimation of how an algorithm&#8217;s runtime grows in relation to the input size, ignoring constant factors and lower-order terms.<\/p>\n<p><strong>Q3: What is Omega notation?<\/strong><br \/>\nOmega notation, represented as \u03a9(), signifies the lower bound or best-case behavior of an algorithm. It indicates the minimum rate at which the algorithm&#8217;s runtime will grow with increasing input size.<\/p>\n<p><strong>Q4: What is Theta notation?<\/strong><br \/>\nTheta notation, denoted as \u0398(), combines both upper and lower bounds to provide a tight range of growth rates for an algorithm. It gives a more precise description of an algorithm&#8217;s performance than Big O or Omega notation alone.<\/p>\n<p><strong>Q5: Why are asymptotic notations important?<\/strong><br \/>\nAsymptotic notations provide a standardized way to compare and analyze algorithms&#8217; efficiency, making it easier to assess their scalability and performance characteristics. They help us focus on the core trends in algorithm behavior as input sizes become large, which is essential for designing robust and efficient software.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Asymptotic notation is a fundamental concept in computer science and mathematics that allows us to describe the behavior of algorithms and functions as their input size approaches infinity. Asymptotic notation provides a simplified way to analyze and compare the efficiency of algorithms, focusing on their growth rates without being concerned with constant factors and lower-order [&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":[1],"tags":[],"class_list":["post-11942","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Asymptotic Notation: Big Oh, Omega and Theta Notation<\/title>\n<meta name=\"description\" content=\"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.\" \/>\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\/asymptotic-notation-types-and-uses\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Asymptotic Notation: Big Oh, Omega and Theta Notation\" \/>\n<meta property=\"og:description\" content=\"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\" \/>\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=\"2023-01-27T07:17:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T07:23:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\" \/>\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\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Asymptotic Notation: Types and Uses\",\"datePublished\":\"2023-01-27T07:17:32+00:00\",\"dateModified\":\"2023-08-29T07:23:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\"},\"wordCount\":970,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\",\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\",\"name\":\"Asymptotic Notation: Big Oh, Omega and Theta Notation\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\",\"datePublished\":\"2023-01-27T07:17:32+00:00\",\"dateModified\":\"2023-08-29T07:23:20+00:00\",\"description\":\"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Miscellaneous\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Asymptotic Notation: Types and Uses\"}]},{\"@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":"Asymptotic Notation: Big Oh, Omega and Theta Notation","description":"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.","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\/asymptotic-notation-types-and-uses\/","og_locale":"en_US","og_type":"article","og_title":"Asymptotic Notation: Big Oh, Omega and Theta Notation","og_description":"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.","og_url":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-01-27T07:17:32+00:00","article_modified_time":"2023-08-29T07:23:20+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Asymptotic Notation: Types and Uses","datePublished":"2023-01-27T07:17:32+00:00","dateModified":"2023-08-29T07:23:20+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/"},"wordCount":970,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg","articleSection":["Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/","url":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/","name":"Asymptotic Notation: Big Oh, Omega and Theta Notation","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg","datePublished":"2023-01-27T07:17:32+00:00","dateModified":"2023-08-29T07:23:20+00:00","description":"Here we will learn about asymptotic notations, types of asymptotic notations and their properties in detail.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1674803584235-Asymptotic%20Notation.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/asymptotic-notation-types-and-uses\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Miscellaneous","item":"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/"},{"@type":"ListItem","position":3,"name":"Asymptotic Notation: Types and Uses"}]},{"@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\/11942","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=11942"}],"version-history":[{"count":5,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/11942\/revisions"}],"predecessor-version":[{"id":17757,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/11942\/revisions\/17757"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=11942"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=11942"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=11942"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}