{"id":12418,"date":"2023-01-31T11:10:36","date_gmt":"2023-01-31T11:10:36","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=12418"},"modified":"2023-05-18T11:53:48","modified_gmt":"2023-05-18T11:53:48","slug":"base-address-of-a-two-dimensional-array","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/","title":{"rendered":"Base Address of a Two-Dimensional Array"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg\" alt=\"\" \/><\/p>\n<p>In C++, a two dimensional array is a collection of elements arranged in a grid pattern, where each element is indexed by two indices, one for the row and one for the column. We will look at the base address of a two dimensional array and how to compute the base address of any element in a two-dimensional array in C++.<\/p>\n<h2>What is a Two-Dimensional Array?<\/h2>\n<p>In C++, a two dimensional array is a collection of elements arranged in a grid pattern, where each element is indexed by two indices, one for the row and one for the column. The base address of a two dimensional array is the memory address of the first element of the array, which is the element at the top-left corner of the array.<\/p>\n<p>It is a sort of multidimensional array. Declaring a two-dimensional array uses the same syntax as displaying a <a href=\"http:\/\/prepbytes.com\/blog\/arrays\/one-dimensional-array\/\" title=\"one-dimensional array\">one-dimensional array<\/a>, int arr[m][n], where m is the number of rows and n is the number of columns.<\/p>\n<p>The base address of a two dimensional array can be obtained by using the name of the array without any indices. For example, if we have a two dimensional array named \u2018arr\u2019 with m rows and n columns, we can obtain the base address of the array using the following syntax:<\/p>\n<pre><code>int arr[m][n];\nint *base_address = &amp;arr[0][0];<\/code><\/pre>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921423-Base%20Address%20of%20a%20two%20dimensional%20array1.png\" alt=\"\" \/><\/p>\n<p>The above image shows the two-dimensional array, the elements are organized in rows and columns. The first element of the first row is represented by arr[0][0] where the number shown in the first index is the number of that row and the number shown in the second index is the number of the column.<\/p>\n<h3>How to Calculate the Base Address of any Element in a Two-Dimensional Array?<\/h3>\n<p>To understand how to calculate the base address for elements of a two-dimensional array, we must first understand how a two-dimensional array is stored in memory.<\/p>\n<p>Even though a two-dimensional array appears to be substantially different from a one-dimensional array in C++, the way they are kept in memory is not. A 2-D array\u2019s two-dimensional structure is just provided for the user\u2019s convenience to give it a matrix-like structure. These two-dimensional arrays are actually kept in memory similarly to one-dimensional arrays.<\/p>\n<p>So, to store a two-dimensional array in memory, we need to map the elements into a one-dimensional array, and then they are stored in a contiguous manner in the memory for easy access.<\/p>\n<h3>How are the Elements of a 2D Array are Stored in the Memory?<\/h3>\n<p>There are two main techniques for storing two-dimensional array elements in memory:<\/p>\n<ol>\n<li>Row major order<\/li>\n<li>Column major order<\/li>\n<\/ol>\n<p><strong>Row Major Order<\/strong><br \/>\nIn row-major ordering, all the rows of the two-dimensional array are stored in the memory contiguously. The memory allocation for the array seen in the preceding image is shown in row-major order as follows:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921427-Base%20Address%20of%20a%20two%20dimensional%20array2.png\" alt=\"\" \/><\/p>\n<p>The first row of the array is completely saved in memory, then the second row, and so on until the last row of the array is completely saved in memory.<\/p>\n<p><strong>Column Major Order<\/strong><br \/>\nAccording to the column-major ordering, all the columns of the two-dimensional array are stored in the memory contiguously. The memory allocation for the array seen in the preceding image is shown in column-major order as follows:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921428-Base%20Address%20of%20a%20two%20dimensional%20array3.png\" alt=\"\" \/><\/p>\n<p>The first column of the array is completely saved in memory, then the second column, and so on until the last column of the array is completely saved in memory.<\/p>\n<h3>Calculating the Base Address of a Random Element of a Two-Dimensional Array<\/h3>\n<p>Because there are two methods for storing the two-dimensional array in memory, there are two formulas for calculating the base address of a random element of the 2D array.<\/p>\n<p><strong>By Row Major Order<\/strong><br \/>\nIf the two-dimensional array is defined as arr[m][n], where m is the number of rows and n is the number of columns, the address of an element arr[i][j] of the array stored in row-major order is estimated as<\/p>\n<pre><code>Address(arr[i][j]) = Base Address of two dimensional array + (i*n + j)* size<\/code><\/pre>\n<p>where the base address of the two dimensional array is the address of the array\u2019s first member, arr[0][0].<\/p>\n<p><strong>By Column Major Order<\/strong><br \/>\nIf the array is defined as arr[m][n], where m is the number of rows and n is the number of columns, the base address of an element arr[i][j] of the array stored in column-major order is calculated as <\/p>\n<pre><code>Address(arr[i][j]) = ((j*m)+i)*Size + Base Address of two dimensional array<\/code><\/pre>\n<p>where the base address of the two dimensional array is the address of the array&#8217;s first member arr[0][0].<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nA two-dimensional array in C++ is a grid-like collection of elements indexed by row and column. The base address of a two-dimensional array is the memory address of its first element. To perform  address  calculation in 2D array of an element, we need to understand how the array is stored in memory. We have learned how are the elements of a 2D array are stored in the memory, and that can be performed in two ways : row-major order (base address + (i<em>n + j)<\/em>size) and column-major order (((j<em>m)+i)<\/em>Size + base address). Understanding the base address and addressing formulas is crucial for efficient memory access in two-dimensional arrays. <\/p>\n<h3>Frequently Asked Questions (FAQs)<\/h3>\n<p><strong>Q1. What is a two-dimensional array in C++?<\/strong><br \/>\n<strong>Ans.<\/strong> A two-dimensional array in C++ is a collection of elements arranged in a grid pattern, indexed by both row and column.<\/p>\n<p><strong>Q2. How do I calculate the base address of a two-dimensional array in C++?<\/strong><br \/>\n<strong>Ans.<\/strong> To calculate the base address of a two-dimensional array, you can use the formula: Base Address + (i <em> n + j) <\/em> size for row-major order, or ((j <em> m) + i) <\/em> size + Base Address for column-major order.<\/p>\n<p><strong>Q3. Why is understanding the base address important for efficient memory access in two-dimensional arrays?<\/strong><br \/>\n<strong>Ans.<\/strong> Understanding the base address allows you to calculate the memory location of any element in a two-dimensional array, enabling efficient access and manipulation of array elements.<\/p>\n<p><strong>Q4. How are two-dimensional arrays stored in memory in C++?<\/strong><br \/>\n<strong>Ans.<\/strong> Two-dimensional arrays in C++ are stored in memory as contiguous blocks of elements, either in row-major order (rows stored consecutively) or column-major order (columns stored consecutively).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In C++, a two dimensional array is a collection of elements arranged in a grid pattern, where each element is indexed by two indices, one for the row and one for the column. We will look at the base address of a two dimensional array and how to compute the base address of any element [&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":[163],"tags":[],"class_list":["post-12418","post","type-post","status-publish","format-standard","hentry","category-arrays"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Base Address of a Two-Dimensional Array<\/title>\n<meta name=\"description\" content=\"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.\" \/>\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\/base-address-of-a-two-dimensional-array\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Base Address of a Two-Dimensional Array\" \/>\n<meta property=\"og:description\" content=\"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\" \/>\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-31T11:10:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-18T11:53:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.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\/base-address-of-a-two-dimensional-array\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Base Address of a Two-Dimensional Array\",\"datePublished\":\"2023-01-31T11:10:36+00:00\",\"dateModified\":\"2023-05-18T11:53:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\"},\"wordCount\":1014,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg\",\"articleSection\":[\"Arrays\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\",\"name\":\"Base Address of a Two-Dimensional Array\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg\",\"datePublished\":\"2023-01-31T11:10:36+00:00\",\"dateModified\":\"2023-05-18T11:53:48+00:00\",\"description\":\"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Arrays\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/arrays\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Base Address of a Two-Dimensional Array\"}]},{\"@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":"Base Address of a Two-Dimensional Array","description":"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.","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\/base-address-of-a-two-dimensional-array\/","og_locale":"en_US","og_type":"article","og_title":"Base Address of a Two-Dimensional Array","og_description":"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.","og_url":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-01-31T11:10:36+00:00","article_modified_time":"2023-05-18T11:53:48+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.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\/base-address-of-a-two-dimensional-array\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Base Address of a Two-Dimensional Array","datePublished":"2023-01-31T11:10:36+00:00","dateModified":"2023-05-18T11:53:48+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/"},"wordCount":1014,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg","articleSection":["Arrays"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/","url":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/","name":"Base Address of a Two-Dimensional Array","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg","datePublished":"2023-01-31T11:10:36+00:00","dateModified":"2023-05-18T11:53:48+00:00","description":"Here, we will look at the base address of a two-dimensional array and how to compute the base address of any element in two-dimensional array.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1675162921315-Base%20Address%20of%20a%20two%20dimensional%20array.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/base-address-of-a-two-dimensional-array\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Arrays","item":"https:\/\/prepbytes.com\/blog\/category\/arrays\/"},{"@type":"ListItem","position":3,"name":"Base Address of a Two-Dimensional Array"}]},{"@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\/12418","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=12418"}],"version-history":[{"count":4,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12418\/revisions"}],"predecessor-version":[{"id":16484,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12418\/revisions\/16484"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=12418"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=12418"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=12418"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}