{"id":9043,"date":"2022-07-12T09:04:45","date_gmt":"2022-07-12T09:04:45","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=9043"},"modified":"2022-08-30T03:09:38","modified_gmt":"2022-08-30T03:09:38","slug":"different-types-of-queues-and-its-applications","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/","title":{"rendered":"Different Types Of Queues And Its Applications"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg\" alt=\"\" \/><\/p>\n<h3>Queue<\/h3>\n<p>A queue is basically a <a href=\"https:\/\/prepbytes.com\/blog\/queues\/different-types-of-queues-and-its-applications\/\" title=\"linear data structure\">linear data structure<\/a> that works on the principle of <strong><a href=\"https:\/\/prepbytes.com\/blog\/queues\/different-types-of-queues-and-its-applications\/\" title=\"FIFO (First in First out)\">FIFO (First in First out)<\/a><\/strong> which means an element that is enqueued first will be dequeued first. Element is enqueued from the rear end of the queue and dequeued from the front end. The insertion operation in the queue is known as enqueue and the deletion operation in the queue is known as dequeue.<\/p>\n<p>The queue is used when the operations are to be performed in the manner of First in First out order just like Breadth-First Search.<br \/>\nFor Example A ticket Queue outside a cinema hall where the person enters the queue first will get the ticket first.<br \/>\n<img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606562207-Image-01.png\" alt=\"\" \/><\/p>\n<h3>Basic Operations of Queue:<\/h3>\n<ul>\n<li>\n<p><strong>Enqueue<\/strong>: This operation is used to Insert an element at the rear end of the queue.<\/p>\n<\/li>\n<li>\n<p><strong>Dequeue<\/strong>: This operation is used to remove and return an element from the front end of the queue. <\/p>\n<\/li>\n<li>\n<p><strong>isEmpty()<\/strong>: This operation is used to check whether the queue is empty or not. It returns bool value, if the queue is empty then this operation will return true else false.<\/p>\n<\/li>\n<li>\n<p><strong>isFull()<\/strong>: This operation is used to check whether the queue is full or not. It return true is the queue is full, else it will return false.<\/p>\n<\/li>\n<li>\n<p><strong>Peek()<\/strong>: This operation is used to get the value of the element from the front of the queue.<\/p>\n<\/li>\n<\/ul>\n<h3>Working of queue:<\/h3>\n<ul>\n<li>We can implement queue by using two pointers i.e. FRONT and REAR.<\/li>\n<li>FRONT is used to track the first element of the queue.<\/li>\n<li>REAR is used to track the last element of the queue.<\/li>\n<li>Initially, we\u2019ll set the values of FRONT and REAR to -1.<\/li>\n<\/ul>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606631205-Image-02.png\" alt=\"\" \/><\/p>\n<h3>Types of queues:<\/h3>\n<p><strong>There are 4 types of queues:<\/strong><\/p>\n<p>1.<strong>Simple Queue:<\/strong> <\/p>\n<p>A Queue is a linear data structure. Queue follows the FIFO rule i.e. First in First out. In other words we can say the element that goes in first is the element that comes out first.<\/p>\n<p>For Example A ticket Queue outside a cinema hall where the person enters the queue first will get the ticket first.<\/p>\n<p>In a simple queue, there are two ends, the end at which insertion operation performs is known as rear end whereas the end where deletion operation performs is known as front end.<\/p>\n<p>2.<strong>Circular queue:<\/strong> Circular queue is a linear data structure which follows the FIFO(First in first out) property. In this, the last element is connected to the first element to make a ring, which is also known as Ring buffer.<\/p>\n<p>How does the Circular queue work?<br \/>\nCircular queue works in the process of circular increment i.e. when we\u2019ll increment the pointer and reach the end then pointer points to the beginning of the queue.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606649607-Image-03.png\" alt=\"\" \/><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606666865-Image-04.png\" alt=\"\" \/><\/p>\n<p><strong>Operations of circular queue:<\/strong> <\/p>\n<ul>\n<li>front(): front is used to track the first element of the queue.<\/li>\n<li>rear(): rear is used to track the last element of the queue.<\/li>\n<li>Enqueue: This operation is used to Insert an element at the end of the queue.<\/li>\n<li>Dequeue: This operation is used to remove and return an element from the front of the queue.<\/li>\n<\/ul>\n<p>3.<strong>Priority queue:<\/strong> Priority queue is an abstract data type, It is a type of queue in which each element has a priority assigned to it. The priority of the element determines the order in which elements are removed from the priority queue. In the priority queue, all the elements are arranged either in ascending order or descending order.<\/p>\n<p><strong>Priority Queue Properties:<\/strong><\/p>\n<ul>\n<li>In the priority queue, every element has priority assigned to it.<\/li>\n<li>The element with highest priority first.<\/li>\n<li>If two elements are having the same priority then they are served according to their order in the queue.<\/li>\n<\/ul>\n<p><strong>Uses of priority queue:<\/strong><\/p>\n<ul>\n<li>Priority queue is used in memory management.<\/li>\n<li>Priority queue is used in CPU Scheduling.<\/li>\n<li>Also used in the Traffic system.<\/li>\n<\/ul>\n<p><strong>Implementation of Priority queue:<\/strong><br \/>\nPriority queue is implemented in the following ways:<\/p>\n<ul>\n<li>Using Arrays.<\/li>\n<li>Using Linked List<\/li>\n<li>Using Heap data structure<\/li>\n<li>Using Binary Search Tree<\/li>\n<\/ul>\n<p>4.<strong>Deque (Double ended queue)<\/strong>: In Deque, The insertion and deletion operations are done from both the ends i.e. either from the rear or from the front.<br \/>\nWe can use deque as both stack and queue as it follows the insertion and deletion operations from both the ends.<br \/>\nWe can consider deque as both because stack follows the LIFO Order in which insertion and deletion can be done from the same end and as we study in the dequeue it is possible to do both the operations from the same end.<\/p>\n<p><strong>The representation of deque:<\/strong><\/p>\n<p><strong>Types of deque:<\/strong><\/p>\n<ol>\n<li>\n<p><strong>Input Restricted deque<\/strong>: As the name suggests, in input restricted deque, insertion operation can be performed at only one end whereas deletion operation can be done from both the ends.<\/p>\n<\/li>\n<li>\n<p><strong>Output Restricted deque<\/strong>: In output restricted deque, deletion operation can be performed at single end whereas insertion operation can be performed at both the ends.<\/p>\n<\/li>\n<\/ol>\n<h3>Application of queues:<\/h3>\n<ol>\n<li><strong>Job Scheduling:<\/strong> The jobs which are executed by the computer are executed in a sequence manner i.e. one by one and these jobs are scheduled by queue.<\/li>\n<li><strong>Multiprogramming:<\/strong> When we run multiple programs at the same time in the memory this is called multiprogramming and the memory is organized by a queue.<\/li>\n<li><strong>Operations on data structure:<\/strong> Operations like Tree traversals, BFS involves the use of queue.<\/li>\n<li>Queue is also used in CPU Scheduling and in memory management.<\/li>\n<\/ol>\n<p>This article tried to discuss <strong>Different Types Of Queues And Its Applications<\/strong>. Hope this blog helps you understand the concept. To practice problems  you can check out <a href=\"#\"><\/a> at <a href=\"https:\/\/www.prepbytes.com\/\"> Prepbytes<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Queue A queue is basically a linear data structure that works on the principle of FIFO (First in First out) which means an element that is enqueued first will be dequeued first. Element is enqueued from the rear end of the queue and dequeued from the front end. The insertion operation in the queue is [&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":[128],"tags":[],"class_list":["post-9043","post","type-post","status-publish","format-standard","hentry","category-queues"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Different Types Of Queues and Its Applications |PrepBytes Blog<\/title>\n<meta name=\"description\" content=\"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.\" \/>\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\/different-types-of-queues-and-its-applications\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Different Types Of Queues and Its Applications |PrepBytes Blog\" \/>\n<meta property=\"og:description\" content=\"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\" \/>\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=\"2022-07-12T09:04:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-30T03:09:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Different Types Of Queues And Its Applications\",\"datePublished\":\"2022-07-12T09:04:45+00:00\",\"dateModified\":\"2022-08-30T03:09:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\"},\"wordCount\":930,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg\",\"articleSection\":[\"Queues\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\",\"name\":\"Different Types Of Queues and Its Applications |PrepBytes Blog\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg\",\"datePublished\":\"2022-07-12T09:04:45+00:00\",\"dateModified\":\"2022-08-30T03:09:38+00:00\",\"description\":\"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Queues\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/queues\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Different Types Of Queues And Its Applications\"}]},{\"@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":"Different Types Of Queues and Its Applications |PrepBytes Blog","description":"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.","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\/different-types-of-queues-and-its-applications\/","og_locale":"en_US","og_type":"article","og_title":"Different Types Of Queues and Its Applications |PrepBytes Blog","og_description":"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.","og_url":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2022-07-12T09:04:45+00:00","article_modified_time":"2022-08-30T03:09:38+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Different Types Of Queues And Its Applications","datePublished":"2022-07-12T09:04:45+00:00","dateModified":"2022-08-30T03:09:38+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/"},"wordCount":930,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg","articleSection":["Queues"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/","url":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/","name":"Different Types Of Queues and Its Applications |PrepBytes Blog","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg","datePublished":"2022-07-12T09:04:45+00:00","dateModified":"2022-08-30T03:09:38+00:00","description":"A queue is basically a linear data structure that works on the principle of FIFO. In this article, we\u2019ll study different types of queues and its applications of queue.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1657606482221-Article.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/different-types-of-queues-and-its-applications\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Queues","item":"https:\/\/prepbytes.com\/blog\/category\/queues\/"},{"@type":"ListItem","position":3,"name":"Different Types Of Queues And Its Applications"}]},{"@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\/9043","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=9043"}],"version-history":[{"count":4,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/9043\/revisions"}],"predecessor-version":[{"id":9423,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/9043\/revisions\/9423"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=9043"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=9043"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=9043"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}