7 LAB 2
Activity 4
<html>
<head>
</head>
<body>
<table bgcolor=black width=700>
<tr bgcolor=yellow>
<th> Photo </th>
<th> Name </th>
<th> Address </th>
</tr>
<tr bgcolor=white align=center>
<td > </td>
<td> Sanjay</td>
<td>Delhi </td>
</tr>
<tr bgcolor=white align=center>
<td > </td>
<td> Divya </td>
<td>Meerut</td>
</tr>
</table>
</body>
</html>
PROJECT 2 (PAGE NO. 10)
<!DOCTYPE html>
<html>
<head>
<title>Some Popular Monuments in India</title>
</head>
<body bgcolor="RED" text="white">
<h1>Some Popular Monuments in India</h1>
<p>
Agra
<ol type="a" style="list-style-type: none;">
<li>–Taj Mahal</li>
</ol>
</p>
<p>
Delhi
<ol type="a" style="list-style-type: none;">
<li>–Red Fort</li>
<li>–Qutub Minar</li>
<li>–Jantar Mantar</li>
</ol>
</p>
<p>
Mumbai
<ol type="a" style="list-style-type: none;">
<li>–Gateway of India</li>
</ol>
</p>
<p>
Hyderabad
<ol type="a" style="list-style-type: none;">
<li>–Golconda Fort</li>
</ol>
</p>
</body>
</html>
PYTHON
ACTIVITY 1
print("You can't believe in God")
print(" Until you believe in Yourself")
ACTIVITY 2
Quotient is: 7.166666666666667 and Remainder is: 1
ACTIVITY 3
Expression Outputa > b and c < b
Falsea < c and b > c
Falseb > a or c > a
Truea < c or a < b
True
ACTIVITY 5
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')
sum = int(num1) + int(num2)
print(sum)
Comments
Post a Comment