{"id":1531,"date":"2021-05-14T13:05:53","date_gmt":"2021-05-14T07:20:53","guid":{"rendered":"https:\/\/bcisnotes.com\/secondsemester\/?p=1531"},"modified":"2021-05-14T13:05:53","modified_gmt":"2021-05-14T07:20:53","slug":"case-study-spring-2016-object-oriented-programming","status":"publish","type":"post","link":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/","title":{"rendered":"Case Study Spring 2016 || Object Oriented Programming"},"content":{"rendered":"<h1 style=\"text-align: center;\">Case Study Spring 2016<\/h1>\n<p>The answer to the Case Study Spring 2016\u00a0 is given below:<\/p>\n<p style=\"text-align: center;\">&#8220;a&#8221;<\/p>\n<p>package personal.assignment;<\/p>\n<p>import javax.swing.*;<\/p>\n<p>public class secondQuestionA {<br \/>\npublic static void main(String[] args) {<br \/>\nJFrame frame = new JFrame(&#8220;Login Dialog&#8221;);<br \/>\nframe.setSize(250,150);<\/p>\n<p>JPanel panel = new JPanel();<br \/>\nframe.add(panel);<\/p>\n<p>panel.setLayout(null);<\/p>\n<p>JLabel employ = new JLabel(&#8220;Employee ID: &#8220;);<br \/>\nemploy.setBounds(10, 20, 100, 20);<br \/>\npanel.add(employ);<\/p>\n<p>JTextField employT = new JTextField();<br \/>\nemployT.setBounds(100, 20, 100, 20);<br \/>\npanel.add(employT);<\/p>\n<p>JLabel password = new JLabel(&#8220;Password:&#8221;);<br \/>\npassword.setBounds(10, 50, 100, 20);<br \/>\npanel.add(password);<\/p>\n<p>JTextField passwordT = new JTextField();<br \/>\npasswordT.setBounds(100,50,100,20);<br \/>\npanel.add(passwordT);<\/p>\n<p>frame.setVisible(true);<br \/>\n}<\/p>\n<p>}<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1532 size-full\" src=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1.jpg\" alt=\"Case Study Spring 2016 \" width=\"400\" height=\"262\" srcset=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1.jpg 400w, https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/1-300x197.jpg 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\">&#8220;b&#8221;<\/p>\n<p>package personal.assignment;<br \/>\nimport javax.swing.*;<br \/>\nimport java.awt.*;<br \/>\nimport java.awt.event.*;<\/p>\n<p>public class secondQuestionB {<br \/>\npublic static void main(String[] args) {<br \/>\nJFrame frame = new JFrame(&#8220;DashBoard&#8221;);<br \/>\nframe.setSize(500,400);<\/p>\n<p>JPanel panel = new JPanel();<br \/>\nframe.add(panel);<\/p>\n<p>panel.setLayout(null);<\/p>\n<p>JMenuBar menuBar = new JMenuBar();<br \/>\nframe.setJMenuBar(menuBar);<\/p>\n<p>JMenu menu = new JMenu(&#8220;View&#8221;);<br \/>\nmenuBar.add(menu);<br \/>\nJMenuItem byName = new JMenuItem(&#8220;View By Name&#8221;);<br \/>\nmenu.add(byName);<br \/>\nJMenuItem byDepartment = new JMenuItem(&#8220;View By Department&#8221;);<br \/>\nmenu.add(byDepartment);<\/p>\n<p>JMenu menu1 = new JMenu(&#8220;Logout&#8221;);<br \/>\nmenuBar.add(menu1);<br \/>\nJMenuItem log = new JMenuItem(&#8220;Logout&#8221;);<br \/>\nmenu1.add(log);<\/p>\n<p>JLabel name = new JLabel(&#8220;Name:&#8221;);<br \/>\nname.setBounds(0, 0, 100, 30);<br \/>\npanel.add(name);<\/p>\n<p>JTextField nameT = new JTextField();<br \/>\nnameT.setBounds(200, 0, 287, 30);<br \/>\npanel.add(nameT);<\/p>\n<p>JLabel address = new JLabel(&#8220;Address:&#8221;);<br \/>\naddress.setBounds(0, 30, 100, 30);<br \/>\npanel.add(address);<\/p>\n<p>JTextField addressT = new JTextField();<br \/>\naddressT.setBounds(200, 30, 287, 30);<br \/>\npanel.add(addressT);<\/p>\n<p>JLabel gender = new JLabel(&#8220;Gender:&#8221;);<br \/>\ngender.setBounds(0,60,100,30);<br \/>\npanel.add(gender);<\/p>\n<p>JRadioButton b1 = new JRadioButton(&#8220;Male&#8221;);<br \/>\nb1.setBounds(250, 60, 60, 30);<br \/>\npanel.add(b1);<\/p>\n<p>JRadioButton b2 = new JRadioButton(&#8220;Female&#8221;);<br \/>\nb2.setBounds(320, 60, 80, 30);<br \/>\npanel.add(b2);<\/p>\n<p>ButtonGroup bg = new ButtonGroup();<br \/>\nbg.add(b1);<br \/>\nbg.add(b2);<\/p>\n<p>JLabel departments = new JLabel(&#8220;Departments:&#8221;);<br \/>\ndepartments.setBounds(0, 90, 100, 30);<br \/>\npanel.add(departments);<\/p>\n<p>JComboBox combo = new JComboBox();<br \/>\ncombo.setBounds(200, 90, 287, 30);<br \/>\ncombo.addItem(&#8220;Finance&#8221;);<br \/>\ncombo.addItem(&#8220;Admin&#8221;);<br \/>\ncombo.addItem(&#8220;Marketing&#8221;);<br \/>\ncombo.addItem(&#8220;Human Resource&#8221;);<br \/>\npanel.add(combo);<\/p>\n<p>JLabel phone = new JLabel(&#8220;Phone:&#8221;);<br \/>\nphone.setBounds(0, 120, 100, 30);<br \/>\npanel.add(phone);<\/p>\n<p>JTextField phoneT = new JTextField();<br \/>\nphoneT.setBounds(200, 120, 287, 30);<br \/>\npanel.add(phoneT);<\/p>\n<p>JLabel email = new JLabel(&#8220;Email:&#8221;);<br \/>\nemail.setBounds(0, 150, 100, 30);<br \/>\npanel.add(email);<\/p>\n<p>JTextField emailT = new JTextField();<br \/>\nemailT.setBounds(200, 150, 287, 30);<br \/>\npanel.add(emailT);<\/p>\n<p>JButton addB = new JButton(&#8220;Add&#8221;);<br \/>\naddB.setBounds(90, 190, 90, 30);<br \/>\npanel.add(addB);<\/p>\n<p>JButton resetB = new JButton(&#8220;Reset&#8221;);<br \/>\nresetB.setBounds(190, 190, 100, 30);<br \/>\npanel.add(resetB);<\/p>\n<p>JButton cancelB = new JButton(&#8220;Cancel&#8221;);<br \/>\ncancelB.setBounds(300, 190, 100, 30);<br \/>\npanel.add(cancelB);<\/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 texts = new JLabel();<br \/>\nJLabel text2 = new JLabel();<br \/>\nJLabel text3 = new JLabel();<br \/>\nJLabel text4 = new JLabel();<\/p>\n<p>texts.setText(nameT.getText().toString());<br \/>\ntext2.setText(addressT.getText().toString());<br \/>\ntext3.setText(phoneT.getText().toString());<br \/>\ntext4.setText(emailT.getText().toString());<\/p>\n<p>panel1.add(texts);<br \/>\npanel1.add(text2);<br \/>\npanel1.add(text3);<br \/>\npanel1.add(text4);<br \/>\ndialog.add(panel1);<br \/>\ndialog.setVisible(true);<\/p>\n<p>JOptionPane.showConfirmDialog(frame,&#8221;Do you want to continue?&#8221;);<br \/>\n}<br \/>\n});<\/p>\n<p>frame.setVisible(true);<br \/>\n}<\/p>\n<p>}<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1533 size-full\" src=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2.jpg\" alt=\"Case Study Spring 2016 \" width=\"756\" height=\"619\" srcset=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2.jpg 756w, https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/2-300x246.jpg 300w\" sizes=\"(max-width: 756px) 100vw, 756px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>You may also like\u00a0<a href=\"https:\/\/bcisnotes.com\/secondsemester\/question-bank\/pokhara-university-spring-2016-object-oriented-programming\/\">Pokhara University || Spring 2016 || Object Oriented Programming<\/a><\/p>\n<p>Do like our page\u00a0<a href=\"https:\/\/www.facebook.com\/bcisnotes\">Facebook<\/a><\/p>\n<div class=\"ywlde69f81260f37be\" ><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.ywlde69f81260f37be {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 993px) and (max-width: 1200px) {\r\n.ywlde69f81260f37be {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 769px) and (max-width: 992px) {\r\n.ywlde69f81260f37be {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (min-width: 768px) and (max-width: 768px) {\r\n.ywlde69f81260f37be {\r\ndisplay: block;\r\n}\r\n}\r\n@media screen and (max-width: 767px) {\r\n.ywlde69f81260f37be {\r\ndisplay: block;\r\n}\r\n}\r\n<\/style>\r\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Case Study Spring 2016 The answer to the Case Study Spring 2016\u00a0 is given below: &#8220;a&#8221; package personal.assignment; import javax.swing.*; public class secondQuestionA { public <a class=\"mh-excerpt-more\" href=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\" title=\"Case Study Spring 2016 || Object Oriented Programming\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":14,"featured_media":1534,"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 2016 || Object Oriented Programming<\/title>\n<meta name=\"description\" content=\"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is 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-2016-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 2016 || Object Oriented Programming\" \/>\n<meta property=\"og:description\" content=\"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is given below:\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\" \/>\n<meta property=\"og:site_name\" content=\"BCIS NOTES\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-14T07:20:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.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=\"3 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-2016-object-oriented-programming\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\"},\"author\":{\"name\":\"Satyal\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8\"},\"headline\":\"Case Study Spring 2016 || Object Oriented Programming\",\"datePublished\":\"2021-05-14T07:20:53+00:00\",\"dateModified\":\"2021-05-14T07:20:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\"},\"wordCount\":467,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#organization\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg\",\"articleSection\":[\"Q\/A\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\",\"name\":\"Case Study Spring 2016 || Object Oriented Programming\",\"isPartOf\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg\",\"datePublished\":\"2021-05-14T07:20:53+00:00\",\"dateModified\":\"2021-05-14T07:20:53+00:00\",\"description\":\"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is given below:\",\"breadcrumb\":{\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage\",\"url\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg\",\"contentUrl\":\"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg\",\"width\":340,\"height\":230,\"caption\":\"Case Study Spring 2016\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/bcisnotes.com\/secondsemester\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Case Study Spring 2016 || 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 2016 || Object Oriented Programming","description":"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is 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-2016-object-oriented-programming\/","og_locale":"en_US","og_type":"article","og_title":"Case Study Spring 2016 || Object Oriented Programming","og_description":"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is given below:","og_url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/","og_site_name":"BCIS NOTES","article_published_time":"2021-05-14T07:20:53+00:00","og_image":[{"width":340,"height":230,"url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg","type":"image\/jpeg"}],"author":"Satyal","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Satyal","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#article","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/"},"author":{"name":"Satyal","@id":"https:\/\/bcisnotes.com\/secondsemester\/#\/schema\/person\/f8dbec6a3775d3a538119e749a62cea8"},"headline":"Case Study Spring 2016 || Object Oriented Programming","datePublished":"2021-05-14T07:20:53+00:00","dateModified":"2021-05-14T07:20:53+00:00","mainEntityOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/"},"wordCount":467,"commentCount":0,"publisher":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#organization"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg","articleSection":["Q\/A"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/","url":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/","name":"Case Study Spring 2016 || Object Oriented Programming","isPartOf":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage"},"image":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage"},"thumbnailUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg","datePublished":"2021-05-14T07:20:53+00:00","dateModified":"2021-05-14T07:20:53+00:00","description":"Case Study Spring 2016 || Object Oriented Programming - The answer to the Case Study Spring 2016\u00a0 is given below:","breadcrumb":{"@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#primaryimage","url":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg","contentUrl":"https:\/\/bcisnotes.com\/secondsemester\/wp-content\/uploads\/2021\/05\/spring-2016-.jpg","width":340,"height":230,"caption":"Case Study Spring 2016"},{"@type":"BreadcrumbList","@id":"https:\/\/bcisnotes.com\/secondsemester\/q-a\/case-study-spring-2016-object-oriented-programming\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bcisnotes.com\/secondsemester\/"},{"@type":"ListItem","position":2,"name":"Case Study Spring 2016 || 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\/1531"}],"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=1531"}],"version-history":[{"count":1,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1531\/revisions"}],"predecessor-version":[{"id":1535,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/posts\/1531\/revisions\/1535"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media\/1534"}],"wp:attachment":[{"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/media?parent=1531"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/categories?post=1531"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bcisnotes.com\/secondsemester\/wp-json\/wp\/v2\/tags?post=1531"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}