Question 1) Write a program to input roll number, name, marks and phone of a student and display the values.
Question 2) Write a program to input roll number, name and marks of a student in 5 subjects and compute the total and average marks. Display all the values.
Question 3) Write a program to determine the square of a given number.
Question 4) Write a program to input a number and print its cube.
Question 5) Write a program to input radius and compute the area and circumference of a circle.
Question 6) Write a program to input length and breadth of a rectangle and calculate the area and perimeter.
Question 7) Write a program to input 4 integers a, b, c, d and check that the equation a3+ b3+c3= d3 is satisfied or not.
Question 8) Write a program to input side of a square and calculate the area.
Question 9) Write a program to input principle, rate and time from the user and compute the simple interest and total amount. Display all the values.
Question 10) Write a program to input the number the days from the user and convert it into years, weeks and days.
Question 11) Write a program to input a character and print its ASCII value.
Question 12) Write a program to input a number and print its equivalent character code.
Question 13) Write a program to find out the quotient and remainder of two numbers. (Without using modulus ( % ) operator)
Question 14) Write a program to input two numbers and print their quotient and remainder.
Question 15) Write a program to input two numbers and print the greatest using conditional operator.