SITEMAP Basic C program If the marks obtained by a student in five different subject are input through the keyboard, find out the aggregate marks and percentage marks obtained by the student. Assume that the maximum marks that can be obtained by a student in each subject is 100. Ramesh's basic salary is input through the keyboard.His dearness allowance is 40% of basic salary and house rent is 20% of basic salary write a program to calculate his gross salary. Temperature of a city in farenheit degrees is input through the keyboard. Write a program to convert this temperature into centigrade degrees.If a five digit number is imput through the keyboard, write a program to reverse the number.If a five digit number is input through the keyboard, write a program to calculate the sum of its digits.If a four digit number is through the keyboard, write a program to obtain the sum of the first and the last digit of this number.The distance between two cities (in km.) is input through through the keyboard .Write a program to convert and print this distance in meters , feet , inches , and centimeters.The length and width of a rectangle and radius of a circle are input through the keyboard . write a program to calculate the area & perimeter of the rectangle and the area & circumference of a circle.Two numbers are input through the keyboard into two locations C and D. write a program to interchange the contents of C and D .Write a program for Calculating of simple interest. - New!If statement ProgramThe current year and the year in which the employee joined the organisation are entered through the keyboard . If the number of years for which the employee has served the organisation is greater than 3 years then the bonus of Rs.2500/- is given to the employee. If the years of service is not greater than 3, then the program should not do anything. - New!While purchasing certain items, a discount of 10% is offered if the quantity purchased is more than 1000. If quantity and price per item are input through the keyboard, write a program to calculate the total expenses. - New!If- else statement ProgramAny integer is input through the keyboard. Write a program to determine whether it is an odd or even number. - New!If the cost price and selling price of an item is input through the keyboard, write a program to determine whether the seller has made profit or incurred loss. Also determine how much profit he made or loss he incurred. - New!In a company an employee is paid as :- if his basic salary is less than Rupees 1500, House rent allowance = 10% of basic salary and daily allowance = 90% of basic salary. If his salary is either equal to or above Rupees 1500 then house rent allowance = rupees 500 and daily allowance = 90% of basic salary. If the employee's salary is input through the keyboard write a program to find his gross salary. - New!Logical operator programA company insures its driver in following cases: ... - New!The marks obtained by a student in 5 different subjects are input through the keyboard. The students gets a division as per the following rules: Percentage above or equal to 60- First division . Percentage between 50 and 59- Second division. Percentage between 40 and 49- Third division. percentage less than 40- Fail. Write a program to calculate the division obtained by the student using logical operator. - New!Nested if else statementAny year is input through the keyboard. Write a program to determine whether the year is a leap year or not. - New!else-if statement programThe marks obtained by a student in 5 different subjects are input through the keyboard. The students gets a division as per the following rules: Percentage above or equal to 60- First division . Percentage between 50 and 59- Second division. Percentage between 40 and 49- Third division. percentage less than 40- Fail. Write a program to calculate the division obtained by the student using else if condition. - New!