{"id":15802,"date":"2023-04-25T04:53:34","date_gmt":"2023-04-25T04:53:34","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=15802"},"modified":"2023-04-25T05:01:58","modified_gmt":"2023-04-25T05:01:58","slug":"how-to-run-java-program","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/","title":{"rendered":"How to Run Java Program?"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg\" alt=\"\" \/><\/p>\n<p>Java is a widely used programming language that is used to build a wide range of applications, from mobile applications to enterprise software. Running a Java program requires a few steps. So let us learn how to run a Java program.<\/p>\n<h2>How to Run Java Program?<\/h2>\n<p>To run a Java program, it&#8217;s important to first ensure that Java is installed on the system and that the path is correctly set. Without a properly set path, the Java program cannot be executed. We are assuming that you have installed Java properly and the path is properly set.<\/p>\n<p>Here are the steps of how to run Java Programs.<\/p>\n<ul>\n<li>\n<p><strong>Step 1:<\/strong> Open the Notepad and write the Java code in the Notepad. We will use the following code for performing all other operations.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746411-download%20%2816%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 2:<\/strong> Now save the file with the name \u201cprogram.java\u201d. You can save the file with any name but you must add the \u201c.java\u201d extension at the end of the file name. After saving you will see a Java file in the folder as shown in the image below.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746351-download%20%2817%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 3:<\/strong> Now press the keys <strong>ALT+D<\/strong>, by pressing these keys you will get into the search bar as shown in the image below.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746285-download%20%2818%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 4:<\/strong> Now in this search box, enter \u201cCMD\u201d.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746111-download%20%2819%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 5:<\/strong> As soon as you press enter, the Command Prompt Window will get open on your screen.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746108-download%20%2820%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 6:<\/strong> Now in the command prompt window, type \u201cjavac program.java\u201d. Since we have saved our file with the name \u201cprogram.java\u201d.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398746035-download%20%2821%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 7:<\/strong> Now press enter. When you press enter the Java program will be compiled by the compiler and a \u201cPrepBytes.class\u201d file is generated as shown in the image. This file is named after the main class present in our program.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398745787-download%20%2822%29.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Step 8:<\/strong> Now to run your Java program, we have to type \u201cjava PrepBytes\u201d in the cmd.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682398745784-download%20%2823%29.png\" alt=\"\" \/><\/p>\n<p>When we press enter, our Java program will run and we will get the output in the cmd window. <\/p>\n<p>Here in our case, we get the output as \u201cHello, I am PrepBuddy\u201d on the screen.<\/p>\n<\/li>\n<\/ul>\n<h2>The \u201cjavac\u201d Command<\/h2>\n<p>The javac command is used to compile Java source code into bytecode that can be executed by the Java Virtual Machine (JVM). This command takes a Java source file as input and produces a corresponding class file as output.<\/p>\n<p>The syntax for the javac command is:<\/p>\n<pre><code>javac FileName.java<\/code><\/pre>\n<p>This command will compile the source code in the file FileName.java and produce a class file with the name of the main class present in the file.<\/p>\n<h2>The \u201cjava\u201d Command<\/h2>\n<p>Once the Java code has been compiled, it can be executed using the java command. The java command is used to launch the Java Virtual Machine and execute the compiled Java code.<\/p>\n<p>The syntax for the java command is:<\/p>\n<pre><code>java FileName<\/code><\/pre>\n<p>This command will execute the class file FileName.class that was produced by the javac command.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, we have discussed the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively. By following these simple steps, you can also run Java programs on your own computer.<\/p>\n<h2>Frequently Asked Questions(FAQs)<\/h2>\n<p>Here are some frequently asked questions on how to run Java program.<\/p>\n<p><strong>Ques 1. What is a Java program?<\/strong><br \/>\n<strong>Ans.<\/strong> A Java program is a program written in the Java programming language that can be executed on any device that has the Java Virtual Machine (JVM) installed.<\/p>\n<p><strong>Ques 2. What is a classpath?<\/strong><br \/>\n<strong>Ans.<\/strong> The classpath is an environment variable that tells the JVM where to find classes and packages that are needed to run a Java program.<\/p>\n<p><strong>Ques 3. What is the JDK?<\/strong><br \/>\n<strong>Ans.<\/strong> The JDK (Java Development Kit) is a software development kit used to develop Java applications. It includes the Java compiler, the Java Virtual Machine, and other tools needed for Java development.<\/p>\n<p><strong>Ques 4. What is the JRE?<\/strong><br \/>\n<strong>Ans.<\/strong> The JRE (Java Runtime Environment) is a set of tools that are needed to run Java applications. It includes the Java Virtual Machine and other tools needed to run Java programs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Java is a widely used programming language that is used to build a wide range of applications, from mobile applications to enterprise software. Running a Java program requires a few steps. So let us learn how to run a Java program. How to Run Java Program? To run a Java program, it&#8217;s important to first [&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":[143],"tags":[],"class_list":["post-15802","post","type-post","status-publish","format-standard","hentry","category-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Run Java Program?<\/title>\n<meta name=\"description\" content=\"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.\" \/>\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\/how-to-run-java-program\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Run Java Program?\" \/>\n<meta property=\"og:description\" content=\"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\" \/>\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-04-25T04:53:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-25T05:01:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.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\/how-to-run-java-program\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"How to Run Java Program?\",\"datePublished\":\"2023-04-25T04:53:34+00:00\",\"dateModified\":\"2023-04-25T05:01:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\"},\"wordCount\":683,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\",\"name\":\"How to Run Java Program?\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg\",\"datePublished\":\"2023-04-25T04:53:34+00:00\",\"dateModified\":\"2023-04-25T05:01:58+00:00\",\"description\":\"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/java\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Run Java Program?\"}]},{\"@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":"How to Run Java Program?","description":"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.","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\/how-to-run-java-program\/","og_locale":"en_US","og_type":"article","og_title":"How to Run Java Program?","og_description":"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.","og_url":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-04-25T04:53:34+00:00","article_modified_time":"2023-04-25T05:01:58+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.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\/how-to-run-java-program\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"How to Run Java Program?","datePublished":"2023-04-25T04:53:34+00:00","dateModified":"2023-04-25T05:01:58+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/"},"wordCount":683,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/","url":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/","name":"How to Run Java Program?","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg","datePublished":"2023-04-25T04:53:34+00:00","dateModified":"2023-04-25T05:01:58+00:00","description":"Know the stepwise process of how to run Java program. We have used the javac and java commands to compile and run the java program respectively.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1682342330161-How%20to%20Run%20Java%20Program.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/how-to-run-java-program\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/prepbytes.com\/blog\/category\/java\/"},{"@type":"ListItem","position":3,"name":"How to Run Java Program?"}]},{"@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\/15802","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=15802"}],"version-history":[{"count":3,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/15802\/revisions"}],"predecessor-version":[{"id":15938,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/15802\/revisions\/15938"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=15802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=15802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=15802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}