You are on page 1of 2

GLOBAL MISSION INTERNATIONAL SCHOOL

Sanskardham campus, Bopal-Ghuma-Sanand Road, Ta. Sanand,


Ahmedabad-382115
Std-11 Subject:- Computer Science (Journal) Date:- 28-9-20

1) WAP to obtain principal amount, rate of interest and time from the use and compute
simple interest and compound interest.
2) Write a program to find area of triangle.
3) Write a program to read three numbers in three variables and swap first two variables
with the sum of first and second and third numbers respectively.
4) Write a program to input a number and print its first five multiples.
5) Write a program to obtain temperature in Celsius and convert it into Fahrenheit using
formula. (Cx9/5+32=F)
6) Write a program to obtain five subjects marks and then display sum and average.
7) Write a program to obtain x,y,z from user and calculate expression :- 4x4+3y3+9z+6π
8) Write a program to take year as input and check if it is a leap year or not.
9) Write a program to take two numbers and print if the first number is fully divisible by
second number or not
10) Write a program to take a 2-digit number and then print the reversed number.
Ex-input -25 output-52

Submission Date:- 3-10-20 (Hardcopy ,Softcopy)


#WAP that generates the following output 5 10 9

a=5
b=a*2
c=b-1
print(a)
print(b)
print(c)

output

You might also like