{"id":1537,"date":"2021-05-16T15:43:58","date_gmt":"2021-05-16T09:58:58","guid":{"rendered":"https:\/\/bcisnotes.com\/secondsemester\/?p=1537"},"modified":"2021-05-16T15:43:58","modified_gmt":"2021-05-16T09:58:58","slug":"case-study-spring-2017-object-oriented-programming","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/","title":{"rendered":"Case Study Spring 2017 || Object Oriented Programming"},"content":{"rendered":"<h1 style=\"text-align: center;\">Case Study Spring 2017<\/h1>\n<p>The answer to the Case Study Spring 2017\u00a0 are given below:<\/p>\n<p>package personal.assignment;<\/p>\n<p>import javax.swing.*;<\/p>\n<p>public class fourthQuestionA {<br \/>\npublic static void main(String[] args) {<br \/>\nJFrame frame = new JFrame(&#8220;Please Login&#8221;);<br \/>\nframe.setSize(350, 150);<\/p>\n<p>JPanel panel = new JPanel();<br \/>\nframe.add(panel);<\/p>\n<p>panel.setLayout(null);<\/p>\n<p>JLabel login = new JLabel(&#8220;Username: &#8220;);<br \/>\nlogin.setBounds(20, 10, 100, 20);<br \/>\npanel.add(login);<\/p>\n<p>JTextField loginT = new JTextField();<br \/>\nloginT.setBounds(90, 10, 220, 20);<br \/>\npanel.add(loginT);<\/p>\n<p>JLabel password = new JLabel(&#8220;Password: &#8220;);<br \/>\npassword.setBounds(20, 40, 100, 20);<br \/>\npanel.add(password);<\/p>\n<p>JTextField passwordT = new JTextField();<br \/>\npasswordT.setBounds(90, 40, 220, 20);<br \/>\npanel.add(passwordT);<\/p>\n<p>JButton loginB = new JButton(&#8220;Login&#8221;);<br \/>\nloginB.setBounds(20, 70, 70, 20);<br \/>\npanel.add(loginB);<\/p>\n<p>JButton regB = new JButton(&#8220;Register User&#8221;);<br \/>\nregB.setBounds(100, 70, 130, 20);<br \/>\npanel.add(regB);<\/p>\n<p>JButton closeB = new JButton(&#8220;Close&#8221;);<br \/>\ncloseB.setBounds(240, 70, 70, 20);<br \/>\npanel.add(closeB);<\/p>\n<p>frame.setVisible(true);<br \/>\n}<\/p>\n<p>}<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1538 size-full\" src=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1-1.jpg\" alt=\"case study spring 2017\" width=\"556\" height=\"261\" srcset=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1-1.jpg 556w, https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1-1-300x141.jpg 300w\" sizes=\"(max-width: 556px) 100vw, 556px\" \/><\/p>\n<p>package personal.assignment;<br \/>\nimport javax.swing.*;<br \/>\nimport java.awt.event.*;<\/p>\n<p>public class fourthQuestionB {<br \/>\npublic static void main(String[] args) {<br \/>\nJFrame frame = new JFrame(&#8220;Register User&#8221;);<br \/>\nframe.setSize(400, 260);<\/p>\n<p>JPanel panel = new JPanel();<br \/>\nframe.add(panel);<br \/>\npanel.setLayout(null);<\/p>\n<p>JLabel id = new JLabel(&#8220;ID:&#8221;);<br \/>\nid.setBounds(20, 20, 100, 20);<br \/>\npanel.add(id);<\/p>\n<p>JTextField idT = new JTextField();<br \/>\nidT.setBounds(120, 20, 230, 20);<br \/>\npanel.add(idT);<\/p>\n<p>JLabel fname = new JLabel(&#8220;First Name:&#8221;);<br \/>\nfname.setBounds(20, 50, 100, 20);<br \/>\npanel.add(fname);<\/p>\n<p>JTextField fnameT = new JTextField();<br \/>\nfnameT.setBounds(120, 50, 230, 20);<br \/>\npanel.add(fnameT);<\/p>\n<p>JLabel lname = new JLabel(&#8220;Last Name:&#8221;);<br \/>\nlname.setBounds(20, 80, 100, 20);<br \/>\npanel.add(lname);<\/p>\n<p>JTextField lnameT = new JTextField();<br \/>\nlnameT.setBounds(120, 80, 230, 20);<br \/>\npanel.add(lnameT);<\/p>\n<p>JLabel uname = new JLabel(&#8220;Username:&#8221;);<br \/>\nuname.setBounds(20, 110, 100, 20);<br \/>\npanel.add(uname);<\/p>\n<p>JTextField unameT = new JTextField();<br \/>\nunameT.setBounds(120, 110, 230, 20);<br \/>\npanel.add(unameT);<\/p>\n<p>JLabel password = new JLabel(&#8220;Password:&#8221;);<br \/>\npassword.setBounds(20, 140, 100, 20);<br \/>\npanel.add(password);<\/p>\n<p>JTextField passwordT = new JTextField();<br \/>\npasswordT.setBounds(120, 140, 230, 20);<br \/>\npanel.add(passwordT);<\/p>\n<p>JButton addB = new JButton(&#8220;Add&#8221;);<br \/>\naddB.setBounds(40, 170, 90, 20);<br \/>\npanel.add(addB);<\/p>\n<p>addB.addActionListener(new ActionListener() {<br \/>\npublic void actionPerformed(ActionEvent e) {<br \/>\nJDialog dialog = new JDialog(frame,&#8221;Details&#8221;);<br \/>\ndialog.setSize(100, 200);<\/p>\n<p>JPanel panel1 = new JPanel();<br \/>\nJLabel text1 = new JLabel();<br \/>\nJLabel text2 = new JLabel();<br \/>\nJLabel text3 = new JLabel();<br \/>\nJLabel text4 = new JLabel();<br \/>\nJLabel text5 = new JLabel();<\/p>\n<p>text1.setText(idT.getText().toString());<br \/>\ntext2.setText(fnameT.getText().toString());<br \/>\ntext3.setText(lnameT.getText().toString());<br \/>\ntext4.setText(unameT.getText().toString());<br \/>\ntext5.setText(passwordT.getText().toString());<\/p>\n<p>panel1.add(text1);<br \/>\npanel1.add(text2);<br \/>\npanel1.add(text3);<br \/>\npanel1.add(text4);<br \/>\npanel1.add(text5);<br \/>\ndialog.add(panel1);<\/p>\n<p>JOptionPane.showConfirmDialog(frame,&#8221;Do you want to continue?&#8221;);<br \/>\ndialog.setVisible(true);<\/p>\n<p>}<br \/>\n});<\/p>\n<p>JButton resetB = new JButton(&#8220;Reset&#8221;);<br \/>\nresetB.setBounds(150, 170, 90, 20);<br \/>\npanel.add(resetB);<\/p>\n<p>JButton closeB = new JButton(&#8220;Close&#8221;);<br \/>\ncloseB.setBounds(260, 170, 90, 20);<br \/>\npanel.add(closeB);<\/p>\n<p>frame.setVisible(true);<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1539 size-full\" src=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2-1.jpg\" alt=\"Case Study Spring 2017 \" width=\"720\" height=\"604\" srcset=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2-1.jpg 720w, https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2-1-300x252.jpg 300w\" sizes=\"(max-width: 720px) 100vw, 720px\" \/><\/p>\n<p>You may also like\u00a0<a href=\"https:\/\/bcisnotes.com\/secondsemester\/question-bank\/pokhara-university-spring-2017-object-oriented-programming\/\">Pokhara University || Spring 2017 || Object Oriented Programming<\/a><\/p>\n<div class=\"wjqlz69f0e53d0c4fa\" ><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.wjqlz69f0e53d0c4fa {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 993px) and (max-width: 1200px) {\r\n.wjqlz69f0e53d0c4fa {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 769px) and (max-width: 992px) {\r\n.wjqlz69f0e53d0c4fa {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 768px) and (max-width: 768px) {\r\n.wjqlz69f0e53d0c4fa {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (max-width: 767px) {\r\n.wjqlz69f0e53d0c4fa {\r\ndisplay: block;\r\n}\r\n}\r\n<\/style>\r\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Case Study Spring 2017 The answer to the Case Study Spring 2017\u00a0 are given below: package personal.assignment; import javax.swing.*; public class fourthQuestionA { public static <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\" title=\"Case Study Spring 2017 || Object Oriented Programming\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":14,"featured_media":1540,"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>Case Study Spring 2017 || Object Oriented Programming<\/title>\n<meta name=\"description\" content=\"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are 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\/case-study-spring-2017-object-oriented-programming\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Case Study Spring 2017 || Object Oriented Programming\" \/>\n<meta property=\"og:description\" content=\"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are given below:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS NOTES\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-16T09:58:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.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\/case-study-spring-2017-object-oriented-programming\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\"},\"author\":{\"name\":\"Satyal\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8\"},\"headline\":\"Case Study Spring 2017 || Object Oriented Programming\",\"datePublished\":\"2021-05-16T09:58:58+00:00\",\"dateModified\":\"2021-05-16T09:58:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\"},\"wordCount\":396,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg\",\"articleSection\":[\"Q\/A\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\",\"name\":\"Case Study Spring 2017 || Object Oriented Programming\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg\",\"datePublished\":\"2021-05-16T09:58:58+00:00\",\"dateModified\":\"2021-05-16T09:58:58+00:00\",\"description\":\"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are given below:\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg\",\"width\":340,\"height\":230,\"caption\":\"Case Study Spring 2017\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/secondsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Case Study Spring 2017 || Object Oriented Programming\"}]},{\"@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":"Case Study Spring 2017 || Object Oriented Programming","description":"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are 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\/case-study-spring-2017-object-oriented-programming\/","og_locale":"en_US","og_type":"article","og_title":"Case Study Spring 2017 || Object Oriented Programming","og_description":"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are given below:","og_url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/","og_site_name":"BCIS NOTES","article_published_time":"2021-05-16T09:58:58+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.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\/case-study-spring-2017-object-oriented-programming\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/"},"author":{"name":"Satyal","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8"},"headline":"Case Study Spring 2017 || Object Oriented Programming","datePublished":"2021-05-16T09:58:58+00:00","dateModified":"2021-05-16T09:58:58+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/"},"wordCount":396,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg","articleSection":["Q\/A"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/","url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/","name":"Case Study Spring 2017 || Object Oriented Programming","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg","datePublished":"2021-05-16T09:58:58+00:00","dateModified":"2021-05-16T09:58:58+00:00","description":"Case Study Spring 2017 || Object Oriented Programming- The answer to the Case Study Spring 2017\u00a0 are given below:","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#primaryimage","url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg","contentUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2017-.jpg","width":340,"height":230,"caption":"Case Study Spring 2017"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2017-object-oriented-programming\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/secondsemester\/"},{"@type":"ListItem","position":2,"name":"Case Study Spring 2017 || Object Oriented Programming"}]},{"@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\/1537"}],"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=1537"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1537\/revisions"}],"predecessor-version":[{"id":1541,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1537\/revisions\/1541"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media\/1540"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media?parent=1537"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/categories?post=1537"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/tags?post=1537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}