<?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 3 Solution and Discussion]]></title><description><![CDATA[<p dir="auto">You are required to make a bill calculator application for a fast food restaurant. The restaurant offers some foods, that can be ordered by customers. Customer can order any number of items. You should design a program to calculate bill accordingly.</p>
<p dir="auto">Program should add 19% GST to the stated order by your customer. If the customer’s bill is greater than 1000 rupees, the restaurant will give 5% discount on complete calculated bill.</p>
<p dir="auto">You program must show the complete order details along with GST calculations, Discount (if applicable) and final amount.</p>
<p dir="auto">To design/code, please follow the stated steps:</p>
<ol>
<li>Your program must show menu items on the program startup:<br />
a)	Pizza (Rs 999)<br />
b)	Burger (Rs 250)<br />
c)	Sandwich (Rs 150)<br />
d)	Paratha Roll (200)</li>
<li>Program must ask quantity for each item and calculate its total price.</li>
<li>Program will add 19% GST to the bill and Calculate total Bill.</li>
<li>Program will offer/give 5% discount if total bill is greater than 1000 Rs.</li>
<li>Show the payment along with all calculation (price, GST, discount) in proper format.</li>
</ol>
]]></description><link>https://community.secnto.com//topic/2030/cs101-assignment-3-solution-and-discussion</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:22:06 GMT</lastBuildDate><atom:link href="https://community.secnto.com//topic/2030.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 27 Jul 2020 16:58:24 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to CS101 Assignment 3 Solution and Discussion on Thu, 29 Jul 2021 00:33:01 GMT]]></title><description><![CDATA[<p dir="auto">Assignment 3 solution 2021 <a href="https://youtu.be/1TNXNoBFry0" target="_blank" rel="noopener noreferrer nofollow ugc">https://youtu.be/1TNXNoBFry0</a></p>
]]></description><link>https://community.secnto.com//post/6814</link><guid isPermaLink="true">https://community.secnto.com//post/6814</guid><dc:creator><![CDATA[cyberian]]></dc:creator><pubDate>Thu, 29 Jul 2021 00:33:01 GMT</pubDate></item><item><title><![CDATA[Reply to CS101 Assignment 3 Solution and Discussion on Tue, 28 Jul 2020 17:50:04 GMT]]></title><description><![CDATA[<p dir="auto">dear zaasim can you tell me how can we make on words document please tell me the how i type on word</p>
]]></description><link>https://community.secnto.com//post/5839</link><guid isPermaLink="true">https://community.secnto.com//post/5839</guid><dc:creator><![CDATA[kashif malik]]></dc:creator><pubDate>Tue, 28 Jul 2020 17:50:04 GMT</pubDate></item><item><title><![CDATA[Reply to CS101 Assignment 3 Solution and Discussion on Tue, 28 Jul 2020 07:04:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kashif-malik" aria-label="Profile: kashif-malik">@<bdi>kashif-malik</bdi></a> said in <a href="/post/5830">help</a>:</p>
<blockquote>
<p dir="auto">You are required to make a bill calculator application for a fast food restaurant. The restaurant offers some foods, that can be ordered by customers. Customer can order any number of items. You should design a program to calculate bill accordingly.<br />
Program should add 19% GST to the stated order by your customer. If the customer’s bill is greater than 1000 rupees, the restaurant will give 5% discount on complete calculated bill.<br />
You program must show the complete order details along with GST calculations, Discount (if applicable) and final amount.<br />
To design/code, please follow the stated steps:</p>
<p dir="auto">Your program must show menu items on the program startup:<br />
a)	Pizza (Rs 999)<br />
b)	Burger (Rs 250)<br />
c)	Sandwich (Rs 150)<br />
d)	Paratha Roll (200)<br />
Program must ask quantity for each item and calculate its total price.<br />
Program will add 19% GST to the bill and Calculate total Bill.<br />
Program will offer/give 5% discount if total bill is greater than 1000 Rs.<br />
Show the payment along with all calculation (price, GST, discount) in proper format.</p>
</blockquote>
<pre><code>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Currency Converter&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;table Align="center" &gt;
  &lt;tr&gt;
    &lt;td  style="background:black"&gt;&lt;h1 style="color: aliceblue"&gt; Currency Converter &lt;/h1&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td style="background:#2CBCFF"&gt; Welcome to online Currency Converter &lt;/td&gt;
  &lt;/tr&gt;
&lt;/Table&gt;
&lt;form name="f"&gt;
  &lt;table Align="center"&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;br&gt;
        PAK Currency (Rupees) :
        &lt;input id="inputcurrency" type="number" name ="rupees"&gt;
        &lt;input  type="button" name ="Convert" Value = "Convert" onclick="currencyConverter(f.rupees.value)"&gt;&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/Table&gt;
  &lt;br&gt;
  &lt;table Align="center"&gt;
    &lt;tr&gt;
      &lt;td&gt; Dollar (American): &lt;/td&gt;
      &lt;td&gt;&lt;input id="dollar"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt; Yuan (China):&lt;/td&gt;
      &lt;td&gt;&lt;input id="yuan"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt; Won (Korea): &lt;/td&gt;
      &lt;td&gt;&lt;input id="won"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt; Riyal (Saudia):&lt;/td&gt;
      &lt;td&gt;&lt;input id="riyal"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt; Dinar (Kuwait): &lt;/td&gt;
      &lt;td&gt;&lt;input id="dinar"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;input type="reset"  name="reset" Value="Reset Form"&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td colspan="2"&gt;You Can Press Reset Button for resetting the form&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/Table&gt;
&lt;/form&gt;
&lt;script&gt;
function currencyConverter(valNum) {
if(f.rupees.value &lt;= 0)
window.alert("Enter Value Greaterthan 0");
else
{
   document.getElementById("dollar").value=(valNum/158.93).toFixed(2);
   document.getElementById("yuan").value=(valNum/23.12).toFixed(2);
   document.getElementById("won").value=(valNum/0.14).toFixed(2);
   document.getElementById("riyal").value=(valNum/42.37).toFixed(2);
   document.getElementById("dinar").value=(valNum/522.21).toFixed(2);
}
 }
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
]]></description><link>https://community.secnto.com//post/5833</link><guid isPermaLink="true">https://community.secnto.com//post/5833</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Tue, 28 Jul 2020 07:04:40 GMT</pubDate></item></channel></rss>