Class 11 CS Chapter 6 Back Exercise Part C Solutions Sumita Arora New Syllabus / Listing11CSSA, Uncategorized / By Neha 1. Write a program that displays a joke. But display the punchline only when the user presses enter key. (Hint. You may use input( )) print('How many ...click here for answer 2. Write a program to read today’s date (only del part) from user. Then display how many days are left in the current month. d, m, ...click here for answer 3. Write a program that generates the following output : 5 10 ...click here for answer 4. Modify above program so as to print output as 5@10@9. # code ...click here for answer 5. Write the program with maximum three lines of code and that assigns first 5 multiples of a number to 5 variables and then print them. # Code ...click here for answer 6. Write Python program that accepts marks in 5 subjects and outputs average marks. # Code ...click here for answer 7. Write a short program that asks for your height in centimetres and then converts your height to feet and inches. (1 foot = 12 inches, 1 inch = 2.54 cm). # Code ...click here for answer 8. Write a program to read a number n and print n^2, n^3 and n^4. # Code ...click here for answer 9. Write a program to compute simple interest and compound interest. # Code ...click here for answer 10. Write a program to input a number and print its first five multiples. # Code ...click here for answer 11. Write a program to read details like name, class, age of a student and then print the details firstly in same line and then in separate lines. Make sure to have two blank lines in these two different types of prints. # Code ...click here for answer 12. Write a program to read three numbers in three variables and swap first two variables with the sums of first and second, second and third numbers respectively. # Code ...click here for answer 13. Write a program that accepts cost of goods sold (cgos) revenue generated, operating costs (oc) and prints Gross profit, net profit and net profit percentage. [Hint : Net profit = Revenue – egos – oc] # Code ...click here for answer