{"id":18359,"date":"2023-11-23T10:31:42","date_gmt":"2023-11-23T10:31:42","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18359"},"modified":"2023-11-23T10:31:42","modified_gmt":"2023-11-23T10:31:42","slug":"dd-command-linux","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/","title":{"rendered":"dd command linux"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg\" alt=\"\" \/><br \/>\nThe &#8216;dd&#8217; command, which stands for &quot;data duplicator,&quot; is a powerful and versatile utility in the Linux operating system. While its primary function is to copy and convert data, its capabilities extend far beyond simple duplication. System administrators, power users, and those seeking to perform low-level operations on data find &#8216;dd&#8217; indispensable. In this comprehensive guide, we will explore the many aspects of &#8216;dd,&#8217; from basic usage to advanced techniques, making it an essential tool for anyone working with Linux.<\/p>\n<h2>Understanding the Basics of dd command in Linux<\/h2>\n<p>At its core, the &#8216;dd&#8217; command reads data from an input source and writes it to an output destination, all while allowing for extensive control over the copying process. Here&#8217;s the basic syntax<\/p>\n<pre><code>dd if=input_file of=output_file bs=block_size count=number_of_blocks<\/code><\/pre>\n<ul>\n<li>if: Specifies the input file or source.<\/li>\n<li>of: Defines the output file or destination.<\/li>\n<li>bs: Sets the block size for data transfer.<\/li>\n<li>count: Determines the number of blocks to be copied.<\/li>\n<\/ul>\n<p>A common use case for &#8216;dd&#8217; is creating bootable USB drives, cloning disks, or backing up critical data.<\/p>\n<p><strong>Creating Bootable USB Drives<\/strong><br \/>\nOne of the most practical applications of the &#8216;dd&#8217; command is creating bootable USB drives. This process is vital when installing or recovering Linux distributions or other operating systems from USB media. To create a bootable USB drive using &#8216;dd,&#8217; you&#8217;ll need an ISO image of the operating system and a USB flash drive. Here&#8217;s an example of how to do it:<\/p>\n<pre><code>sudo dd if=path\/to\/linux.iso of=\/dev\/sdX bs=4M status=progress<\/code><\/pre>\n<ul>\n<li>if: The path to the ISO image you want to use.<\/li>\n<li>of: The destination device, such as \/dev\/sdX (replace &#8216;X&#8217; with the appropriate drive letter).<\/li>\n<li>bs: The block size for data transfer.<br \/>\nstatus=progress: Displays progress information during the operation.<\/li>\n<\/ul>\n<p>Be extremely cautious when specifying the &#8216;of&#8217; parameter, as selecting the wrong device can result in data loss. Ensure you have the correct target device before executing the command.<\/p>\n<p><strong>Cloning Disks<\/strong><br \/>\n&#8216;Dd&#8217; is also an excellent tool for cloning disks or creating backups of entire drives. This is particularly useful when upgrading your hard drive or making an exact replica of your system. Here&#8217;s an example of how to clone a disk:<\/p>\n<pre><code>sudo dd if=\/dev\/sdY of=\/path\/to\/backup.img bs=4M status=progress<\/code><\/pre>\n<ul>\n<li>if: The source device you want to clone, such as \/dev\/sdY.<\/li>\n<li>of: The path to the output file where the disk image will be saved.<\/li>\n<li>bs: The block size for data transfer.<\/li>\n<li>status=progress: Displays progress information during the operation.<br \/>\nThis command creates a disk image file of the source drive, which can be used to restore the drive later if needed.<\/li>\n<\/ul>\n<p><strong>Wiping Data Securely<\/strong><\/p>\n<p>In addition to copying and cloning, &#8216;dd&#8217; can be used to securely wipe data from a storage device, ensuring that the information cannot be easily recovered. This is particularly important when disposing of old hard drives or sensitive data. To wipe data securely, use the following command:<\/p>\n<pre><code>sudo dd if=\/dev\/zero of=\/dev\/sdZ bs=4M status=progress<\/code><\/pre>\n<ul>\n<li>if: The source of random data (in this case, \/dev\/zero for zeros).<\/li>\n<li>of: The target storage device you want to wipe, such as \/dev\/sdZ.<\/li>\n<li>bs: The block size for data transfer.<\/li>\n<li>status=progress: Displays progress information during the operation.<br \/>\nThis command overwrites the entire disk with zeros, making data recovery extremely challenging.<\/li>\n<\/ul>\n<p><strong>Advanced &#8216;dd&#8217; Techniques<\/strong><br \/>\nWhile the basic &#8216;dd&#8217; commands are invaluable for everyday tasks, &#8216;dd&#8217; offers many advanced options and techniques to further expand its capabilities.<\/p>\n<p><strong>Status Updates:<\/strong> The &#8216;status&#8217; parameter, as demonstrated in the previous examples, provides real-time progress updates, helping you track the operation&#8217;s completion.<\/p>\n<p><strong>Converting EBCDIC to ASCII:<\/strong> &#8216;dd&#8217; can be used to convert data between different character encodings. For example, to convert EBCDIC-encoded data to ASCII, use the &#8216;conv&#8217; option like this:<\/p>\n<pre><code>dd if=input_file of=output_file conv=ebcdic,ascii<\/code><\/pre>\n<p><strong>Creating Random Data:<\/strong> Generate random data for various purposes, such as filling a file with random content or creating random test files:<br \/>\ndd if=\/dev\/urandom of=random_file bs=1M count=10<\/p>\n<p><strong>Skip and Seek:<\/strong> Use &#8216;skip&#8217; and &#8216;seek&#8217; options to copy specific parts of a file or disk. For example, you can copy a section of a file starting from a certain byte using &#8216;skip&#8217; and &#8216;seek&#8217;:<\/p>\n<pre><code>dd if=input_file of=output_file bs=block_size skip=5 seek=10 count=20<\/code><\/pre>\n<p><strong>Conclusion<\/strong><br \/>\nThe &#8216;dd&#8217; command in Linux is a versatile and powerful tool with a wide range of applications. Whether you need to create bootable USB drives, clone disks, or securely wipe data, &#8216;dd&#8217; provides precise control over data copying and manipulation. Understanding its basic syntax and commands is essential, and exploring advanced techniques allows you to harness its full potential. While &#8216;dd&#8217; offers enormous utility, use it with caution, especially when working with system-critical tasks, as mistakes can lead to data loss. With the knowledge gained from this guide, you can confidently navigate the world of &#8216;dd&#8217; and leverage its capabilities to streamline your Linux operations.<\/p>\n<h2>FAQs related to dd Command in Linux<\/h2>\n<p>Certainly, here are some frequently asked questions (FAQs) related to the &#8216;dd&#8217; command in Linux:<\/p>\n<p><strong>1. What is the &#8216;dd&#8217; command in Linux, and what does it do?<\/strong><br \/>\nThe &#8216;dd&#8217; command is a utility in Linux that stands for &quot;data duplicator.&quot; Its primary purpose is to copy and convert data, allowing for low-level operations on files and storage devices.<\/p>\n<p><strong>2. How do I create a bootable USB drive using &#8216;dd&#8217;?<\/strong><br \/>\nTo create a bootable USB drive, you can use the &#8216;dd&#8217; command with the following syntax: <\/p>\n<pre><code>sudo dd if=path\/to\/linux.iso of=\/dev\/sdX bs=4M status=progress, where if is the path to the ISO image, and of is the target USB device (replace 'X' with the appropriate drive letter).<\/code><\/pre>\n<p>Can &#8216;dd&#8217; be used to clone an entire hard drive?<br \/>\nYes, &#8216;dd&#8217; is an excellent tool for cloning entire hard drives. You can use it with a command like sudo dd if=\/dev\/sdY of=\/path\/to\/backup.img bs=4M status=progress to create a disk image file.<\/p>\n<p><strong>3. Is it safe to use &#8216;dd&#8217; for data wiping?<\/strong><br \/>\n&#8216;dd&#8217; can be used for secure data wiping, but you should exercise caution. A mistake in specifying the target device can lead to data loss. Always double-check your commands when wiping data.<\/p>\n<p><strong>4. What is the significance of the &#8216;bs&#8217; (block size) parameter in &#8216;dd&#8217; commands?<\/strong><br \/>\nThe &#8216;bs&#8217; parameter determines the block size for data transfer. It affects the speed and efficiency of the copying process. Choosing an appropriate block size can optimize performance.<\/p>\n<p><strong>5. Can &#8216;dd&#8217; convert data from one character encoding to another?<\/strong><br \/>\nYes, &#8216;dd&#8217; can convert data between different character encodings using the &#8216;conv&#8217; option. For example, it can convert EBCDIC-encoded data to ASCII.<\/p>\n<p><strong>6. How can I generate random data with &#8216;dd&#8217;?<\/strong><br \/>\nYou can generate random data using &#8216;dd&#8217; by reading from \/dev\/urandom or \/dev\/random and writing it to a file. For example: dd if=\/dev\/urandom of=random_file bs=1M count=10.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The &#8216;dd&#8217; command, which stands for &quot;data duplicator,&quot; is a powerful and versatile utility in the Linux operating system. While its primary function is to copy and convert data, its capabilities extend far beyond simple duplication. System administrators, power users, and those seeking to perform low-level operations on data find &#8216;dd&#8217; indispensable. In this comprehensive [&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],"tags":[],"class_list":["post-18359","post","type-post","status-publish","format-standard","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>dd command linux<\/title>\n<meta name=\"description\" content=\"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating 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\/dd-command-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"dd command linux\" \/>\n<meta property=\"og:description\" content=\"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\" \/>\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-23T10:31:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.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<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"dd command linux\",\"datePublished\":\"2023-11-23T10:31:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\"},\"wordCount\":1072,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\",\"name\":\"dd command linux\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg\",\"datePublished\":\"2023-11-23T10:31:42+00:00\",\"description\":\"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating system.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"dd command linux\"}]},{\"@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":"dd command linux","description":"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating 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\/dd-command-linux\/","og_locale":"en_US","og_type":"article","og_title":"dd command linux","og_description":"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating system.","og_url":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-23T10:31:42+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"dd command linux","datePublished":"2023-11-23T10:31:42+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/"},"wordCount":1072,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/dd-command-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/","url":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/","name":"dd command linux","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg","datePublished":"2023-11-23T10:31:42+00:00","description":"The \u2018dd\u2019 command, which stands for \u201cdata duplicator,\u201d is a powerful and versatile utility in the Linux operating system.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/dd-command-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1700735463771-dd%20command%20linux%20%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/dd-command-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/prepbytes.com\/blog\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"dd command linux"}]},{"@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\/18359","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=18359"}],"version-history":[{"count":1,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18359\/revisions"}],"predecessor-version":[{"id":18360,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18359\/revisions\/18360"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}