Question 1) Write a program to input the marks of a student and print the result (passing marks = 40 %).
Question 2) Write a program to input the age of the person and check that he is eligible for license for not.
Question 3) Write a program to check that given year is a leap year or not.
Question 4) Write a program to input number and check whether it is even or odd.
Question 5) Write a program to input a number and check that number is divisible by 7 or not.
Question 6) According to Gregorian calendar, it was Monday on the date 01/01/1900. If any year is input through the keyboard write a program to find out what is the day on 1st January of this year.
Question 7) Write a program to input the name and age of a person and display “CHILD” or “TEENAGER” according to the age.
Question 8) Write a program to input the salary of a person and calculate the hra and da according to thefollowing conditions:
Salary HRA DA
5000-10000 10% 5%
10001-15000 15% 8%
Question 9) Write a program to input marks in five subjects of a student and calculate the divisionaccording to the following conditions:
Percentage Division
>=60 First
50-59 Second
40-49 Third
<40 Fail
Question 10) An electricity board charges according to the following rates: For the first 100 units - 40 paisa per unit.For the next 200 units- 50 paisa per unit. beyond 300 units - 60 paisa per unit.All users are charged meter charges also, which are Rs. 50/-
Question 11) Write a program to input monthly salary from the user and calculate the income taxaccording to the following rules:
Salary income tax
>=9000 40% of the salary
7500-8999 30% of the salary
<7500 20% of the salary
Question 12) Write a program to input the selling price and cost price from the user and determine whether the seller has made profit or incurred loss. Also display the value of profit or loss.
Question 13) Write a program to input a character and check that it’s a small letter, capital letter, a digit or a special symbol.
Question 14) Write a program to input two integers and determine that first is multiple of second.
Question 15) Write a program to input a character and check that it’s a vowel or a consonant.