0% found this document useful (0 votes)
23 views

Class VI Python Programs

Uploaded by

Virendra Mishra
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

Class VI Python Programs

Uploaded by

Virendra Mishra
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 3

Q. 1 Write a Python program to add two numbers and show the result.

Ans a=10

b=20

c=a+b

print("The sum of two numbers is ",c)

Q. 2 Write a Python program to show the difference of two numbers.

Ans a=10

b=20

c=a-b

print("The difference of two numbers is ",c)

Q. 3 Write a Python program to show the product of two numbers.

Ans a=10

b=20

c=a*b

print("The Product of two numbers is ",c)

Q. 4 Write a Python program to ask the user's name and greet him 'Good Morning'.

Ans name=input("Enter your name:")

print("Good Morning ",name)

Q. 5 Write a Python program to check whether a number given by user is a positive or


negative number.

Ans a=int(input("Enter any number:")


if a>0:

print("Positive")

else:

print("Negative")

Q. 6 Write a Python program to check whether a person can vote in the election or not.
[age>=18 can vote]

Ans age=int(input("Enter your age "))

if age>=18:

print("You can vote!")

else:

print("You cannot vote!")

Q. 7 Write a Python program to check whether a student is pass in an exam or not.[marks>40


is pass]

Ans marks=int(input("Enter your marks:"))

if marks>40:

print("Pass")

else:

print("Fail")

Q. 8 Write HTML code to design a web page with the following functionalities.

1. The title of the page should be “Good Morning to All".

2. The background colour of the page should be yellow.

3. There should be one paragraph (2-3 lines) of your choice.

4. There should be an image inserted of your choice on the page.


5. There should be a heading level 2 inserted after the paragraph.

6. There should be a horizontal line inserted at the end of the page.

Ans <HTML>

<HEAD><TITLE>Good Morning to All</TITLE>

</HEAD>

<BODY BGCOLOR="YELLOW">

<P> Hello freinds this is a sample paragraph</P>

<IMG SRC="Pic.jpg">

<H2>This page is designed by me</H2>

</BODY>

</HTML>

You might also like