<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with cs506]]></title><description><![CDATA[A list of topics that have been tagged with cs506]]></description><link>https://community.secnto.com//tags/cs506</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:11:10 GMT</lastBuildDate><atom:link href="https://community.secnto.com//tags/cs506.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[CS506 Assignment 2 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Re: <a href="/topic/696/cs506-assignment-2-solution-and-discussion">CS506 Assignment 2 Solution and Discussion</a></p>
<p dir="auto">Please read the following instructions carefully before solving &amp; submitting assignment:</p>
<p dir="auto">Uploading Instructions:<br />
•	You are not allowed to use any other software/IDE except NetBeans IDE for this assignment development.<br />
•	The submission must be a complete NetBeans IDE project folder (which should contain complete source code, Java files, database file and builds etc.). After finalizing, compress it with Zip or RAR format, save with your own Student ID (e.g. bc000000000.zip) and submit it at VU-LMS within due date.<br />
•	Your assignment should be in .zip /.rar format. Other file formats will not be accepted.<br />
•	No assignment will be accepted through email.</p>
<p dir="auto">Rules for Marking:<br />
It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">o	The assignment is submitted after due date.<br />
o	The assignment is not submitted in .zip /.rar format.<br />
o	The submitted assignment does not open or file is corrupted.<br />
o	The assignment is fully or partially copied from other student or ditto copy from handouts or Internet; strict disciplinary action will be taken in this case.<br />
o	The submitted code is unable to compile/execute in NetBeans IDE; during evaluation, submitted code will be checked on NetBeans IDE. If unable to execute then ZERO marks will be awarded and no excuses will be accepted in this regard.</p>
<p dir="auto">Note: Do not put any query on MDB regarding this assignment, if you have any query then email at <a href="mailto:cs506@vu.edu.pk" target="_blank" rel="noopener noreferrer nofollow ugc">cs506@vu.edu.pk</a><br />
Lectures Covered: This assignment covers Lectures # 1-16</p>
<p dir="auto">GOOD LUCK</p>
<p dir="auto">Problem Statement:<br />
You are required to develop a Java program named MyATM, which should simulate behavior of a typical ATM (Automated Teller Machine). In which a user, after entering card details, can deposit amount, withdraw cash and check current balance. The program should be based on a user friendly interface; need to use Java Swing based GUI components for this purpose. Further, all information must be saved in a backend database using MS Access.</p>
<p dir="auto">Detailed Description:<br />
At start, your program should ask the user to provide card number and pin code as input. After taking input from user the program should fetch user data corresponding to the input values from database and store in a class level global variable. Taking input from user is shown in figure no 1.</p>
<p dir="auto">Fig. 1: Taking input from User</p>
<p dir="auto">If input values are correct (i.e. found a user against provided card number and pin code) then following ATM services should be displayed via GUI;</p>
<ol>
<li>Deposit Amount</li>
<li>Withdraw Cash</li>
<li>Check Balance</li>
</ol>
<p dir="auto">Fig. 2: ATM Services GUI</p>
<p dir="auto">However, in case if input values are not correct (i.e. found no user against provided card number and pin code) then appropriate message should be shown, like; “Invalid Card No or Wrong Pin Code”.</p>
<ol>
<li>Deposit Amount:</li>
</ol>
<p dir="auto">Each time, user selects this option, s/he will be prompted to enter money for deposit that must be in multiple of Rs. 500/- (hint is given below) and up to a maximum of Rs. 25000/- per transaction. If inputs are correct then the amount must be added in current balance and as well as in database. However, in case of wrong input, appropriate message should be displayed.</p>
<p dir="auto">Fig. 3: Deposit Amount GUI<br />
2. Withdraw Cash:</p>
<p dir="auto">User can withdraw any cash but in multiple of Rs. 500/- (hint is given below) and up to a maximum of Rs. 25000/- per transaction by using this option. However, if balance is zero or withdraw amount is greater than the balance, then appropriate message should be displayed. Otherwise, amount must be deducted from current balance and as well as database should be maintained.</p>
<p dir="auto">Fig. 4: Cash Withdraw GUI</p>
<ol start="3">
<li>Check Balance:</li>
</ol>
<p dir="auto">The program should fascinate the user by displaying the current balance as well via GUI.</p>
<p dir="auto">Fig. 5: Check Balance GUI<br />
Note: At the end of each successful transaction, the user must be asked to proceed with another transaction or not; if yes then start from displaying ATM services again and if not then show developer information (i.e. Student Id and name) via GUI.</p>
<p dir="auto">Fig. 6: Developer Info<br />
Required Stuff:<br />
Java Classes:<br />
DebitCard.java	(id,username,cardno,pincode,balance)<br />
DbHelper.java	(should contain all database related code)<br />
MainClass.java	(should contain GUI code)</p>
<p dir="auto">Database file:<br />
BSxxxxxxxx.accdb (must be same as your own VU student id)</p>
<p dir="auto">Note: need to put database file in assets folder in NetBeans project directory; as shown below;</p>
<p dir="auto">Fig. 7: Folder “assets” in NetBeans project directory<br />
Sample Data:<br />
Id	Username	Card No	Pin Code	Balance<br />
1	Ahmad	20201001	1041	3000<br />
2	Ali	20201002	1226	0<br />
3	Sana	20201003	2592	7000<br />
4	Amna	20201004	6372	12000<br />
5	Umar	20201005	9241	25000</p>
<p dir="auto">Tab. 1: Sample Users Data</p>
<p dir="auto">Tab. 2: Users Table in MS Access Database file<br />
Hint:<br />
if (amount % 500 == 0) {<br />
// it is a multiple of 500.<br />
}</p>
<p dir="auto"><a href="https://www.youtube.com/watch?v=AyANioRrpD0" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=AyANioRrpD0</a></p>
<p dir="auto">Setup Files &amp; Video Tutorials:	<br />
	To download JDK setup file for Windows x64 , <a href="https://vulms.vu.edu.pk/Courses/CS506/Downloads/JDK_13.0.2_Windows_x64.zip" target="_blank" rel="noopener noreferrer nofollow ugc">Download</a>;</p>
<p dir="auto">	To download JDK setup file for Windows x32 , <a href="https://vulms.vu.edu.pk/Courses/CS506/Downloads/JDK_8.251_Windows_x32.zip" target="_blank" rel="noopener noreferrer nofollow ugc">please visit</a>;</p>
<p dir="auto">	To install JDK and create a HelloWorld program in Java, please watch;<br />
<a href="https://www.youtube.com/watch?v=AyANioRrpD0" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=AyANioRrpD0</a></p>
<p dir="auto">	To install &amp; create a HelloWorld Java program in NetBeans IDE, please watch;</p>
<p dir="auto"><a href="https://www.youtube.com/watch?v=AyANioRrpD0" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=AyANioRrpD0</a></p>
<p dir="auto">	To use UCanAccess driver to connect with MS Access database, please watch;<br />
<a href="https://www.youtube.com/watch?v=0xGN88cZyuU" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=0xGN88cZyuU</a></p>
<p dir="auto"><a href="https://www.youtube.com/watch?v=G8iUNPz1c6s" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=G8iUNPz1c6s</a></p>
<p dir="auto">Important Things to Implement:		<br />
	For GUI, relevant components (i.e. JFrame, JPanel, JButton, JTextArea, JTextField and JLable etc.) from AWT and Swing packages should be used.<br />
	You will have to use UCanAccess driver to connect to MS Access database. In this case, you are suggested to view the video tutorial shared above.<br />
	For storing/fetching data to/from database, you will need to use proper SQL queries.<br />
	Data must be stored/fetched to/from database table in the form of Java class object/s.<br />
	You can use same Java classes (DebitCard and DbHelper etc.) as provided in assignment # 1 and also can make changes as required.<br />
	Java classes must have proper Data Members and Member Functions along with Constructors, Standard Setters and Getters etc.<br />
	Need to make sure that exceptions are managed properly throughout the program; especially NullPointerException, NumberFormatException, ClassNotFoundException and SQLException etc.<br />
	All images, tables and sample data, given in this document, are just for reference purpose only; you have to provide your own implementations. It is not required to be exactly the same.</p>
<p dir="auto">Good Luck</p>
]]></description><link>https://community.secnto.com//topic/1938/cs506-assignment-2-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/1938/cs506-assignment-2-solution-and-discussion</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Assignment 1 Solution and Discussion]]></title><description><![CDATA[CS506 Assignment 1 Solution Spring 2021
[image: 8Z3ybr6.png]
employee.txt
1110, ALI, CS, MS, 5, 70000
1120, Abdullah, MGT, PhD, 10, 125000
1022, Ilyas, Bio, Master, 7, 50000
1022, Ahmad, MassCom, MS, 3, 60000

CS506 Assignment 1 Solution.zip
]]></description><link>https://community.secnto.com//topic/1829/cs506-assignment-1-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/1829/cs506-assignment-1-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 MCQ&#x27;s Final Term Paper]]></title><description><![CDATA[@zareen said in CS506 MCQ's Final Term Paper:

Which of the following is/are not correct about Thread(s)?
Select correct option:
Light weight
Heavy weight
Share same memory
Light weight and share same memory

The correct option is:
Heavy weight
Threads are generally considered to be lightweight compared to processes because they share the same memory space (i.e., address space) and resources within a process. Threads within the same process can efficiently share data and communicate with each other due to this shared memory.
Therefore, threads are not heavy weight; they are lightweight and share the same memory.
]]></description><link>https://community.secnto.com//topic/1497/cs506-mcq-s-final-term-paper</link><guid isPermaLink="true">https://community.secnto.com//topic/1497/cs506-mcq-s-final-term-paper</guid><dc:creator><![CDATA[cyberian]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 GDB 1 Solution and discussion]]></title><description><![CDATA[<p dir="auto">Re: <a href="/topic/327/cs506-gdb1-solution-and-discussion">CS506 Gdb1 Solution and discussion</a></p>
<p dir="auto">GDB Topic:</p>
<p dir="auto">In general, a typical Java program is dealt with the following kinds of thread:</p>
<p dir="auto">Main Thread; initial application code is executed.</p>
<p dir="auto">Worker Thread; time-consuming and background tasks are executed.</p>
<p dir="auto">Well, Java based smart devices (embedding Java code in smart devices) have revolutionaries the human life. At one side, these devices provide ease of use of technology. But on the other side, their unresponsiveness or delay in response to user’s actions may result in human frustration. One of the main reasons is, these devices mostly run on a single Main Thread.</p>
<p dir="auto">Being a Java developer what do you think, “Use of Worker Threads along with Main Thread will reduce the response delay or increase the work load in Java based Smart Devices?”</p>
]]></description><link>https://community.secnto.com//topic/1424/cs506-gdb-1-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/1424/cs506-gdb-1-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Assignment 3 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">Please read the following instructions carefully before solving &amp; submitting assignment:</p>
<p dir="auto">Uploading Instructions:<br />
•	You are not allowed to use any other software/IDE except NetBeans IDE for this assignment development.<br />
•	The submission must be a complete NetBeans IDE project folder (which should contain complete source code; Java files, servlet files, html files, database file, xml files and builds etc.). After finalizing, compress it with Zip or RAR format, save with your own Student ID (e.g. bs1234567890.zip) and submit it at VU-LMS within due date.<br />
•	Your assignment should be in .zip /.rar format. Other file formats will not be accepted.<br />
•	No assignment will be accepted through email.</p>
<p dir="auto">Rules for Marking:<br />
It should be clear that your assignment will not get any credit if:</p>
<p dir="auto">o	The assignment is submitted after due date.<br />
o	The assignment is not submitted in .zip/.rar format.<br />
o	The submitted assignment does not open or file is corrupted.<br />
o	The assignment is fully or partially copied from other student or ditto copy from handouts or Internet; strict disciplinary action will be taken in this case.<br />
o	The submitted code is unable to compile/execute in NetBeans IDE; during evaluation, submitted code will be checked on NetBeans IDE. If unable to execute then ZERO marks will be awarded and no excuses will be accepted in this regard.</p>
<p dir="auto">Note: Do not put any query on MDB regarding this assignment, if you have any query then email at <a href="mailto:cs506@vu.edu.pk" target="_blank" rel="noopener noreferrer nofollow ugc">cs506@vu.edu.pk</a></p>
<p dir="auto">Lectures Covered: This assignment covers Lecture # 1 - 30</p>
<p dir="auto">GOOD LUCK<br />
 <br />
Problem Statement:<br />
You are required to deploy a basic web application using Apache Tomcat Server, named ShoppingCart, for a typical online shopping system. In which a customer can add/remove items to shopping cart and proceed to place order. The program should calculate total bill and display amount via web page. Further, all orders will be saved in a backend database using MS Access so that administrator could process accordingly.</p>
<p dir="auto">[floatRight]Detailed Description:<br />
The program should facilitate at least one user i.e. Customer. For this purpose, you have to develop an html page (index.html) which should contain a login form, as shown in figure 1. <img src="https://i.imgur.com/Vlpr8yW.png" alt="dca5c0c8-9b76-4276-a4c9-c80ac85dbacf-image.png" class=" img-fluid img-markdown" />[/floatRight]</p>
<p dir="auto">The customer should be able to login by using student id (must be your own student id) as username and “vu” as password.</p>
<p dir="auto">Now, write a Java Servlet named as LoginServlet.java that will receive submitted information from login form (i.e. index.html) and verify input values; whether entered values are correct or not. If authentication is invalid then print back a message “Invalid Username or Password”.</p>
<p dir="auto">If customer credentials (i.e. username and password) are correct, jump to Shopping Cart Page (i.e. ShoppingCartServlet.java) which should list down all available products (i.e. products having one or more items), as shown in figure 2.<br />
<img src="https://i.imgur.com/gAuXrL7.png" alt="28cacaf4-26e4-4269-9a88-8beb86b51fe3-image.png" class=" img-fluid img-markdown" /><br />
Here, customer can provide quantity of desired product/s and click on Check Out button. If no item is selected (i.e. no quantity is provided), then a message “Cart is empty” should be displayed.</p>
<p dir="auto">On the other hand, if cart is not empty, Checkout Page (i.e. CheckOutServlet.java) should serve the customer by displaying total bill, shipping charges along with no. of products &amp; items etc. and also provide an input field for shipping address, as shown in figure 3.<br />
<img src="https://i.imgur.com/UPKP78K.png" alt="98ca9dbf-455b-4a49-9dfb-ab453ca140fd-image.png" class=" img-fluid img-markdown" /><br />
To place order, customer must provide shipping address and click on Place Order button. Before displaying message "Order has been placed successfully.”, the program must save order details (i.e. no. of items, subtotal, shipping charges, grand total, shipping address and selected products with quantity) in corresponding database tables. Further, need to maintain quantity of products in database so that customer could not see out of stock products in next shopping.</p>
<p dir="auto">Button “Go Back” should take back on Shopping Cart Page. However, customer can sign out from system by pressing “Logout” button. In this case, web developer information (student id, name and email address) should be displayed via an HTML page (info.html), as shown in figure 4.<br />
<img src="https://i.imgur.com/sx2DRhQ.png" alt="9ef54e27-5ef2-44c0-bf01-5913ecb6f0ad-image.png" class=" img-fluid img-markdown" /><br />
Required Stuff:<br />
<strong>Html Pages:</strong><br />
index.html<br />
info.html<br />
<strong>Java Servlets:</strong><br />
LoginServlet.java<br />
ShoppingCartServlet.java<br />
CheckOutServlet.java<br />
<strong>Java Classes:</strong><br />
Product.java<br />
Cart.java<br />
Order.java<br />
OrderDetail.java<br />
DatabaseHelper.java (must contain all database related code)<br />
<strong>Database file:</strong><br />
BSxxxxxxxx.accdb (must be same as your own VU student id)</p>
<p dir="auto">Shipping Charges:</p>
<p dir="auto">Shipping Charges ($) = ((no. of Items / 5) + 1) * 0.5</p>
<p dir="auto">Sample Data &amp; Database Tables:<br />
Tab. 1: Sample Products Data</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Price</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Flour</td>
<td>$18.00</td>
<td>20</td>
</tr>
<tr>
<td>2</td>
<td>Oil</td>
<td>$19.00</td>
<td>50</td>
</tr>
<tr>
<td>3</td>
<td>Ghee</td>
<td>$10.00</td>
<td>0</td>
</tr>
<tr>
<td>4</td>
<td>Sauce</td>
<td>$22.00</td>
<td>40</td>
</tr>
<tr>
<td>5</td>
<td>Sugar</td>
<td>$21.35</td>
<td>35</td>
</tr>
<tr>
<td>6</td>
<td>Salt</td>
<td>$25.00</td>
<td>26</td>
</tr>
<tr>
<td>7</td>
<td>Daal</td>
<td>$30.00</td>
<td>38</td>
</tr>
<tr>
<td>8</td>
<td>Rice</td>
<td>$40.00</td>
<td>92</td>
</tr>
<tr>
<td>9</td>
<td>Pasta</td>
<td>$97.00</td>
<td>63</td>
</tr>
<tr>
<td>10</td>
<td>Fruits</td>
<td>$35.00</td>
<td>72</td>
</tr>
<tr>
<td>11</td>
<td>Dry Fruits</td>
<td>$31.00</td>
<td>70</td>
</tr>
<tr>
<td>12</td>
<td>Tea</td>
<td>$21.00</td>
<td>12</td>
</tr>
<tr>
<td>13</td>
<td>Coffee</td>
<td>$38.00</td>
<td>9</td>
</tr>
<tr>
<td>14</td>
<td>Milk</td>
<td>$10.00</td>
<td>10</td>
</tr>
<tr>
<td>15</td>
<td>Snacks</td>
<td>$23.25</td>
<td>13</td>
</tr>
<tr>
<td>16</td>
<td>Dessert</td>
<td>$15.50</td>
<td>22</td>
</tr>
<tr>
<td>17</td>
<td>Vegetables</td>
<td>$17.45</td>
<td>52</td>
</tr>
<tr>
<td>18</td>
<td>Chicken</td>
<td>$39.00</td>
<td>98</td>
</tr>
<tr>
<td>19</td>
<td>Beef</td>
<td>$62.50</td>
<td>0</td>
</tr>
<tr>
<td>20</td>
<td>Frozen Food</td>
<td>$19.20</td>
<td>30</td>
</tr>
<tr>
<td>21</td>
<td>Sea Food</td>
<td>$81.00</td>
<td>29</td>
</tr>
<tr>
<td>22</td>
<td>Sweet</td>
<td>$10.00</td>
<td>29</td>
</tr>
<tr>
<td>23</td>
<td>Cake</td>
<td>$21.00</td>
<td>0</td>
</tr>
<tr>
<td>24</td>
<td>Yogurt</td>
<td>$26.00</td>
<td>0</td>
</tr>
<tr>
<td>25</td>
<td>Pickle</td>
<td>$30.00</td>
<td>41</td>
</tr>
</tbody>
</table>
<p dir="auto">Tab. 2: Products Table in MS Access Database<br />
<img src="https://i.imgur.com/7i9OFP4.png" alt="e8814dde-b201-440f-a69e-2a3d27e55528-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Tab. 3: Orders Table in MS Access Database<br />
<img src="https://i.imgur.com/Pf9ldDs.png" alt="f9420f5c-00a8-493b-863f-d95c3237d986-image.png" class=" img-fluid img-markdown" /><br />
Tab. 4: Order Details Table in MS Access Database<br />
<img src="https://i.imgur.com/enC3m6e.png" alt="85596bdd-deaa-486f-83cb-201dd7cc5801-image.png" class=" img-fluid img-markdown" /><br />
Video Tutorials:	<br />
To download and install of Tomcat Server, please watch;<br />
<a href="https://youtu.be/eaYAcv3p9Vw" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/eaYAcv3p9Vw</a><br />
	To create a web application project in NetBeans IDE, please watch;<br />
<a href="https://youtu.be/S9LGRuILHfc" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/S9LGRuILHfc</a><br />
	To add ucanaccess driver in a NetBeans project, please watch;<br />
<a href="https://youtu.be/G8iUNPz1c6s" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/G8iUNPz1c6s</a></p>
<p dir="auto">Important Things to Implement:<br />
	You have to provide separate pages, servlets, java files and database tables as guided above. Merging of two or more will result in deduction of marks.<br />
	You need to put database file in assets folder under NetBeans project web directory along with html pages, as shown in figure 5.<br />
	For storing/fetching data to/from database, you will need to use proper SQL queries.<br />
	You can use same Product and Cart Java classes as provided in assignment # 1 &amp; 2 and also can make changes as required.<br />
	Java classes must have proper Data Members and Member Functions along with Constructors, Standard Setters and Getters etc.<br />
	Need to make sure that exceptions are managed properly throughout the program; especially NullPointerException, ClassNotFoundException, NumberFormatException and SQLException etc.<br />
	All images, tables and sample data, given in this document, are just for reference purpose only; you have to provide your own implementations. It is not required to be exactly the same.</p>
<p dir="auto">Good Luck</p>
]]></description><link>https://community.secnto.com//topic/930/cs506-assignment-3-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/930/cs506-assignment-3-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Quiz 1 Solution and Discussion]]></title><description><![CDATA[<ol>
<li>
<p dir="auto">The keyword “this” is used to ________<br />
invoke constructor of the another class<br />
<strong>invoke alternate constructor of the same class</strong><br />
invoke constructor of super class from sub class<br />
invoke constructor of sub class from super class</p>
</li>
<li>
<p dir="auto">Java defines _____ for the listener interfaces having more than one vent handling methods.<br />
<strong>Answer:</strong>  Adapter Classes (right Answer)</p>
</li>
<li>
<p dir="auto">DSN stands for _________<br />
<strong>Answer:</strong>  Data Source Name</p>
</li>
<li>
<p dir="auto">JDBC-ODBC stands for ________.<br />
<strong>Answer:</strong>   JDBC stands for java database connectivity.</p>
</li>
<li>
<p dir="auto">== Operator compares _________ of strings whereas equals() method compares _________ of strings.<br />
<strong>Answer:</strong> Addresses, values</p>
</li>
<li>
<p dir="auto">Overloading is _______ whereas overriding is _____<br />
<strong>Answer:</strong>  Compile time binding, run time binding</p>
</li>
<li>
<p dir="auto">Java defines ________ for the listener interfaces having more than one event handling methods.<br />
<strong>Answer:</strong> Event Listeners</p>
</li>
<li>
<p dir="auto">A database that is created in MS Access 2003 will be saved with _________ extension.<br />
<strong>Answer:</strong> .mdb</p>
</li>
<li>
<p dir="auto">Based on functionality, the streams can be categorized as ________<br />
<strong>Answer:</strong> Node stream and Filter stream</p>
</li>
<li>
<p dir="auto">AWT is a GUI Package used in java. AWT stands for_________<br />
<strong>Answer:</strong>  Abstract Window Toolkit</p>
</li>
</ol>
]]></description><link>https://community.secnto.com//topic/709/cs506-quiz-1-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/709/cs506-quiz-1-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Assignment 2 Solution and Discussion]]></title><description><![CDATA[Solution Files:
Fall 2019_CS506_2_SOL.zip
]]></description><link>https://community.secnto.com//topic/696/cs506-assignment-2-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/696/cs506-assignment-2-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Assignment 1 Solution and Discussion]]></title><description><![CDATA[@kalsoom Please post Assignment 1 Assignment file please.
]]></description><link>https://community.secnto.com//topic/584/cs506-assignment-1-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/584/cs506-assignment-1-solution-and-discussion</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[CS506 Gdb1 Solution and discussion]]></title><description><![CDATA[Thanks for shairing
]]></description><link>https://community.secnto.com//topic/327/cs506-gdb1-solution-and-discussion</link><guid isPermaLink="true">https://community.secnto.com//topic/327/cs506-gdb1-solution-and-discussion</guid><dc:creator><![CDATA[Khuram Shahzad]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>