{"id":12358,"date":"2023-01-31T06:52:24","date_gmt":"2023-01-31T06:52:24","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=12358"},"modified":"2023-01-31T06:52:24","modified_gmt":"2023-01-31T06:52:24","slug":"relational-operators-in-python","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/","title":{"rendered":"Relational Operators in Python"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg\" alt=\"\" \/><\/p>\n<p>In this article, we will discuss the relational operators in python, types of relational operators in python, Some examples of relational operators in python, code implementation and its explanation, and one quiz on the relational operator.<\/p>\n<h2>What are Relational Operators in Python<\/h2>\n<p>Relational operators in python are the mathematical symbol, used for comparing the operand values, they return a boolean value(either True or False) according to the condition. They are also known as Comparison operators. mainly they are of 6 types.<\/p>\n<pre><code>>\n<\n==\n!=\n>=\n<=<\/code><\/pre>\n<p>Types of Relational Operators in Python<\/p>\n<table>\n<thead>\n<tr>\n<th>\u00a0 \u00a0 \u00a0 \u00a0 Operator<\/th>\n<th>\u00a0 \u00a0 \u00a0 \u00a0 Description<\/th>\n<th>\u00a0 \u00a0 \u00a0 Syntax<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &gt;<\/td>\n<td>Greater than: return true if the value of the left operand is greater than the right<\/td>\n<td>a&gt;b<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &lt;<\/td>\n<td>Less than return true if the value of the left operand is lesser than the right<\/td>\n<td>a&lt; b<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ==<\/td>\n<td>Equal: return true if both operands are equal<\/td>\n<td>a==b<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 !=<\/td>\n<td>Not equal to return true if the operands are not equal<\/td>\n<td>a!=b<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &gt;=<\/td>\n<td>Greater than equal to return true if the value of the left operand is greater than or equal to the right<\/td>\n<td>a&gt;=b<\/td>\n<\/tr>\n<tr>\n<td>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 &lt;=<\/td>\n<td>less than equal to: return true if the value of the left operand is less than or equal to the right<\/td>\n<td>a&lt;=b<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Example 1: Greater than(&gt;)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>a>b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a>b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>True<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018&gt;\u2019 greater than  (relational operator) it returns true if the left operand is greater than the right operand,  and we know 20 is greater than 13, so in the output screen, we have  [True] as a result.<\/p>\n<h3>Example 2: Less than(&lt;)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code> a<b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a<b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>False<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018&lt;\u2019 less than  (relational operator) it returns true if the left operand is less than the right operand,  and we know 20 is not less than 13, so in the output screen, we have  [False] as a result.<\/p>\n<h3>Example 3: Equal to(==)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>a==b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a==b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>False<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018==\u2019 equal to (relational operator) it returns true if the left operand is equal to the right operand,  and we know 20 is not equal to 13, so in the output screen, we have  [False] as a result.<\/p>\n<h3>Example 4: Not equal to (!=)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>a!=b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a!=b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>True<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018==\u2019  not equal to (relational operator) it returns true if the left operand is not equal to the right operand,  and we know 20 is not equal to 13, so in the output screen, we have  [True] as a result.<\/p>\n<h3>Example 5: Greater than equal to (&gt;=)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>a>=b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a>=b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>True<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018&gt;=\u2019 greater than or equal to  (relational operator) it returns true if the left operand is greater than or equal to the right operand,  and we know 20 is greater than 13,  so in the output screen, we have  [True] as a result.<\/p>\n<h3>Example 6: Less than equal to(&lt;=)<\/h3>\n<p><strong>Syntax:<\/strong><\/p>\n<pre><code>a<=b<\/code><\/pre>\n<p><strong>Code:<\/strong><\/p>\n<pre><code>a=20\nb=13\n#on output screen\nprint(a<=b)<\/code><\/pre>\n<p><strong>Output:<\/strong><\/p>\n<pre><code>False<\/code><\/pre>\n<p><strong>Explanation<\/strong><br \/>\nIn the above python program we have two variables a and b . the value of is 20 and the value of b is 13. So as we discuss earlier relational operator gives a boolean result, So here we use \u2018&lt;=\u2019 less than equal to (relational operator) it returns true if the left operand is less than or equal to the right operand,  and we know 20 is not less than or equal to 13, so in the output screen, we have  [False] as a result.<\/p>\n<h2>Quiz:<\/h2>\n<p><strong>Which of the following is not a relational operator?<\/strong><\/p>\n<blockquote>\n<p>=<br \/>\n&lt;=<br \/>\n!=<br \/>\n!<\/p>\n<\/blockquote>\n<pre><code>Option D is right ans.\n! is a logical operator.\n\nLogical operators !,|,||,&,&&\nRelational operator >,<,<=,>=,==,!=<\/code><\/pre>\n<p><strong>Summary<\/strong><br \/>\nA relational operator in Python is a symbol or keyword used to compare two values and determine the relationship between them. The most commonly used relational operators in Python are<\/p>\n<pre><code>< (less than)\n> (greater than)\n<= (less than or equal to)\n>= (greater than or equal to)\n== (equal to)\n!= (not equal to)<\/code><\/pre>\n<p>These operators can be used in conditional statements and loops to control the flow of a program. For example, the following code uses the &lt; operator to check if a variable x is less than 10<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will discuss the relational operators in python, types of relational operators in python, Some examples of relational operators in python, code implementation and its explanation, and one quiz on the relational operator. What are Relational Operators in Python Relational operators in python are the mathematical symbol, used for comparing the operand [&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-12358","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>Relational Operators in Python<\/title>\n<meta name=\"description\" content=\"Here, we will learn about the relational operators in python and types of relational operators in python with examples.\" \/>\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\/relational-operators-in-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Relational Operators in Python\" \/>\n<meta property=\"og:description\" content=\"Here, we will learn about the relational operators in python and types of relational operators in python with examples.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/relational-operators-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-01-31T06:52:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Relational Operators in Python\",\"datePublished\":\"2023-01-31T06:52:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/\"},\"wordCount\":785,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg\",\"articleSection\":[\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/\",\"name\":\"Relational Operators in Python\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg\",\"datePublished\":\"2023-01-31T06:52:24+00:00\",\"description\":\"Here, we will learn about the relational operators in python and types of relational operators in python with examples.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/relational-operators-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\":\"Relational Operators 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":"Relational Operators in Python","description":"Here, we will learn about the relational operators in python and types of relational operators in python with examples.","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\/relational-operators-in-python\/","og_locale":"en_US","og_type":"article","og_title":"Relational Operators in Python","og_description":"Here, we will learn about the relational operators in python and types of relational operators in python with examples.","og_url":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-01-31T06:52:24+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Relational Operators in Python","datePublished":"2023-01-31T06:52:24+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/"},"wordCount":785,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg","articleSection":["Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/","url":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/","name":"Relational Operators in Python","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg","datePublished":"2023-01-31T06:52:24+00:00","description":"Here, we will learn about the relational operators in python and types of relational operators in python with examples.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/relational-operators-in-python\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675147150363-Relational%20Operators%20in%20Python.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/relational-operators-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":"Relational Operators 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\/12358","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=12358"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12358\/revisions"}],"predecessor-version":[{"id":12392,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12358\/revisions\/12392"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=12358"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=12358"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=12358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}