
{"id":533,"date":"2014-08-20T02:09:28","date_gmt":"2014-08-19T20:39:28","guid":{"rendered":"http:\/\/guviblogs.wordpress.com\/?p=533"},"modified":"2023-10-04T18:45:39","modified_gmt":"2023-10-04T13:15:39","slug":"java-programs-for-freshers","status":"publish","type":"post","link":"https:\/\/guviv3.codingpuppet.com\/blog\/java-programs-for-freshers\/","title":{"rendered":"Top 10 Java Programs For Freshers | Start Coding With A Flair!"},"content":{"rendered":"\n<p>Hey, I found you searching for the top 10 Java Programs for freshers.<\/p>\n\n\n\n<p>Welcome to <a href=\"https:\/\/www.guvi.in\/\" target=\"_blank\" data-type=\"link\" data-id=\"https:\/\/www.guvi.in\/\" rel=\"noreferrer noopener\">GUVI<\/a> Blogs.<\/p>\n\n\n\n<p>This is Prashanth, a Java and Selenium Expert, sharing the experience that has taken me a long way! Learn, Code, and practice here with me!<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/guviblogs.files.wordpress.com\/2014\/08\/java_logo-245132408_std1.png\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"http:\/\/guviblogs.files.wordpress.com\/2014\/08\/java_logo-245132408_std1.png?w=300\" alt=\"java logo - top 10 java programs\" class=\"wp-image-534\"\/><\/a><\/figure><\/div>\n\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why refer to this list of &#8216;top 10 Java Programs for freshers&#8217;?<\/strong><\/h2>\n\n\n\n<p>This is a list of 10<a href=\"https:\/\/www.guvi.in\/blog\/java-interview-questions-and-answers\/\" target=\"_blank\" rel=\"noopener\"> Java coding interview questions and answers<\/a>. The below array of questions is a good place to get started and prepare before you appear for any Java Programming interviews.<\/p>\n\n\n\n<p>First of all, I would like to tell you that Java Interview questions are mostly based on programming, logical analysis, and problem-solving skills. It is always better to get it right in the first place. Well, obviously you may be able to solve and find answers to these Java programming questions by yourself.<\/p>\n\n\n\n<p>However, if you find yourself stuck at some place and end up Googling it, then it becomes a larger challenge! This is to say that, in Google, you will find &#8216;n&#8217; a number of alternative solutions to the same problem. However, knowing more than one way to solve any programming question or coding problem in Java is a factor that impresses the interviewer. However, most of the time it becomes overwhelming and too confusing to take.<\/p>\n\n\n\n<figure class=\"wp-block-image alignnone wp-image-4491 size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"819\" src=\"http:\/\/blog.guvi.in\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-1024x819.jpg\" alt=\"top 10 java programs for freshers\" class=\"wp-image-4491\" srcset=\"https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-1024x819.jpg 1024w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-300x240.jpg 300w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-768x614.jpg 768w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-1536x1229.jpg 1536w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/top-10-Java-programs-for-freshers-2048x1638.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\"><span style=\"font-size: 16px;\">So, I have specially curated a list of the top 10 Java programs. This list mainly contains basic programs asked in Interviews. Let&#8217;s get started!<\/span><strong style=\"font-size: 16px;\">&nbsp;<\/strong><\/figcaption><\/figure>\n\n\n\n<!--more-->\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/verify-number-is-evevodd.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Verify a number is Even\/Odd<\/a><\/strong><\/h3>\n\n\n\n<p>This is one of the most commonly asked coding questions. Find the easiest solution below.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class EvenOdd{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter a number which you want to check whether that is even or odd\");\nint n = in.nextInt();\n\nif(n%2==0){\nSystem.out.println(n+\" is an even number.\");\n}else{\nSystem.out.println(n+\" is an odd number.\");\n\n}\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Match Your Output here&nbsp;&nbsp;<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter a number which you want to check whether that is even or odd\n 4\n 4 is an even number.<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. <a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/swapping-numbers-without-using-3rd.html\" data-type=\"link\" data-id=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/swapping-numbers-without-using-3rd.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Swapping Numbers without using the 3rd variable<\/a><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class Swapping{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter the 1st number: \");\nint x = in.nextInt();\nSystem.out.println(\"Enter the 2nd number: \");\nint y = in.nextInt();\n\nSystem.out.println(\"Initial value of x: \"+x+\" and y: \"+y);\n\nx = x+y;\ny = x-y;\nx = x-y;\n\nSystem.out.println(\"After swapping value of x: \"+x+\" and y: \"+y);\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter the 1st number:\n 43\n Enter the 2nd number:\n 56\n Initial value of x: 43 and y: 56\n After swapping value of x: 56 and y: 43\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong><strong style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;\"><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/factorial-of-number_28.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Factorial of a number<\/a><\/strong><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class Factorial{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter the number whose factorial you want: \");\nint n = in.nextInt();\nint f =1;\nfor(int i=n; i>0; i--){\nf = f*i;\n}\nSystem.out.println(\"Factorial of \"+n+\" is \"+f);\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter the number whose factorial you want:\n6\nFactorial of 6 is 720\n<\/pre>\n\n\n<p>[maxbutton id=&#8221;3&#8243;]<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. <strong><strong style=\"font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;\"><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/how-to-get-prime-numbers-between-given.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">How to get the prime numbers between a given range<\/a><\/strong><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">package javaTutorial;\n\nimport java.util.ArrayList;\nimport java.util.Scanner;\n\npublic class GetPrimeNumbers{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter a number from which you want prime number: \");\nint p1 = in.nextInt();\nSystem.out.println(\"Enter one more number till which you want prime number: \");\nint p2 = in.nextInt();\nArrayList&lt;Integer> prime = new ArrayList&lt;Integer>();\nint i=2;\nfor(int p=p1; p&lt;=p2; p++){\ni=2;\nfor(; i&lt;10; i++){\nif(p%i==0 &amp;&amp; p!=i){<\/mark>\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">break;\n}\n}\nif(i==10){\nprime.add(p);\n}\n}\nSystem.out.println(\"Prime numbers between \"+p1+\" and \"+p2+\" are: \");\nfor(int j=0; j&lt;prime.size(); j++){\nSystem.out.print(prime.get(j).toString()+\", \");\n}\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter a number from which you want prime number:\n10\nEnter one more number till which you want prime number:\n30\nPrime numbers between 10 and 30 are:\n11, 13, 17, 19, 23, 29,\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/check-number-is-prime-or-not.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Check a number is prime or not.<\/a><\/strong><\/h3>\n\n\n\n<p>Note- A number is prime if it is not divisible by any other number except itself.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class PrimeNumber{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter a number greater than 2 which you want to check whether that number is prime or not: \");\nint p = in.nextInt();\nint i=2;\nfor(; i&lt;10; i++){\nif(p%i==0 &amp;&amp; p!=i){\nSystem.out.println(\"Entered number \"+p+\" is not a prime number.\");\nbreak;\n}\n}\nif(i==10){\nSystem.out.println(\"Entered number \"+p+\" is a prime number.\");\n}\n}\n}\n<\/mark><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter a number greater than 2 which you want to check whether that number is prime or not:\n139\nEntered number 139 is a prime number.\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">6. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/check-if-number-is-armstron-or-not.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Check if a number is Armstrong or not.<\/a><\/strong><\/h3>\n\n\n\n<p>Note- A number is Armstrong if the sum of the cubes of the digit of the number is equal to the number. ex- 407 = 4*4*4 + 0*0*0 + 7*7*7<\/p>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class ArmstrongNum{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter a number which you want to check whether that is armstrong or not: \");\nint n = in.nextInt();\nint a = n, r=0, s=0;\n\nwhile(a!=0){\nr = a%10;\na = a\/10;\ns = s + r*r*r;\n}\nif(s==n){\nSystem.out.println(\"Number \"+n+\" is an armstrong number.\");\n}else{\nSystem.out.println(\"Number \"+n+\" is not an armstrong number.\");\n}\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter a number which you want to check whether that is armstrong or not:\n407\nNumber 407 is an armstrong number.<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"750\" height=\"450\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2023\/10\/image-8.png\" alt=\"armstrong number - top java programs for freshers\" class=\"wp-image-27777\" srcset=\"https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2023\/10\/image-8.png 750w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2023\/10\/image-8-300x180.png 300w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2023\/10\/image-8-150x90.png 150w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">7. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/floyd-triangle.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Floyd Triangle<\/a><\/strong><\/h3>\n\n\n\n<p>Note- Floyd Triangle is like 1 2 3 4 5 6 7 8 9 10 &#8212;&#8212;&#8212;&#8212; Code-<\/p>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class FloydTriangle{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter the number of rows which you want in your Floyd Triangle: \");\nint r = in.nextInt();\nint n=0;\nfor(int i=0; i&lt;r; i++){\nfor(int j=0; j&lt;=i; j++){\nSystem.out.print(++n+\" \");\n}\nSystem.out.println();\n}\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter the number of rows which you want in your Floyd Triangle:\n5\n1\n2 3\n4 5 6\n7 8 9 10\n11 12 13 14 15\n<img decoding=\"async\" loading=\"lazy\" width=\"557\" height=\"351\" class=\"wp-image-27783\" style=\"width: 1200px;\" src=\"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2014\/08\/Untitled.png\" alt=\"floyds triangle - top 10 java programs\" srcset=\"https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/Untitled.png 557w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/Untitled-300x189.png 300w, https:\/\/guviv3.codingpuppet.com\/blog\/wp-content\/uploads\/2014\/08\/Untitled-150x95.png 150w\" sizes=\"(max-width: 557px) 100vw, 557px\" \/>\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">8. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/plaindrome-of-string.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Palindrome of String or reverse a String.<\/a><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Scanner;\n\npublic class PalindromeString{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter the string which you want to check whether that is palindrome or not: \");\nString s = in.next();\nString r = \"\";\nfor(int i=s.length()-1; i>=0; i--){\nr = r+s.charAt(i);\n}\nSystem.out.println(\"Reverse of entered string \"+s+\" is \"+r);\nif(r.equals(s)){\nSystem.out.println(\"String \"+s+\" is palindrome.\");\n}else{\nSystem.out.println(\"String \"+s+\" is not palindrome.\");\n}\n}\n}\n<\/mark><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Output<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter the string which you want to check whether that is palindrome or not:\nselenium\nReverse of entered string selenium is muineles\nString selenium is not palindrome.\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">9. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/binary-search.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Binary Search<\/a><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">import java.util.Arrays;\nimport java.util.Scanner;\n\npublic class BinarySearch{\npublic static void main(String[] args){\nScanner in = new Scanner(System.in);\nSystem.out.println(\"Enter the size of the array which should be greater than zero else it will throw InputMismatchException : \");\nint size = in.nextInt();\nint[] array = new int[size];\nSystem.out.println(\"Enter the elements of the array: \");\nfor(int i=0; i&lt;size; i++){\narray[i] = in.nextInt();\n}\nSystem.out.println(\"Enter the search element: \");\nint s = in.nextInt();<\/mark>\n\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">Arrays.sort(array); \/\/binary search will work on sorted array only so sort first\nint first, last, middle;\nfirst=0;\nlast = size-1;\nmiddle = (first+last)\/2;\nint i=0;\nfor(; i&lt;size; i++){\nif(s>array[middle]){\nfirst = middle+1;\n}else if(s&lt;array[middle]){\nlast = middle-1;\n}else{\nprintArray(array);\nSystem.out.println(\"Element \"+s+\" found in the array.\");\nbreak;\n}\nmiddle= (first+last)\/2;\n}\nif(i==size){\nprintArray(array);\nSystem.out.println(\"Element \"+s+\" is not found in the array\");\n}\n}\npublic static void printArray(int[] a){\nSystem.out.println(\"Array of elements: \");\nSystem.out.print(\"{\");\nfor(int i:a){\nSystem.out.print(i+\",\");\n}\nSystem.out.println(\"}\");\n}\n}<\/mark>\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">10. <strong><a href=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/bubble-sort.html\" data-type=\"link\" data-id=\"https:\/\/selenium-makeiteasy.blogspot.com\/2014\/05\/bubble-sort.html\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Bubble Sort&nbsp;&#8211; last but not least in the list of top 10 Java Programs for freshers<\/a><\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-preformatted lang:java\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">package SeleniumMakeItEasy;\n\nimport org.apache.commons.lang3.ArrayUtils;\n\npublic class BubbleSort{\npublic static void main(String[] args){\nint[] a = {2,3,2,5,3,3,6,1,2,5};\nint l = a.length;\n\nfor(int i=0;i&lt;l; i++){\n\nfor(int j=0; j&lt;l-1; j++){\nif(a[j]>a[j+1]){\na[j] = a[j] + a[j+1];\na[j+1] = a[j] - a[j+1];\na[j] = a[j] - a[j+1];\n}else if(a[j]==a[j+1]){\na = ArrayUtils.remove(a,j);\nl = a.length;\n}\n}\n}\nfor(int s: a){\nSystem.out.println(s);\n}<\/mark>\n\n<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-cyan-blue-color\">}\n}\n[maxbutton id=\"3\"]<\/mark><\/pre>\n\n\n\n<p><strong><a href=\"https:\/\/www.guvi.in\/project-board\/\" target=\"_blank\" rel=\"noopener\">Check out&nbsp;our Project Ideas &#8211; Here<\/a><\/strong><\/p>\n\n\n\n<p>Looking out for more such programs and source codes? Why don&#8217;t you leave us your contact details and we will get back to you shortly? Also, <a href=\"https:\/\/www.guvi.in\/zen-class\/\" target=\"_blank\" rel=\"noopener\">check out our courses here<\/a>.<\/p>\n\n\n\n<div class=\"wp-block-jetpack-contact-form\">\n\n\n\n\n\n\n\n\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Hey, I found you searching for the top 10 Java Programs for freshers. Welcome to GUVI Blogs. This is Prashanth, a Java and Selenium Expert, sharing the experience that has taken me a long way! Learn, Code, and practice here with me! Why refer to this list of &#8216;top 10 Java Programs for freshers&#8217;? This [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1168,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[37,720],"tags":[],"views":"1239","authorinfo":{"name":"admin","url":"https:\/\/guviv3.codingpuppet.com\/blog\/author\/admin\/"},"thumbnailURL":false,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/posts\/533"}],"collection":[{"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/comments?post=533"}],"version-history":[{"count":30,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/posts\/533\/revisions"}],"predecessor-version":[{"id":27833,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/posts\/533\/revisions\/27833"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/media?parent=533"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/categories?post=533"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/guviv3.codingpuppet.com\/blog\/wp-json\/wp\/v2\/tags?post=533"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}