CS101 ASSIGNMENT 2 SOLUTION 2021 | CS101 ASSIGNMENT 2 FALL 2021 | CS101 ASSIGNMENT 2 2021 | INTRODUCTION TO COMPUTING | VuTech
KINDLY, DON’T COPY PASTE
Visit Website For More Solutions
www.vutechofficial.blogspot.com
Question No. 1
Write the HTML code to make a webpage as depicted in the following diagram (Sample output).
Sample Output:
Note:
Use your VUID as the title of the web page and the contact information should contain your VU email id that is given at the end of the sample page.
- The VU logo should have a link to open the VU website “https://www.vu.edu.pk/”. You can include the VU logo in your webpage from the following URL:
- https://www.vu.edu.pk/App_Themes/Default/Images/menu-img/logo.png
- You have to write your marks, percentage and grade obtained in the intermediate degree.
- Also add a list of your enrolled courses in the current semester as depicted in the diagram.
Write the HTML code in the Notepad editor. Name the Notepad file your VU-ID and save the file with .html extension. Open the .html file and take a screenshot of your output.
Solution:
<html>
<head>
<title>bc123456789</title>
</head>
<body>
<div>
<a href="https://www.vu.edu.pk/">
<img
src="https://www.vu.edu.pk/App_Themes/Default/Images/menu-img/logo.png"
alt="" />
</a>
</div>
<h1>Grade Details</h1>
<h3>Intermediate</h3>
<p><b>Marks Obtained:</b> 913</p>
<i>Percentage 83%</i><br><br>
<i>Grade: A+</i>
<h1>Currently Enrolled Course</h1>
<ul>
<li>CS101</li>
<li>CS201</li>
<li>ENG101</li>
<li>MTH101</li>
<li>VU001</li>
<li>PAK301</li>
</ul>
<b>contact info: bc123456789@vu.edu.pk</b>
</body>
</html>
KINDLY, DON’T COPY PASTE
Visit Website For More Solutions
www.vutechofficial.blogspot.com
Question No. 2
Suppose a refreshment center is offering the following 8 flavors of juices and shakes.
Sr. No. |
Juice |
0 |
Pena Colada |
1 |
Strawberry |
2 |
Pineapple |
3 |
Mango |
4 |
Orange |
5 |
Cookies and cream Milk shake |
6 |
Coffee Milkshake |
7 |
Candy Flavor Milkshake |
|
0 |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
|
Pena Colada |
Strawberry |
Pineapple |
Mango |
Orange |
Cookies and cream Milk Shake |
Coffee Milkshake |
Candy Flavor Milkshake |
Morning Status |
1 |
1 |
1 |
1 |
1 |
1 |
1 |
1 |
Status After 2Pm |
1 |
1 |
1 |
0 |
1 |
0 |
1 |
1 |
Calculate New Status after 2PM using AND Operation (Output is
I only when conditions on both sides of Operator become
True) |
||||||||
Status after 2PM |
1 |
1 |
1 |
0 |
1 |
0 |
1 |
1 |
Status at 4 PM |
1 |
0 |
1 |
0 |
1 |
0 |
0 |
1 |
Morning |
1 |
1 |
1 |
1 |
1 |
1 |
1 |
1 |
Final |
1 |
0 |
1 |
0 |
1 |
0 |
0 |
1 |
The availability of these 8 flavors can be represented in the form of an 8-bit status string e.g. “11111111” where each bit “1” from left to right represents the availability of each flavor in the table from top to bottom respectively. The left-most bit represents the availability status of Pena Colada and the right-most bit represents the availability of Candy Flavor Milkshake. In the status string, “1” means the flavor is available and the unavailability of a flavor will be represented by “0” at the respective bit position.
Considering the above scenario, perform the following operations:
Assuming that all the flavors were available in the morning. If the juices at serial no. 3 and 5 in the table are finished at 2:00 PM, compute the new status string by using the appropriate logical operation.
If the availability status string of juices and shakes is “10101001” at 4:00 PM, check the availability of the “Coffee Milk Shake” using the appropriate logical operation:
Solution:
Coffee Milk Shake is not available.