<?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[CS101 Assignment 2 Solution and Discussion Fall-2019]]></title><description><![CDATA[<pre><code>Assignment No. 02
</code></pre>
<p dir="auto">Semester: Fall 2019<br />
Introduction to Computing – CS101	<br />
Total Marks: 20<br />
Due Date:  05-12-2019<br />
Please carefully read the following instructions before attempting assignment<br />
Objective of Assignment<br />
Objective of this assignment is to increase the learning capabilities of the students about:<br />
•	Decimal to Binary Conversion<br />
•	Boolean Logical Operations<br />
Rules for Assignment</p>
<p dir="auto">It should be clear that your assignment will get credit only if:<br />
•	The assignment is submitted before or on the due date.<br />
•	The submitted assignment file is not corrupted or damaged.<br />
•	The assignment is not copied (from another student or internet).<br />
Uploading Instructions</p>
<pre><code>Read the following instructions carefully before uploading assignment:
</code></pre>
<p dir="auto">•	Upload/Submit assignment in your VULMS assignment interface.<br />
•	No assignment will be accepted through email.<br />
•	Your assignment must be with .doc extension. (Any other format will not be accepted)<br />
NOTE<br />
No assignment will be accepted after the due date or via email in any case (whether it is the case of load shedding or internet malfunctioning etc.). Hence, refrain from uploading assignment in the last hour of deadline. It is recommended to upload solution file at least two days before its closing date.</p>
<p dir="auto">If you find any mistake or confusion in assignment (Question statement), please consult with your instructor before the deadline. After the deadline, no queries will be entertained in this regard. Moreover, keep checking announcements section.</p>
<p dir="auto">Question No.1     		               8  Marks</p>
<p dir="auto">Convert a decimal number 724 into its equivalent binary numbers. You are required to show the complete steps of conversion and also write the final answer in its equivalent binary number.</p>
<p dir="auto">Question No.2	                        12  Marks</p>
<p dir="auto">Complete the following truth table by using the stated Boolean logical operations.</p>
<p dir="auto">A	B	C	A + B	A . C	(A + B) ⊕ C<br />
0	0	0			<br />
0	0	1			<br />
0	1	0			<br />
0	1	1			<br />
1	0	0			<br />
1	0	1			<br />
1	1	0			<br />
1	1	1</p>
<p dir="auto">For any query, feel free to email at:<br />
<a href="mailto:cs101@vu.edu.pk" target="_blank" rel="noopener noreferrer nofollow ugc">cs101@vu.edu.pk</a></p>
<p dir="auto">Best of Luck</p>
]]></description><link>https://community.secnto.com//topic/697/cs101-assignment-2-solution-and-discussion-fall-2019</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 01:54:24 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/697.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 28 Nov 2019 15:31:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS101 Assignment 2 Solution and Discussion Fall-2019 on Tue, 17 Dec 2019 09:28:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/zareen" aria-label="Profile: zareen">@<bdi>zareen</bdi></a><br />
<strong>Solution:</strong><br />
Question # 01     		         8 Marks<br />
Convert a decimal number 724 into its equivalent binary numbers. You are required to show the complete steps of conversion and also write the final answer in its equivalent binary numbers.</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>2</th>
<th colspan="2">724</th>
</tr>
</thead>
<tbody>
<tr>
<td>2</td>
<td>362-</td>
<td>0</td>
</tr>
<tr>
<td>2</td>
<td>181-</td>
<td>0</td>
</tr>
<tr>
<td>2</td>
<td>90-</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>45-</td>
<td>0</td>
</tr>
<tr>
<td>2</td>
<td>22-</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>11-</td>
<td>0</td>
</tr>
<tr>
<td>2</td>
<td>5-</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>2-</td>
<td>1</td>
</tr>
<tr>
<td>1-</td>
<td>0</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>Answer: (724)2 =1011010100</strong></p>
<p dir="auto">Question # 02	                12 Marks<br />
Complete the following truth table by using the stated Boolean logical operations.</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
<th>A + B</th>
<th>A . C</th>
<th>(A + B) ⊕ C</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>0</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>0</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>0</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>0</td>
</tr>
</tbody>
</table>
]]></description><link>https://community.secnto.com//post/2382</link><guid isPermaLink="true">https://community.secnto.com//post/2382</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 17 Dec 2019 09:28:40 GMT</pubDate></item><item><title><![CDATA[Reply to CS101 Assignment 2 Solution and Discussion Fall-2019 on Tue, 03 Dec 2019 10:12:17 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://www.youtube.com/watch?v=1QUfRoUDZcA" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=1QUfRoUDZcA</a></p>
]]></description><link>https://community.secnto.com//post/2099</link><guid isPermaLink="true">https://community.secnto.com//post/2099</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 03 Dec 2019 10:12:17 GMT</pubDate></item><item><title><![CDATA[Reply to CS101 Assignment 2 Solution and Discussion Fall-2019 on Tue, 03 Dec 2019 10:11:52 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://www.youtube.com/watch?v=80LtDwP4H00" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.youtube.com/watch?v=80LtDwP4H00</a></p>
]]></description><link>https://community.secnto.com//post/2098</link><guid isPermaLink="true">https://community.secnto.com//post/2098</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Tue, 03 Dec 2019 10:11:52 GMT</pubDate></item></channel></rss>