{"id":4351,"date":"2023-11-07T15:14:33","date_gmt":"2023-11-07T15:14:33","guid":{"rendered":"https:\/\/learnscripting.org\/?p=4351"},"modified":"2023-11-07T15:14:41","modified_gmt":"2023-11-07T15:14:41","slug":"mastering-java-operators-arithmetic-relational-logical-and-assignment","status":"publish","type":"post","link":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/","title":{"rendered":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Operators are an integral part of any programming language, and Java is no exception. They allow you to perform various operations, manipulate data, and make decisions in your code. In this blog, we&#8217;ll explore four essential categories of operators in Java: Arithmetic, Relational, Logical, and Assignment. Understanding how these operators work is crucial for effective Java programming.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Arithmetic Operators: Crunching the Numbers<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Arithmetic operators are used for mathematical calculations in Java. They work with numeric data types, such as <code>int<\/code>, <code>double<\/code>, and <code>float<\/code>. Here are the primary arithmetic operators:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Addition (+):<\/strong> Adds two values.<\/li>\n\n\n\n<li><strong>Subtraction (-):<\/strong> Subtracts the right operand from the left operand.<\/li>\n\n\n\n<li><strong>Multiplication (*):<\/strong> Multiplies two values.<\/li>\n\n\n\n<li><strong>Division (\/):<\/strong> Divides the left operand by the right operand.<\/li>\n\n\n\n<li><strong>Modulus (%):<\/strong> Returns the remainder of the division of the left operand by the right operand.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>int x = 10;\nint y = 3;\nint sum = x + y;        \/\/ 13\nint difference = x - y; \/\/ 7\nint product = x * y;    \/\/ 30\nint quotient = x \/ y;   \/\/ 3\nint remainder = x % y;  \/\/ 1<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Relational Operators: Comparing Values<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Relational operators are used to compare values and expressions, resulting in a Boolean value (<code>true<\/code> or <code>false<\/code>). They are often used in conditional statements and loops to make decisions based on comparisons. Common relational operators include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Equal to (==):<\/strong> Checks if two values are equal.<\/li>\n\n\n\n<li><strong>Not equal to (!=):<\/strong> Checks if two values are not equal.<\/li>\n\n\n\n<li><strong>Greater than (&gt;):<\/strong> Checks if the left operand is greater than the right operand.<\/li>\n\n\n\n<li><strong>Less than (&lt;):<\/strong> Checks if the left operand is less than the right operand.<\/li>\n\n\n\n<li><strong>Greater than or equal to (&gt;=):<\/strong> Checks if the left operand is greater than or equal to the right operand.<\/li>\n\n\n\n<li><strong>Less than or equal to (&lt;=):<\/strong> Checks if the left operand is less than or equal to the right operand.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>int a = 5;\nint b = 10;\nboolean isEqual = (a == b);     \/\/ false\nboolean isNotEqual = (a != b);  \/\/ true\nboolean isGreaterThan = (a &gt; b); \/\/ false\nboolean isLessThan = (a &lt; b);    \/\/ true<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Logical Operators: Making Informed Decisions<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Logical operators are used to combine or modify Boolean values. They are essential for creating complex conditions and making decisions in your code. The primary logical operators are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Logical AND (&amp;&amp;):<\/strong> Returns <code>true<\/code> if both operands are <code>true<\/code>.<\/li>\n\n\n\n<li><strong>Logical OR (||):<\/strong> Returns <code>true<\/code> if at least one operand is <code>true<\/code>.<\/li>\n\n\n\n<li><strong>Logical NOT (!):<\/strong> Negates the value of the operand.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>boolean isSunny = true;\nboolean isWarm = true;\nboolean isSummer = false;\n\nboolean goOutside = isSunny &amp;&amp; isWarm;  \/\/ true\nboolean goSwimming = isSunny || isWarm; \/\/ true\nboolean stayInside = !isSunny;          \/\/ false<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Assignment Operators: Storing and Updating Values<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Assignment operators are used to store values in variables and update existing values. The most common assignment operator is the simple assignment operator (<code>=<\/code>), but there are also compound assignment operators that combine arithmetic operations with assignment. Some examples include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>+= (Addition assignment):<\/strong> Adds the right operand to the left operand and stores the result in the left operand.<\/li>\n\n\n\n<li><strong>-= (Subtraction assignment):<\/strong> Subtracts the right operand from the left operand and stores the result in the left operand.<\/li>\n\n\n\n<li><strong>*= (Multiplication assignment):<\/strong> Multiplies the left operand by the right operand and stores the result in the left operand.<\/li>\n\n\n\n<li><strong>\/= (Division assignment):<\/strong> Divides the left operand by the right operand and stores the result in the left operand.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>int count = 5;\ncount += 3; \/\/ Equivalent to count = count + 3; (count is now 8)\ncount -= 2; \/\/ Equivalent to count = count - 2; (count is now 6)\ncount *= 4; \/\/ Equivalent to count = count * 4; (count is now 24)\ncount \/= 2; \/\/ Equivalent to count = count \/ 2; (count is now 12)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion:<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Operators are the building blocks of any Java program, allowing you to perform a wide range of tasks, from basic arithmetic calculations to complex decision-making. Understanding the categories of operators, such as arithmetic, relational, logical, and assignment operators, and how they work is crucial for writing efficient and effective code. By mastering these operators, you&#8217;ll be better equipped to handle a wide range of programming challenges and create robust, functional applications in Java.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Operators are an integral part of any programming language, and Java is no exception. They allow you to perform various operations, manipulate data, and make decisions in your code. In this blog, we&#8217;ll explore four essential categories of operators in Java: Arithmetic, Relational, Logical, and Assignment. Understanding how these operators work is crucial for effective &hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"rop_custom_images_group":[],"rop_custom_messages_group":[],"rop_publish_now":"initial","rop_publish_now_accounts":{"facebook_2613112545524186_272996453239123":"","twitter_aTo5NzY3MTIyNTIwMzEwNTM4MjQ7_976712252031053800":""},"rop_publish_now_history":[],"rop_publish_now_status":"pending","footnotes":""},"categories":[17],"tags":[],"class_list":["post-4351","post","type-post","status-publish","format-standard","hentry","category-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting\" \/>\n<meta property=\"og:description\" content=\"Operators are an integral part of any programming language, and Java is no exception. They allow you to perform various operations, manipulate data, and make decisions in your code. In this blog, we&#8217;ll explore four essential categories of operators in Java: Arithmetic, Relational, Logical, and Assignment. Understanding how these operators work is crucial for effective &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/\" \/>\n<meta property=\"og:site_name\" content=\"Learn Scripting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100064270142636\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-07T15:14:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-07T15:14:41+00:00\" \/>\n<meta name=\"author\" content=\"Shakti Das\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shakti Das\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/\"},\"author\":{\"name\":\"Shakti Das\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#\\\/schema\\\/person\\\/71045e0c38b97ea7f76363d6effa320c\"},\"headline\":\"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment\",\"datePublished\":\"2023-11-07T15:14:33+00:00\",\"dateModified\":\"2023-11-07T15:14:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/\"},\"wordCount\":513,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#organization\"},\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/\",\"url\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/\",\"name\":\"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#website\"},\"datePublished\":\"2023-11-07T15:14:33+00:00\",\"dateModified\":\"2023-11-07T15:14:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/mastering-java-operators-arithmetic-relational-logical-and-assignment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/learnscripting.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#website\",\"url\":\"https:\\\/\\\/learnscripting.org\\\/\",\"name\":\"Learn Scripting\",\"description\":\"Coding Knowledge Unveiled: Empower Yourself\",\"publisher\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/learnscripting.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#organization\",\"name\":\"Learn Scripting\",\"url\":\"https:\\\/\\\/learnscripting.org\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/learnscripting.org\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/cropped-ls-600x600-1-512x512.jpg?fit=512%2C512&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/learnscripting.org\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/cropped-ls-600x600-1-512x512.jpg?fit=512%2C512&ssl=1\",\"width\":512,\"height\":512,\"caption\":\"Learn Scripting\"},\"image\":{\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=100064270142636\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/learnscripting.org\\\/#\\\/schema\\\/person\\\/71045e0c38b97ea7f76363d6effa320c\",\"name\":\"Shakti Das\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g\",\"caption\":\"Shakti Das\"},\"sameAs\":[\"https:\\\/\\\/learnscripting.org\"],\"url\":\"https:\\\/\\\/learnscripting.org\\\/author\\\/53kgl\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting","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:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/","og_locale":"en_US","og_type":"article","og_title":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting","og_description":"Operators are an integral part of any programming language, and Java is no exception. They allow you to perform various operations, manipulate data, and make decisions in your code. In this blog, we&#8217;ll explore four essential categories of operators in Java: Arithmetic, Relational, Logical, and Assignment. Understanding how these operators work is crucial for effective &hellip;","og_url":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/","og_site_name":"Learn Scripting","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100064270142636","article_published_time":"2023-11-07T15:14:33+00:00","article_modified_time":"2023-11-07T15:14:41+00:00","author":"Shakti Das","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Shakti Das","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/#article","isPartOf":{"@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/"},"author":{"name":"Shakti Das","@id":"https:\/\/learnscripting.org\/#\/schema\/person\/71045e0c38b97ea7f76363d6effa320c"},"headline":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment","datePublished":"2023-11-07T15:14:33+00:00","dateModified":"2023-11-07T15:14:41+00:00","mainEntityOfPage":{"@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/"},"wordCount":513,"commentCount":0,"publisher":{"@id":"https:\/\/learnscripting.org\/#organization"},"articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/","url":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/","name":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment - Learn Scripting","isPartOf":{"@id":"https:\/\/learnscripting.org\/#website"},"datePublished":"2023-11-07T15:14:33+00:00","dateModified":"2023-11-07T15:14:41+00:00","breadcrumb":{"@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/learnscripting.org\/mastering-java-operators-arithmetic-relational-logical-and-assignment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/learnscripting.org\/"},{"@type":"ListItem","position":2,"name":"Mastering Java Operators: Arithmetic, Relational, Logical, and Assignment"}]},{"@type":"WebSite","@id":"https:\/\/learnscripting.org\/#website","url":"https:\/\/learnscripting.org\/","name":"Learn Scripting","description":"Coding Knowledge Unveiled: Empower Yourself","publisher":{"@id":"https:\/\/learnscripting.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/learnscripting.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/learnscripting.org\/#organization","name":"Learn Scripting","url":"https:\/\/learnscripting.org\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/learnscripting.org\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/learnscripting.org\/wp-content\/uploads\/2022\/03\/cropped-ls-600x600-1-512x512.jpg?fit=512%2C512&ssl=1","contentUrl":"https:\/\/i0.wp.com\/learnscripting.org\/wp-content\/uploads\/2022\/03\/cropped-ls-600x600-1-512x512.jpg?fit=512%2C512&ssl=1","width":512,"height":512,"caption":"Learn Scripting"},"image":{"@id":"https:\/\/learnscripting.org\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100064270142636"]},{"@type":"Person","@id":"https:\/\/learnscripting.org\/#\/schema\/person\/71045e0c38b97ea7f76363d6effa320c","name":"Shakti Das","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5492ae25bd62294799695759ba85aaa28ae3d1de6b30be7cbdc377abc2ea0aac?s=96&d=mm&r=g","caption":"Shakti Das"},"sameAs":["https:\/\/learnscripting.org"],"url":"https:\/\/learnscripting.org\/author\/53kgl\/"}]}},"_links":{"self":[{"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/posts\/4351","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/comments?post=4351"}],"version-history":[{"count":1,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/posts\/4351\/revisions"}],"predecessor-version":[{"id":4361,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/posts\/4351\/revisions\/4361"}],"wp:attachment":[{"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/media?parent=4351"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/categories?post=4351"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/learnscripting.org\/wp-json\/wp\/v2\/tags?post=4351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}