{"id":17347,"date":"2023-07-28T06:28:19","date_gmt":"2023-07-28T06:28:19","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=17347"},"modified":"2023-07-28T06:28:19","modified_gmt":"2023-07-28T06:28:19","slug":"java-get-current-date-time","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/","title":{"rendered":"Java get Current Date &#038; Time"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg\" alt=\"\" \/><\/p>\n<p>Working with dates and times is a common requirement in software development, and Java provides robust libraries to handle these tasks efficiently. In this article, we&#8217;ll explore how to get current date and time in Java using various approaches available in the standard libraries.<\/p>\n<h2>Various ways to solve Java get Current Date &amp; Time<\/h2>\n<p>Here is a list of various methods that are involved in order to get Java current date and time. <\/p>\n<p>These are as follows &#8211;<br \/>\n<strong>1. Using java.util.Date<\/strong><\/p>\n<p>Before the introduction of the <code>java.time<\/code> package in Java 8, the primary way to get the current date and time was through the <code>java.util.Date<\/code> class. Although this class has some limitations and is not recommended for new code, it&#8217;s still worth mentioning for historical reasons.<\/p>\n<p>To get the current date and time using <code>java.util.Date<\/code>, we can simply create a new <code>Date<\/code> object without any arguments. Here&#8217;s an example:<\/p>\n<pre><code>import java.util.Date;\n\npublic class CurrentDateTimeExample {\n    public static void main(String[] args) {\n        Date currentDate = new Date();\n        System.out.println(\"Current Date & Time (java.util.Date): \" + currentDate);\n    }\n}<\/code><\/pre>\n<p><strong>Output<\/strong><\/p>\n<pre><code>Current Date & Time (java.util.Date): Sun Jul 25 17:35:09 UTC 2023<\/code><\/pre>\n<p><strong>2. Using java.util.Calendar<\/strong><\/p>\n<p>Another pre-Java 8 approach to obtain the current date and time is by using the <code>java.util.Calendar<\/code> class. It provides more functionalities than <code>java.util.Date<\/code>, but it&#8217;s still considered outdated compared to the newer <code>java.time<\/code> package.<\/p>\n<p>Here&#8217;s an example of getting the current date and time using <code>java.util.Calendar<\/code>:<\/p>\n<pre><code>import java.util.Calendar;\n\npublic class CurrentDateTimeExample {\n    public static void main(String[] args) {\n        Calendar calendar = Calendar.getInstance();\n        System.out.println(\"Current Date & Time (java.util.Calendar): \" + calendar.getTime());\n    }\n}<\/code><\/pre>\n<p><strong>Output<\/strong><\/p>\n<pre><code>Current Date & Time (java.util.Calendar): Sun Jul 25 17:35:09 UTC 2023<\/code><\/pre>\n<p><strong>3. Using java.time.LocalDateTime<\/strong><\/p>\n<p>Java 8 introduced the <code>java.time<\/code> package, which provides a more modern and robust API for handling date and time. The <code>java.time.LocalDateTime<\/code> class represents a date and time without a time zone, and it&#8217;s suitable for getting the current date and time in a simple manner.<\/p>\n<pre><code>import java.time.LocalDateTime;\n\npublic class CurrentDateTimeExample {\n    public static void main(String[] args) {\n        LocalDateTime currentDateTime = LocalDateTime.now();\n        System.out.println(\"Current Date & Time (java.time.LocalDateTime): \" + currentDateTime);\n    }\n}<\/code><\/pre>\n<p><strong>Output<\/strong><\/p>\n<pre><code>Current Date & Time (java.time.LocalDateTime): 2023-07-25T17:35:09.123456789<\/code><\/pre>\n<p><strong>4. Using java.time.ZonedDateTime<\/strong><\/p>\n<p>If you require the current date and time with time zone information, you can use the <code>java.time.ZonedDateTime<\/code> class.<\/p>\n<pre><code>import java.time.ZonedDateTime;\n\npublic class CurrentDateTimeExample {\n    public static void main(String[] args) {\n        ZonedDateTime currentDateTimeWithZone = ZonedDateTime.now();\n        System.out.println(\"Current Date & Time with Zone (java.time.ZonedDateTime): \" + currentDateTimeWithZone);\n    }\n}<\/code><\/pre>\n<p><strong>Output<\/strong><\/p>\n<pre><code>Current Date & Time with Zone (java.time.ZonedDateTime): 2023-07-25T17:35:09.123456789+00:00[UTC]<\/code><\/pre>\n<p><strong>5. Custom date and time formats<\/strong> <\/p>\n<p>The <code>java.time.format.DateTimeFormatter<\/code> class allows you to create custom date and time formats when converting the <code>LocalDateTime<\/code> or <code>ZonedDateTime<\/code> objects to strings.<\/p>\n<p>Here&#8217;s an example of using <code>DateTimeFormatter<\/code> to format the current date and time:<\/p>\n<pre><code>import java.time.LocalDateTime;\nimport java.time.format.DateTimeFormatter;\n\npublic class CurrentDateTimeExample {\n    public static void main(String[] args) {\n        LocalDateTime currentDateTime = LocalDateTime.now();\n        DateTimeFormatter formatter = DateTimeFormatter.ofPattern(\"yyyy-MM-dd HH:mm:ss\");\n        String formattedDateTime = currentDateTime.format(formatter);\n        System.out.println(\"Formatted Date & Time: \" + formattedDateTime);\n    }\n}<\/code><\/pre>\n<p><strong>Output<\/strong><\/p>\n<pre><code>Formatted Date & Time: 2023-07-25 17:35:09<\/code><\/pre>\n<p><strong>Conclusion<\/strong><br \/>\nIn this article, we explored different ways to solve Java get current date and time. While the <code>java.util.Date<\/code> and <code>java.util.Calendar<\/code> classes were the traditional approaches used before Java 8, the introduction of the <code>java.time<\/code> package in Java 8 provided more robust and efficient classes like <code>LocalDateTime<\/code> and <code>ZonedDateTime<\/code> for handling date and time operations. For new projects, it is recommended to use the <code>java.time<\/code> package as it offers better features and is more in line with modern Java programming practices.<\/p>\n<h2>Frequently Asked Questions (FAQs)<\/h2>\n<p>Here is a list of most frequently asked questions on Java get current date and time.<\/p>\n<p><strong>Q1.  How to get the current date and time in Java?<\/strong><br \/>\nTo get the current date and time in Java, you can use the <code>java.time.LocalDateTime<\/code> class, which was introduced in Java 8 and later versions. Here&#8217;s an example code snippet:<\/p>\n<pre><code>import java.time.LocalDateTime;\n\npublic class GetCurrentDateTime {\n    public static void main(String[] args) {\n        LocalDateTime currentDateTime = LocalDateTime.now();\n        System.out.println(\"Current Date & Time: \" + currentDateTime);\n    }\n}<\/code><\/pre>\n<p><strong>Q2. How to get the current date in Java?<\/strong><br \/>\nTo get the current date without the time component in Java, you can use the <code>java.time.LocalDate<\/code> class. Here&#8217;s an example:<\/p>\n<pre><code>import java.time.LocalDate;\n\npublic class GetCurrentDate {\n    public static void main(String[] args) {\n        LocalDate currentDate = LocalDate.now();\n        System.out.println(\"Current Date: \" + currentDate);\n    }\n}<\/code><\/pre>\n<p><strong>Q3. How to get the current timestamp in Java?<\/strong><br \/>\nTo get the current timestamp (in milliseconds since January 1, 1970) in Java, you can use the <code>System.currentTimeMillis()<\/code> method. Here&#8217;s an example:<\/p>\n<pre><code>public class GetCurrentTimestamp {\n    public static void main(String[] args) {\n        long currentTimestamp = System.currentTimeMillis();\n        System.out.println(\"Current Timestamp: \" + currentTimestamp);\n    }\n}<\/code><\/pre>\n<p><strong>Q4. What is the <code>Date<\/code> Util in Java?<\/strong><br \/>\nThe term &quot;date Util&quot; in Java might refer to the <code>java.util.Date<\/code> class. <code>java.util.Date<\/code> is a legacy class introduced in the early versions of Java for date and time representation. However, it has some limitations and is considered outdated for new code. It&#8217;s recommended to use the newer <code>java.time<\/code> package introduced in Java 8 and later, as it offers better and more powerful date and time handling capabilities.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Working with dates and times is a common requirement in software development, and Java provides robust libraries to handle these tasks efficiently. In this article, we&#8217;ll explore how to get current date and time in Java using various approaches available in the standard libraries. Various ways to solve Java get Current Date &amp; Time Here [&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-17347","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>Java get Current Date &amp; Time<\/title>\n<meta name=\"description\" content=\"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations\" \/>\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\/java-get-current-date-time\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java get Current Date &amp; Time\" \/>\n<meta property=\"og:description\" content=\"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\" \/>\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-07-28T06:28:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.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\/java-get-current-date-time\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Java get Current Date &#038; Time\",\"datePublished\":\"2023-07-28T06:28:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\"},\"wordCount\":572,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\",\"name\":\"Java get Current Date & Time\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg\",\"datePublished\":\"2023-07-28T06:28:19+00:00\",\"description\":\"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#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\":\"Java get Current Date &#038; Time\"}]},{\"@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":"Java get Current Date & Time","description":"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations","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\/java-get-current-date-time\/","og_locale":"en_US","og_type":"article","og_title":"Java get Current Date & Time","og_description":"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations","og_url":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-07-28T06:28:19+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.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\/java-get-current-date-time\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Java get Current Date &#038; Time","datePublished":"2023-07-28T06:28:19+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/"},"wordCount":572,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/","url":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/","name":"Java get Current Date & Time","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg","datePublished":"2023-07-28T06:28:19+00:00","description":"Java 8 provided more robust and efficient classes like LocalDateTime and ZonedDateTime for handling date and time operations","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1690525627410-Topic%20%2838%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/java-get-current-date-time\/#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":"Java get Current Date &#038; Time"}]},{"@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\/17347","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=17347"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17347\/revisions"}],"predecessor-version":[{"id":17404,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17347\/revisions\/17404"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=17347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=17347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=17347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}