Class 12 CS Chapter 3 Back Exercise Part C Solutions Sumita Arora New Syllabus / listing12CSSA, Uncategorized / By Neha 1. Write a function that takes amount-in-dollars and dollar-to-rupee conversion price; it then returns the amount converted to rupees. Create the function in both void and non-void forms. ...click here for answer 2. Write a function to calculate volume of a box with appropriate default values for its parameters. Your function should have the following input parameters : ...click here for answer 3. Write a program to have following functions : ...click here for answer 4. Write a function that receives two numbers and generates a random number from that range. Using this function, the main program should be able to print three numbers randomly. ...click here for answer 5. Write a function th^t receives two string arguments and checks whether they are same-length strings (returns True in this case otherwise false). ...click here for answer 6. Write a function namely zzfhRoot( ) that receives two parameters x and n and returns nth root of x i.e., ...click here for answer 7. Write a function that takes a number n and then returns a randomly generated number having exactly n digits (not starting with zero) e.g., if n is 2 then function can randomly return a number 10-99 but 07, 02 etc. are not valid two digit numbers. # Code ...click here for answer 8. Write a function that takes two numbers and returns the number that has minimum one’s digit. [For example, if numbers passed are 491 and 278, then the function will return 491 because it has got minimum one’s digit out of two given numbers (491’s 1 is < 278's 8)]. ...click here for answer 9. Write a program that generates a series using a function which takes first and last values of the series and then generates four terms that are equidistant e.g., if two numbers passed are 1 and 7 then function returns 1 3 5 7. # Code ...click here for answer