{"id":18343,"date":"2023-11-23T04:52:43","date_gmt":"2023-11-23T04:52:43","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18343"},"modified":"2023-11-23T06:09:53","modified_gmt":"2023-11-23T06:09:53","slug":"cd-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/","title":{"rendered":"CD Command in Linux with Examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg\" alt=\"\" \/><br \/>\nIn the realm of Linux command-line operations, the &#8216;cd&#8217; command reigns supreme as an essential tool for navigating the file system. Short for &quot;change directory,&quot; &#8216;cd&#8217; enables users to seamlessly traverse through directories, swiftly accessing various locations within the file hierarchy. Understanding the nuances of &#8216;cd&#8217; empowers users to efficiently maneuver through directories and execute commands more effectively.<\/p>\n<p>This comprehensive guide aims to illuminate the versatility of the &#8216;cd&#8217; command, elucidating its functionalities and providing practical examples to facilitate a deeper comprehension of directory navigation in the Linux environment.<\/p>\n<h2>What is CD Command in Linux?<\/h2>\n<p>cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.<\/p>\n<h3>Syntax of the <code>cd<\/code> command in Linux<\/h3>\n<pre><code>cd [directory]<\/code><\/pre>\n<p>Here, replace [directory] with the path of the destination directory you want to navigate to.<\/p>\n<p>Basically, the &#8216;cd&#8217; command in Linux is used for navigating the file system by changing directories. Below are various examples illustrating the usage of the &#8216;cd&#8217; command along with different scenarios.<\/p>\n<p><strong>1. Changing to a Specific Directory:<\/strong><br \/>\nTo change to a specific directory, provide the absolute or relative path to the directory you want to access.<\/p>\n<p>Changing to a directory using an absolute path:<\/p>\n<pre><code>cd \/path\/to\/directory<\/code><\/pre>\n<p>Changing to a directory using a relative path:<\/p>\n<pre><code>cd Documents<\/code><\/pre>\n<p><strong>2. Moving to the Parent Directory:<\/strong><br \/>\nTo move up one level in the directory tree (to the parent directory), use &#8216;..&#8217;.<\/p>\n<pre><code>cd ..<\/code><\/pre>\n<p>This command helps in navigating to the directory above the current working directory.<\/p>\n<p><strong>3. Returning to the Previous Directory:<\/strong><br \/>\nTo return to the previous directory you were in, you can use the following command:<\/p>\n<pre><code>cd -<\/code><\/pre>\n<p>This command toggles between the current directory and the previous directory you were in.<\/p>\n<p><strong>4. Using Tilde (~) to Navigate to the Home Directory:<\/strong><br \/>\nTo quickly switch to the home directory of the current user, use the tilde (~) character.<\/p>\n<pre><code>cd ~<\/code><\/pre>\n<p>This command takes you to the home directory irrespective of your current location in the file system.<\/p>\n<p><strong>5. Using Multiple Commands Sequentially:<\/strong><br \/>\nYou can chain multiple &#8216;cd&#8217; commands together, separated by semicolons, to navigate through multiple directories in a single line.<\/p>\n<p>cd Documents; cd Projects; cd Important<br \/>\nThis command sequentially changes the directory to &#8216;Documents&#8217;, then &#8216;Projects&#8217;, and finally &#8216;Important&#8217;.<\/p>\n<p><strong>6. Using Tab Completion for Efficiency:<\/strong><\/p>\n<p>When typing paths, you can use tab completion to autocomplete directory names, which speeds up the navigation process.<\/p>\n<p>For instance, if you have directories named &#8216;Documents&#8217; and &#8216;Downloads&#8217;, typing &#8216;cd Do&#8217; and pressing Tab would automatically complete the directory name.<\/p>\n<p><strong>7. Using Absolute Paths to Switch Between Users:<\/strong><br \/>\nYou can switch to another user&#8217;s home directory using an absolute path.<\/p>\n<pre><code>cd \/home\/username<\/code><\/pre>\n<p>Replace &#8216;username&#8217; with the desired user&#8217;s name. This command allows access to that user&#8217;s home directory.<\/p>\n<p><strong>8. Navigating to a Directory with Spaces in the Name:<\/strong><br \/>\nIf a directory name contains spaces, enclose the path within quotes to navigate to it.<\/p>\n<pre><code>cd \"\/path\/to\/directory with spaces\"<\/code><\/pre>\n<p>This ensures that the terminal recognizes the full path, including spaces, as a single entity.<\/p>\n<p><strong>9. Creating and Moving to a New Directory:<\/strong><br \/>\nCreate a new directory and immediately change to it using a single command by using &#8216;mkdir&#8217; (make directory) and &#8216;cd&#8217; together.<\/p>\n<pre><code>mkdir NewDirectory &amp;&amp; cd NewDirectory<\/code><\/pre>\n<p>This command first creates a directory named &#8216;NewDirectory&#8217; and then changes the current working directory to it.<\/p>\n<p><strong>10. Using the &#8216;-&#8216; Symbol with &#8216;cd&#8217;:<\/strong><br \/>\nThe &#8216;-&#8216; symbol allows you to toggle between the current and previous directories.<\/p>\n<pre><code>cd -      # Switches to the previous directory<\/code><\/pre>\n<p>This command alternates between the current and last accessed directories, facilitating quick navigation.<\/p>\n<p><strong>11. Using &#8216;cd&#8217; with Wildcards:<\/strong><br \/>\nUtilize wildcard characters to navigate to directories that match a certain pattern.<\/p>\n<pre><code>cd \/path\/to\/directory\/*\/subdirectory<\/code><\/pre>\n<p>This command navigates to the &#8216;subdirectory&#8217; within any directory at the specified path, regardless of the intermediate directories.<\/p>\n<p><strong>12. Moving to Root and Other System Directories:<\/strong><br \/>\nChange to system directories such as the root directory (\/), temporary directory (\/tmp), or other predefined system locations.<\/p>\n<pre><code>cd \/         # Switches to the root directory\ncd \/tmp      # Navigates to the temporary directory<\/code><\/pre>\n<p>These commands facilitate quick access to essential system locations within the Linux file system.<\/p>\n<p><strong>Conclusion:<\/strong><br \/>\nThe &#8216;cd&#8217; command serves as a cornerstone for Linux users, facilitating seamless navigation through the file system. Its simple yet powerful functionality allows for efficient movement between directories, streamlining command-line operations.<\/p>\n<p>By grasping the diverse applications of the &#8216;cd&#8217; command and mastering its various nuances, users can significantly enhance their productivity within the Linux terminal. These examples serve as a starting point for users to delve deeper into directory navigation, allowing for a more robust understanding of the &#8216;cd&#8217; command&#8217;s capabilities.<\/p>\n<h2>FAQ related to CD command in Linux with Examples:<\/h2>\n<p>Here are some FAQs related to CD command in Linux with Examples.<\/p>\n<p><strong>Q1: What is the &#8216;cd&#8217; command in Linux used for?<\/strong><br \/>\nA: The &#8216;cd&#8217; command is a fundamental tool in Linux used to change the current working directory. It allows users to navigate through the directory structure, moving from one directory to another within the file system.<\/p>\n<p><strong>Q2: How do I use &#8216;cd&#8217; to navigate directories?<\/strong><br \/>\nA: To move to a specific directory, type &#8216;cd&#8217; followed by the path to the desired directory. For instance, &#8216;cd \/home\/user\/Documents&#8217; would change the current directory to &#8216;Documents&#8217; under the &#8216;user&#8217; directory.<\/p>\n<p><strong>Q3: Can I use relative paths with the &#8216;cd&#8217; command?<\/strong><br \/>\nA: Yes, &#8216;cd&#8217; supports relative paths. Typing &#8216;cd ..&#8217; moves one directory up (to the parent directory), and &#8216;cd ..\/..\/&#8217; moves two directories up, and so forth. Using &#8216;cd ~&#8217; takes you to your home directory.<\/p>\n<p><strong>Q4: How can I quickly return to the previous directory?<\/strong><br \/>\nA: To return to the previous directory you were in, use &#8216;cd -&#8216;. This command toggles between the current and previous directories.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the realm of Linux command-line operations, the &#8216;cd&#8217; command reigns supreme as an essential tool for navigating the file system. Short for &quot;change directory,&quot; &#8216;cd&#8217; enables users to seamlessly traverse through directories, swiftly accessing various locations within the file hierarchy. Understanding the nuances of &#8216;cd&#8217; empowers users to efficiently maneuver through directories and execute [&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":[230,1],"tags":[],"class_list":["post-18343","post","type-post","status-publish","format-standard","hentry","category-linux","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>CD Command in Linux with Examples<\/title>\n<meta name=\"description\" content=\"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.\" \/>\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\/cd-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CD Command in Linux with Examples\" \/>\n<meta property=\"og:description\" content=\"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\" \/>\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-11-23T04:52:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-23T06:09:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.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\/cd-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"CD Command in Linux with Examples\",\"datePublished\":\"2023-11-23T04:52:43+00:00\",\"dateModified\":\"2023-11-23T06:09:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\"},\"wordCount\":909,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg\",\"articleSection\":[\"Linux\",\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\",\"name\":\"CD Command in Linux with Examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg\",\"datePublished\":\"2023-11-23T04:52:43+00:00\",\"dateModified\":\"2023-11-23T06:09:53+00:00\",\"description\":\"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Miscellaneous\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CD Command in Linux with Examples\"}]},{\"@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":"CD Command in Linux with Examples","description":"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.","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\/cd-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"CD Command in Linux with Examples","og_description":"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.","og_url":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-23T04:52:43+00:00","article_modified_time":"2023-11-23T06:09:53+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.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\/cd-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"CD Command in Linux with Examples","datePublished":"2023-11-23T04:52:43+00:00","dateModified":"2023-11-23T06:09:53+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/"},"wordCount":909,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg","articleSection":["Linux","Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/","name":"CD Command in Linux with Examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg","datePublished":"2023-11-23T04:52:43+00:00","dateModified":"2023-11-23T06:09:53+00:00","description":"cd command in Linux known as the change directory command. It is used to move efficiently from the current working directory to different directories in our System.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700715050914-CD%20Command%20in%20Linux%20with%20Examples.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/cd-command-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Miscellaneous","item":"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/"},{"@type":"ListItem","position":3,"name":"CD Command in Linux with Examples"}]},{"@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\/18343","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=18343"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18343\/revisions"}],"predecessor-version":[{"id":18346,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18343\/revisions\/18346"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18343"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18343"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}