Monday, September 11, 2023

Revision and Practical Slips

GRADE V

Internet Services AT



Make a Comic Script as Below





GRADE VI

Introduction To HTML AT


Html Practical












GRADE VII

More on HTML AT


HTML Practical

1. Write HTML code to insert an image with the following attributes in a web page. 

URL of the image - angel.png 

Alternate Text - Angel 

Width of the image - 25 

height of the image - 35 

width of the border = 4



Python Practical

Q.1. Do as directed. 

(a) Write a program to accept the age of the user and check for the following criteria: 

i. If the age of the user is greater than or equal to 65, then print the following statement (Congratulations! You are eligible to avail the facilities of a Senior Citizen.). 

ii. If the age is between 18 to 64, print the following statement (Sorry! You are not a Senior Citizen. You are not eligible to avail the facilities.). 

iii. If the age of the user is less than 18, print the following statement (Sorry! You are not an adult yet.).



GRADE VIII

Python Loops AT


Python Practical


1) Write a program in Python that 

 accepts a number from the user and checks whether it is odd or even. 

 displays the message that the number is odd/even 


2) Write a Python program that 

 accepts a character from the user 

 checks whether it is a digit and displays appropriate message [Example: h is not a digit, 3 is a digit]