Name: Abdullah Shahzad
Class: 9-D
CS Assignment (python codes)
Q1: Write program that will input two variables and
compute their quotient and remainder
Code 1
a = int(input("Enter the first number "))
b = int(input("Enter the second number "))
quotient = a // b
remainder = a % b
print("Quotient", quotient)
print("Remainder", remainder)
Q2: write program to input any three numbers and
print their sum, product and average depending on the
user’s choice
Code 2
num1 = int(input("Enter the first number"))
num2 = int(input("Enter the second number"))
num3 = int(input("Enter the third number"))
print("1. Sum")
print("2. Product")
print("3. Average")
choice = int(input("Enter your choice (1-3): "))
if (choice == 1):
sum = (num1 + num2 + num3)
print("Sum is", sum)
elif (choice == 2):
product = (num1 * num2 * num3)
print("Product is:", product)
elif (choice == 3):
average = (num1 + num2 + num3) / 3
print("Average is", average)
Q3: Write program that will input two numbers in two
variables and interchange their values using temporary
variable than display interchanged value
Code 3
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))
print("Original values: num1 =", num1, "and num2 =", num2)
temp = num1
num1 = num2
num2 = temp
print("Interchanged values: num1 =", num1, "and num2 =",
num2)
Q4: write program to print the numbers, its square and
cubes for all natural numbers from 1 to 15
Code 4
for i in range(1, 16):
print(i, i**2, i**3)
Q5: Write program to display the name of the weekday
on entry of the number of this weekday
Code 5
weekday_num = int(input("Enter a number representing a
weekday (1-7)"))
weekday_names = ["Monday", "Tuesday", "Wednesday",
"Thursday", "Friday", "Saturday", "Sunday"]
weekday_name = weekday_names[weekday_num - 1]
print("The weekday corresponding to the number",
weekday_num, "is", weekday_name)