{"id":1569,"date":"2021-05-24T12:32:47","date_gmt":"2021-05-24T06:47:47","guid":{"rendered":"https:\/\/bcisnotes.com\/secondsemester\/?p=1569"},"modified":"2021-05-24T12:32:47","modified_gmt":"2021-05-24T06:47:47","slug":"explain-types-of-inheritance-with-suitable-example","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/","title":{"rendered":"Explain types of inheritance with suitable example."},"content":{"rendered":"<h1 style=\"text-align: center;\">Explain types of inheritance with suitable example.<\/h1>\n<p>The answer to the &#8220;<em>Explain types of inheritance with suitable example.&#8221;\u00a0<\/em>is given below:<\/p>\n<p>Inheritance in java is one of the core concepts of Object-Oriented Programming. Java Inheritance is used when we have is-a relationship between objects. Inheritance in Java is implemented using extends keyword.<\/p>\n<p>Inheritance in Java is the method to create a hierarchy between classes by inheriting from other classes.<\/p>\n<p>Java Inheritance is transitive \u2013 so if Sedan extends Car and Car extends Vehicle, then Sedan is also inherited from Vehicle class. The Vehicle becomes the superclass of both Car and Sedan.<\/p>\n<p>Inheritance is widely used in java applications, for example extending the Exception class to create an application-specific Exception class that contains more information like error codes. For example NullPointerException.<\/p>\n<p>Terms used in inheritance<\/p>\n<ul class=\"points\">\n<li>Class<\/li>\n<li>Sub Class\/Child Class<\/li>\n<li>Super Class\/Parent Class<\/li>\n<li>Reusability<\/li>\n<\/ul>\n<p>Java supports three types of inheritance \u2212<\/p>\n<ul class=\"list\">\n<li>Single Level inheritance &#8211; A class inherits properties from a single class. For example, Class B inherits Class A.<\/li>\n<li>Multilevel inheritance &#8211; A class inherits properties from a class that again has inherits properties<\/li>\n<li>Hierarchical inheritance &#8211; Multiple classes inherits properties from a single class. For example, Class B inherits Class A and Class C inherits Class A.<\/li>\n<\/ul>\n<p>class Bicycle {<br \/>\npublic int gear;<br \/>\npublic int speed;<\/p>\n<p>public Bicycle(int gear, int speed)<br \/>\n{<br \/>\nthis.gear = gear;<br \/>\nthis.speed = speed;<br \/>\n}<\/p>\n<p>public void applyBrake(int decrement)<br \/>\n{<br \/>\nspeed -= decrement;<br \/>\n}<\/p>\n<p>public void speedUp(int increment)<br \/>\n{<br \/>\nspeed += increment;<br \/>\n}<\/p>\n<p>public String toString()<br \/>\n{<br \/>\nreturn (&#8220;No of gears are &#8221; + gear + &#8220;\\n&#8221;<br \/>\n+ &#8220;speed of bicycle is &#8221; + speed);<br \/>\n}<br \/>\n}<\/p>\n<p>class MountainBike extends Bicycle {<\/p>\n<p>public int seatHeight;<\/p>\n<p>public MountainBike(int gear, int speed,<br \/>\nint startHeight)<br \/>\n{<br \/>\nsuper(gear, speed);<br \/>\nseatHeight = startHeight;<br \/>\n}<\/p>\n<p>public void setHeight(int newValue)<br \/>\n{<br \/>\nseatHeight = newValue;<br \/>\n}<\/p>\n<p>@Override public String toString()<br \/>\n{<br \/>\nreturn (super.toString() + &#8220;\\nseat height is &#8221;<br \/>\n+ seatHeight);<br \/>\n}<br \/>\n}<\/p>\n<p>public class Test {<br \/>\npublic static void main(String args[])<br \/>\n{<\/p>\n<p>MountainBike mb = new MountainBike(3, 100, 25);<br \/>\nSystem.out.println(mb.toString());<br \/>\n}<br \/>\n}<\/p>\n<p>In the above program, when an object of MountainBike class is created, a copy of all methods and fields of the superclass acquire memory in this object. That is why by using the object of the subclass we can also access the members of a superclass.<\/p>\n<div class=\"inrxf69e5301777d24\" ><div id=\"amzn-assoc-ad-668fe681-bdc6-49ee-a9f9-a4c2f5be29a0\"><\/div><script async src=\"\/\/z-na.amazon-adsystem.com\/widgets\/onejs?MarketPlace=US&adInstanceId=668fe681-bdc6-49ee-a9f9-a4c2f5be29a0\"><\/script><\/div><style type=\"text\/css\">\r\n@media screen and (min-width: 1201px) {\r\n.inrxf69e5301777d24 {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 993px) and (max-width: 1200px) {\r\n.inrxf69e5301777d24 {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 769px) and (max-width: 992px) {\r\n.inrxf69e5301777d24 {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 768px) and (max-width: 768px) {\r\n.inrxf69e5301777d24 {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (max-width: 767px) {\r\n.inrxf69e5301777d24 {\r\ndisplay: block;\r\n}\r\n}\r\n<\/style>\r\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Explain types of inheritance with suitable example. The answer to the &#8220;Explain types of inheritance with suitable example.&#8221;\u00a0is given below: Inheritance in java is one <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\" title=\"Explain types of inheritance with suitable example.\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":14,"featured_media":1570,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Explain types of inheritance with suitable example.<\/title>\n<meta name=\"description\" content=\"The answer to the &quot;Explain types of inheritance with suitable example.&quot;\u00a0is given below:\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Explain types of inheritance with suitable example.\" \/>\n<meta property=\"og:description\" content=\"The answer to the &quot;Explain types of inheritance with suitable example.&quot;\u00a0is given below:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS NOTES\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-24T06:47:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"340\" \/>\n\t<meta property=\"og:image:height\" content=\"230\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Satyal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Satyal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\"},\"author\":{\"name\":\"Satyal\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8\"},\"headline\":\"Explain types of inheritance with suitable example.\",\"datePublished\":\"2021-05-24T06:47:47+00:00\",\"dateModified\":\"2021-05-24T06:47:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\"},\"wordCount\":366,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg\",\"articleSection\":[\"Q\/A\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\",\"name\":\"Explain types of inheritance with suitable example.\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg\",\"datePublished\":\"2021-05-24T06:47:47+00:00\",\"dateModified\":\"2021-05-24T06:47:47+00:00\",\"description\":\"The answer to the \\\"Explain types of inheritance with suitable example.\\\"\u00a0is given below:\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg\",\"width\":340,\"height\":230,\"caption\":\"types of inheritance\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/secondsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Explain types of inheritance with suitable example.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#website\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/\",\"name\":\"BCIS NOTES\",\"description\":\"Second Semester\",\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bcisnotes.com\/secondsemester\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#organization\",\"name\":\"BCIS NOTES\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2019\/12\/cropped-2.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2019\/12\/cropped-2.jpg\",\"width\":300,\"height\":100,\"caption\":\"BCIS NOTES\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8\",\"name\":\"Satyal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/046e4cf5c1f258099878dc90092445b4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/046e4cf5c1f258099878dc90092445b4?s=96&d=mm&r=g\",\"caption\":\"Satyal\"},\"sameAs\":[\"http:\/\/bcisnotes.com\/secondsemester\"],\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/author\/sadikshya\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Explain types of inheritance with suitable example.","description":"The answer to the \"Explain types of inheritance with suitable example.\"\u00a0is given below:","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:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/","og_locale":"en_US","og_type":"article","og_title":"Explain types of inheritance with suitable example.","og_description":"The answer to the \"Explain types of inheritance with suitable example.\"\u00a0is given below:","og_url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/","og_site_name":"BCIS NOTES","article_published_time":"2021-05-24T06:47:47+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg","type":"image\/jpeg"}],"author":"Satyal","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Satyal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/"},"author":{"name":"Satyal","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8"},"headline":"Explain types of inheritance with suitable example.","datePublished":"2021-05-24T06:47:47+00:00","dateModified":"2021-05-24T06:47:47+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/"},"wordCount":366,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg","articleSection":["Q\/A"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/","url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/","name":"Explain types of inheritance with suitable example.","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg","datePublished":"2021-05-24T06:47:47+00:00","dateModified":"2021-05-24T06:47:47+00:00","description":"The answer to the \"Explain types of inheritance with suitable example.\"\u00a0is given below:","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#primaryimage","url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg","contentUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/fall-2016-1-3.jpg","width":340,"height":230,"caption":"types of inheritance"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/explain-types-of-inheritance-with-suitable-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/secondsemester\/"},{"@type":"ListItem","position":2,"name":"Explain types of inheritance with suitable example."}]},{"@type":"WebSite","@id":"https:\/\/bcisnotes.com\/secondsemester\/#website","url":"https:\/\/bcisnotes.com\/secondsemester\/","name":"BCIS NOTES","description":"Second Semester","publisher":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bcisnotes.com\/secondsemester\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/bcisnotes.com\/secondsemester\/#organization","name":"BCIS NOTES","url":"https:\/\/bcisnotes.com\/secondsemester\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/logo\/image\/","url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2019\/12\/cropped-2.jpg","contentUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2019\/12\/cropped-2.jpg","width":300,"height":100,"caption":"BCIS NOTES"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8","name":"Satyal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/046e4cf5c1f258099878dc90092445b4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/046e4cf5c1f258099878dc90092445b4?s=96&d=mm&r=g","caption":"Satyal"},"sameAs":["http:\/\/bcisnotes.com\/secondsemester"],"url":"https:\/\/bcisnotes.com\/secondsemester\/author\/sadikshya\/"}]}},"_links":{"self":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1569"}],"collection":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/comments?post=1569"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1569\/revisions"}],"predecessor-version":[{"id":1571,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1569\/revisions\/1571"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media\/1570"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media?parent=1569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/categories?post=1569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/tags?post=1569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}