Skip to main content

Programming Questions

Programming Questions with source code

Program 1:

Program to obtain side of a square and then calculate its area.

 Input code: 
a=int(input("Enter the side of square:"))
sq=a**2
print("Area of square is :",sq)

Program 2:

Program to obtain length and breadth of a rectangle and calculate its area.

Input Code: 
l=int(input("Enter length of the rectangle:"))
b=int(input ("Enter breadth of the rectangle:"))
area=l*b
print("Area of rectangle is:",area)

Program 3:

Program to obtain height and base of a triangle and calculate its area.

 Input Code:
l=int(input("Enter length of triangle"))
b=int(input("Enter base of triangle"))
area=0.5*b*h
print("Area of triangle is:",area)

Program 4:

Program to obtain a number and print its square and cube.

Input Code: 
num=float(input("Enter the number:"))
sq=num*num
cube=num*num*num
print("Square of",num,"is",sq)
print("Cube of",num,"is",cube) 

Practice Programming Questions

Program1: Write a program to display area of parallelogram.

Program2: Write a program to obtain BMI of a person.

Program3: Write a program to obtain square root of a number.

***Any doubts comment or email***

Comments

Post a Comment

Popular posts from this blog

Variables & Type of Literals and Operators

Variables in Python Variables are the character(s) used to store a value to be used further in the program. For example, when you want to store roll number of a student in the program then we use some variables to store roll number data:                      Roll_no = 35 In the above statement we use an identifier(Roll_no) to store roll number of a student of integer type. Then we can call Roll_no a numeric variable.                      Em_name = “Sanu” Then we can call Em_name a string variable.   IMPORTANT: In Python, you cannot use integer, float, complex number, expression as a variable as it will raise an error. You can only use characters, or identifiers to store any value. For example: 36=Id 25=x 2a/c=20     In Python, you can use multipl...