Data Handling || Type C || Sumita Arora || Class 11 || Computer science || Information practices || Solution
Q1. Write a program to obtain principal amount, rate of interest and time from user and compute simple interest.
Q2. Write a program to obtain temperature of 7 days (Monday….sunday) and then display average temperature of the week .
Q8. Try writing program (similar to previous one ) for three digit number i.e. , if you input 123 , the program should print 321 .
Q9. Write a program to take two inputs for day, month and then calculate which day of the year, the given date is .for simplicity; take 30 days for all month.For example:If you give input as: day = 3, month = 2Then it should print “day of the year: 33”.
Q9. Write a program to take two inputs for day, month and then calculate which day of the year, the given date is .for simplicity; take 30 days for all month.For example:If you give input as: day = 3, month = 2Then it should print “day of the year: 33”.
Q10. Write a program that asks a user for a number of years, and then prints out the number of days, hours, minutes and seconds in that number of years.
How many years? 10
10.0 years is:
3650.0 days
87600.0 hours
5256800:0 minutes
315360000.0 seconds
Q11. Write a program that inputs an age and print age after 10 years as shown below:
What is your age? 17
In ten years, you will be 27 years old!
Q12. Write a program whose three sample runs are shown below:
Sample Run 1
Random number between 0 and 5 (A): 2
Random number between 0 and 5 (B): 5.
A to the power = 32
Sample Run 2
Random number between o and 5 (A): 4
Random number between 0 and 5 (B): 13.
A to the power = 64
Sample Run 3
Random number between 0 and 5 (A): 1
Random number between 0 and 5 (B): 1.
A to the power =1
Q13. Write a program that generates six random numbers in a sequence created with (start, stop, step). Then print the mean, median and mode of the generated numbers.
How many years? 10
10.0 years is:
3650.0 days
87600.0 hours
5256800:0 minutes
315360000.0 seconds
Q11. Write a program that inputs an age and print age after 10 years as shown below:
What is your age? 17
In ten years, you will be 27 years old!
Q12. Write a program whose three sample runs are shown below:
Sample Run 1
Random number between 0 and 5 (A): 2
Random number between 0 and 5 (B): 5.
A to the power = 32
Sample Run 2
Random number between o and 5 (A): 4
Random number between 0 and 5 (B): 13.
A to the power = 64
Sample Run 3
Random number between 0 and 5 (A): 1
Random number between 0 and 5 (B): 1.
A to the power =1
Q13. Write a program that generates six random numbers in a sequence created with (start, stop, step). Then print the mean, median and mode of the generated numbers.
Q14. Write a program to generate 3 random integers between 100 and 999 which is divisible by 5.
Q15. Write a program to generate 6 digit random secure OTP between 100000 to 999999.
Q16. Write a program to generate 6 random numbers and then print their mean, median and mode.
Q17. Write a program to find a side of a right angled triangle who’s two sides and an angle is given.
Q18. Write a program to calculate the radius of a sphere whose area (4Ï€r2) is given.
Q19. Write a program that inputs a string and then prints it equal to number of times its length.
e.g.
Enter string : "eka"
Result ekaekaeka
Q20. Find the volume of the cylinder as shown:
Who’s radius is 6cm and height is 15cm.
Q21. Write a program to calculate the area of an equilateral triangle.
Q22. Write a program to input the radius of a sphere and calculate its volume.
Q23. Write a program to calculate amount payable after simple interest.
Q24. Write a program to calculate amount payable after compound interest.
Q25. Write a program to computer (a + b)3 using the formula a3 + b3 +3a²b+3ab2?.
Q15. Write a program to generate 6 digit random secure OTP between 100000 to 999999.
Q16. Write a program to generate 6 random numbers and then print their mean, median and mode.
Q17. Write a program to find a side of a right angled triangle who’s two sides and an angle is given.
Q18. Write a program to calculate the radius of a sphere whose area (4Ï€r2) is given.
Q19. Write a program that inputs a string and then prints it equal to number of times its length.
e.g.
Enter string : "eka"
Result ekaekaeka
Q20. Find the volume of the cylinder as shown:
Who’s radius is 6cm and height is 15cm.
Q21. Write a program to calculate the area of an equilateral triangle.
Q22. Write a program to input the radius of a sphere and calculate its volume.
Q23. Write a program to calculate amount payable after simple interest.
Q24. Write a program to calculate amount payable after compound interest.
Q25. Write a program to computer (a + b)3 using the formula a3 + b3 +3a²b+3ab2?.
Bhai keep it up �� blogger pr apki site top pe rank KR rhi hai
ReplyDeleteOK ...😇😇😇😇😇😇😇😇😇😇
DeleteCan you plz upload the full book of SUSMITA ARORA PYTHON CLASS 11 CBSE
ReplyDeleteyou can download book from here ..
Deletehttps://sumitaarorabook.wordpress.com/2020/05/19/download-class-11-python-book/
Very informative .Keep it up! waiting for more updates.
ReplyDelete
DeleteI Have upload all solution of sumita arora class 11 ..
Please check it ..
Great Job!!
ReplyDeleteThanks..
DeletePractical book solution
Deletewhere
can you please upload the type b q/a of data handling
ReplyDeleteOk , i will upload as soon as possible. : )
Deletewhat will be the output if input for both statement is 6+8/2.
ReplyDelete10==input("Enter value 1:")
10==int(input("Enter value 2 :")
(a)= False
Delete(b)= It will give error, because in second line int function cannot convert given input in integer form.
Bhai very very thanks. Keep it up.
ReplyDeleteWelcome : ) : )
DeleteIn type c there 25 questions
ReplyDelete28 question present in chapter conditional and iterative ...
DeleteBro where are the answers for the remaining questions...In Type B,there are totally 24 questions,but u uploadedupto 18 questions only...In type C,there are25 questions out of which u uploaded only 11...Needed it urgently bro...need a reply
ReplyDeleteOk , I will upload it as soon as possible : )
Deleteq23 from flow of control type c please reply fast
ReplyDeleteOk . I will upload very soon : )
DeleteBhai type b aur type c ke saare questions kab upload honge
ReplyDeleteI have uploaded..... : )
DeleteAap sirf yahi bol rhe ho I will upload very soon
ReplyDeleteI will upload all question today .. : )
DeleteWrite a program to calculate and print the sums of even or odd integers of the first n natural numbers
ReplyDeleteAnswer for this
odd = 0
Deleteeven = 0
n = input("Enter n")
for i in range(n+1):
if i % 2 == 0 :
even += i
else :
odd += i
please write in python with proper indentation.
Hey thnx for the solutions
ReplyDeleteWelcome : )
DeleteWrite a program that takes sales for four quarters and then displays total sales and average sales made.
ReplyDeletesal1 = int(input("Enter first sales :-"))
Deletesal2 = int(input("Enter second sales :-"))
sal3 = int(input("Enter third sales :-"))
sal4 = int(input("Enter fourth sales :-"))
total = sal1 + sal2 + sal3 + sal4
avg = total/4
print("Total sales :-",total)
print("Average sales :-",avg)
can you please upload the practical book solutions for python class 11&12
ReplyDeletePlease check the website, answer have uploaded.
Deletelink:- https://www.pathwalla.com/2020/01/sumita-arora-all-question-and-answer.html
Can you tell that how to pragram 4 subject marksheet
ReplyDeleteAt first input all subjects number then calculate percentage all subject then print it : )
DeleteCan you send this program for 4
ReplyDeleteSubject marksheet pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee🥺😿😿
I dont know programming as well
Deletesub1 = int(input("Enter first Subject :-"))
Deletesub2 = int(input("Enter second Subject :-"))
sub3 = int(input("Enter third Subject :-"))
sub4 = int(input("Enter fourth Subject :-"))
total = sub1 + sub2 + sub3 + sub4
percen = (total / 400) * 100
print("Total Number :-",total)
print("Percentage :-",percen)
thank u so much
ReplyDeleteAy yooooo, Can u send more qns related to all CS Topics. Thank you, Pakistan Zindabad and Allahuakbar.
ReplyDeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )