{"id":16677,"date":"2023-06-05T06:59:42","date_gmt":"2023-06-05T06:59:42","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=16677"},"modified":"2023-07-04T09:42:51","modified_gmt":"2023-07-04T09:42:51","slug":"find-hcf-of-two-numbers-in-python","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/","title":{"rendered":"Find HCF Of Two Numbers In Python"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg\" alt=\"\" \/><\/p>\n<p>The full form of HCF is the Highest Common Factor. The H.C.F. defines the greatest factor present in between given two or more numbers, In this article, we will look at various Python methods for calculating the HCF of two numbers. <\/p>\n<h2>What is HCF of two numbers in Python?<\/h2>\n<p>The Highest Common Factor (HCF), also known as the Greatest Common Divisor (GCD), is a basic mathematical concept that is used in a variety of applications.<br \/>\n<strong>Example:<\/strong><br \/>\n<strong>Input:<\/strong> 54 and 72<br \/>\n<strong>Output:<\/strong> 18<\/p>\n<p>We will cover multiple techniques, each with its own approach and advantages.<\/p>\n<ol>\n<li>Using Euclidean Algorithm<\/li>\n<li>Using gcd() function<\/li>\n<li>Using prime factorization<\/li>\n<li>Using recursive function<\/li>\n<li>Using iteration loops<\/li>\n<\/ol>\n<h2>Using Euclidean Algorithm to find HCF of two numbers in Python<\/h2>\n<p>The Euclidean Algorithm is a popular method for calculating the HCF of two numbers.<br \/>\nIt entails finding the remainder when dividing the larger number by the smaller number recursively until the remainder becomes zero.<br \/>\nThe HCF of the two numbers is the last non-zero remainder.<\/p>\n<h3>Python Code<\/h3>\n<pre><code>def euclidean_hcf(a, b):\n    while b:\n        a, b = b, a % b\n    return a\n\nnum1 = 54\nnum2 = 72\nhcf = euclidean_hcf(num1, num2)\nprint(\"HCF:\", hcf)<\/code><\/pre>\n<p>Output: 18<br \/>\nUsing math.gcd() Function to find HCF of two numbers in Python<br \/>\nPython includes a math module that includes the gcd() function.<br \/>\nWe can use this function to find the HCF directly by passing the two numbers as arguments.<br \/>\nPython Code<br \/>\nimport math<\/p>\n<p>num1 = 54<br \/>\nnum2 = 72<br \/>\nhcf = math.gcd(num1, num2)<br \/>\nprint(&quot;HCF:&quot;, hcf)<\/p>\n<p><strong>Output:<\/strong> <\/p>\n<pre><code>18<\/code><\/pre>\n<h2>Using Prime Factorization to find HCF of two numbers in Python<\/h2>\n<p>Prime factorization is another method for determining the HCF.<br \/>\nWe divide both numbers into prime factors and look for common factors.<br \/>\nThe HCF is the product of these common factors. <\/p>\n<h3>Python Code<\/h3>\n<pre><code>def prime_factors(n):\n    factors = []\n    i = 2\n    while i * i <= n:\n        if n % i:\n            i += 1\n        else:\n            n \/\/= i\n            factors.append(i)\n    if n > 1:\n        factors.append(n)\n    return factors\n\ndef hcf_prime_factorization(a, b):\n    factors_a = prime_factors(a)\n    factors_b = prime_factors(b)\n    common_factors = set(factors_a).intersection(factors_b)\n    hcf = 1\n    for factor in common_factors:\n        hcf *= factor\n    return hcf\n\nnum1 = 54\nnum2 = 72\nhcf = hcf_prime_factorization(num1, num2)\nprint(\"HCF:\", hcf)<\/code><\/pre>\n<p><strong>Output:<\/strong> <\/p>\n<pre><code>18<\/code><\/pre>\n<h2>Using Recursive Function to find HCF of two numbers in Python<\/h2>\n<p>We can write a recursive function that calls itself repeatedly.<br \/>\nThe smaller number is passed as the first argument, and the remainder of the division is passed as the second argument.<br \/>\nThe problem is simplified by reducing it to finding the HCF of two smaller numbers. <\/p>\n<h3>Python Code<\/h3>\n<pre><code>def recursive_hcf(a, b):\n    if b == 0:\n        return a\n    return recursive_hcf(b, a % b)\n\nnum1 = 54\nnum2 = 72\nhcf = recursive_hcf(num1, num2)\nprint(\"HCF:\", hcf)<\/code><\/pre>\n<p><strong>Output:<\/strong> <\/p>\n<pre><code>18<\/code><\/pre>\n<h2>Using Iterative Loop to find HCF of two numbers in Python<\/h2>\n<p>An iterative loop approach involves checking each number starting with the smaller number and working your way down until you reach 1.<br \/>\nThe HCF is found by identifying the first number that divides both input numbers without leaving a remainder.  <\/p>\n<h3>Python Code<\/h3>\n<pre><code>def iterative_hcf(a, b):\n    while b != 0:\n        a, b = b, a % b\n    return a\n\nnum1 = 54\nnum2 = 72\nhcf = iterative_hcf(num1, num2)\nprint(\"HCF:\", hcf)<\/code><\/pre>\n<p><strong>Output:<\/strong><br \/>\n18<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, we looked at various Python methods for calculating the HCF of two numbers. The Euclidean Algorithm is a popular and efficient approach, while the math.gcd() function provides a convenient built-in solution. The prime factorization method provides a novel approach to determining the HCF, whereas the recursive function and iterative loop provide alternatives. Developers can select the best method for their application based on the complexity of the numbers and the specific requirements. By understanding these techniques, one can confidently use Python&#8217;s versatile capabilities to find the HCF of any two numbers.<\/p>\n<h2>Frequently Asked Questions (FAQs)<\/h2>\n<p><strong>Q1. What is the product of two numbers&#8217; HCF?<\/strong><br \/>\nThe largest positive integer that divides two given numbers without leaving a remainder is known as the Highest Common Factor (HCF), also known as the Greatest Common Divisor (GCD).<\/p>\n<p><strong>Q2.Can I use these methods to calculate the HCF of more than two numbers?<\/strong><br \/>\nThe methods presented in this article are designed specifically for calculating the HCF of two numbers. If you want to find the HCF of more than two numbers, you can iteratively use the HCF of the first two numbers as an input along with the next number.<\/p>\n<p><strong>Q3.What is the distinction between the Euclidean algorithm and the method of prime factorization?<\/strong><br \/>\nThe Euclidean algorithm is an efficient iterative method for determining the HCF that employs division and remainder operations. Finding the prime factors of both numbers and then identifying the common factors to calculate the HCF is the process of prime factorization. <\/p>\n<p><strong>Q4. Are these methods restricted in any way?<\/strong><br \/>\nThe methods provided can be used to calculate the HCF of any two positive integers. However, for large numbers with many prime factors, the prime factorization method may become slower.<\/p>\n<p><strong>Q5. Is it possible to use these methods to calculate the HCF of decimal or floating-point numbers?<\/strong><br \/>\nNo, these methods only work with positive integers. If you need to find the common factor or divisor of two decimal or floating-point numbers, convert them to integers by multiplying by a power of ten, and then use these methods.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The full form of HCF is the Highest Common Factor. The H.C.F. defines the greatest factor present in between given two or more numbers, In this article, we will look at various Python methods for calculating the HCF of two numbers. What is HCF of two numbers in Python? The Highest Common Factor (HCF), also [&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":[154],"tags":[],"class_list":["post-16677","post","type-post","status-publish","format-standard","hentry","category-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Find HCF Of Two Numbers In Python<\/title>\n<meta name=\"description\" content=\"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.\" \/>\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\/find-hcf-of-two-numbers-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find HCF Of Two Numbers In Python\" \/>\n<meta property=\"og:description\" content=\"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\" \/>\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-06-05T06:59:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-04T09:42:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Find HCF Of Two Numbers In Python\",\"datePublished\":\"2023-06-05T06:59:42+00:00\",\"dateModified\":\"2023-07-04T09:42:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\"},\"wordCount\":739,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\",\"name\":\"Find HCF Of Two Numbers In Python\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg\",\"datePublished\":\"2023-06-05T06:59:42+00:00\",\"dateModified\":\"2023-07-04T09:42:51+00:00\",\"description\":\"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Python\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/python\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Find HCF Of Two Numbers In Python\"}]},{\"@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":"Find HCF Of Two Numbers In Python","description":"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.","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\/find-hcf-of-two-numbers-in-python\/","og_locale":"en_US","og_type":"article","og_title":"Find HCF Of Two Numbers In Python","og_description":"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.","og_url":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-06-05T06:59:42+00:00","article_modified_time":"2023-07-04T09:42:51+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Find HCF Of Two Numbers In Python","datePublished":"2023-06-05T06:59:42+00:00","dateModified":"2023-07-04T09:42:51+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/"},"wordCount":739,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/","url":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/","name":"Find HCF Of Two Numbers In Python","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg","datePublished":"2023-06-05T06:59:42+00:00","dateModified":"2023-07-04T09:42:51+00:00","description":"Find HCF Of Two Numbers In Python can be executed using gcd, euclidean(),prime factorization and loops.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1685948005142-Find%20HCF%20of%20two%20numbers%20in%20Python.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/find-hcf-of-two-numbers-in-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Python","item":"https:\/\/prepbytes.com\/blog\/category\/python\/"},{"@type":"ListItem","position":3,"name":"Find HCF Of Two Numbers In Python"}]},{"@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\/16677","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=16677"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16677\/revisions"}],"predecessor-version":[{"id":16678,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/16677\/revisions\/16678"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=16677"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=16677"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=16677"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}