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 .




 


 
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.

 
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?.


Additional Question ---











Data Handling Sumita arora class 11 solution

Data Handling Sumita arora class 11 Type C

40 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

  1. Bhai keep it up �� blogger pr apki site top pe rank KR rhi hai

    ReplyDelete
    Replies
    1. OK ...😇😇😇😇😇😇😇😇😇😇

      Delete
  2. Can you plz upload the full book of SUSMITA ARORA PYTHON CLASS 11 CBSE

    ReplyDelete
    Replies
    1. you can download book from here ..
      https://sumitaarorabook.wordpress.com/2020/05/19/download-class-11-python-book/

      Delete
  3. Very informative .Keep it up! waiting for more updates.

    ReplyDelete
    Replies

    1. I Have upload all solution of sumita arora class 11 ..
      Please check it ..

      Delete
  4. can you please upload the type b q/a of data handling

    ReplyDelete
    Replies
    1. Ok , i will upload as soon as possible. : )

      Delete
  5. what will be the output if input for both statement is 6+8/2.

    10==input("Enter value 1:")
    10==int(input("Enter value 2 :")

    ReplyDelete
    Replies
    1. (a)= False
      (b)= It will give error, because in second line int function cannot convert given input in integer form.

      Delete
  6. Bhai very very thanks. Keep it up.

    ReplyDelete
  7. Replies
    1. 28 question present in chapter conditional and iterative ...

      Delete
  8. Bro 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

    ReplyDelete
    Replies
    1. Ok , I will upload it as soon as possible : )

      Delete
  9. q23 from flow of control type c please reply fast

    ReplyDelete
  10. Bhai type b aur type c ke saare questions kab upload honge

    ReplyDelete
  11. Aap sirf yahi bol rhe ho I will upload very soon

    ReplyDelete
  12. Write a program to calculate and print the sums of even or odd integers of the first n natural numbers
    Answer for this

    ReplyDelete
    Replies
    1. odd = 0
      even = 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.

      Delete
  13. Write a program that takes sales for four quarters and then displays total sales and average sales made.

    ReplyDelete
    Replies
    1. sal1 = int(input("Enter first sales :-"))
      sal2 = 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)

      Delete
  14. can you please upload the practical book solutions for python class 11&12

    ReplyDelete
  15. Can you tell that how to pragram 4 subject marksheet

    ReplyDelete
    Replies
    1. At first input all subjects number then calculate percentage all subject then print it : )

      Delete
  16. Can you send this program for 4
    Subject marksheet pleaseeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee🥺😿😿

    ReplyDelete
    Replies
    1. I dont know programming as well

      Delete
    2. sub1 = int(input("Enter first Subject :-"))
      sub2 = 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)

      Delete
  17. thank u so much

    ReplyDelete
  18. Ay yooooo, Can u send more qns related to all CS Topics. Thank you, Pakistan Zindabad and Allahuakbar.

    ReplyDelete

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post