Problem 5
One feet \(=12.0\) inches, one inch \(=2.54\) centimeters; write a program to compute inches and feet of \(76.2 \mathrm{cms}\).
Problem 7
In what way does the switch statement differ from if-else statement?
Problem 8
Write a program to get week day number \((1 \ldots 7)\) from the user and then If day \(=1\) print "Have a nice day" If day \(=2,3,4,5,6\) print "Welcome become to working day" If day \(=7\) print "Have a nice week end day" Use the if-else, if-else-if ladder and switch case structure
Problem 9
Write a program; get the input marks from the user through keyboard by checking the following conditions. If marks \(<40-\) fail If marks \(>50-\) good If marks \(>75\) - very good If marks \(>90-\) excellent
Problem 10
A frog starts climbing \(30 \mathrm{ft}\) well. Each hour frog climbs \(3 \mathrm{ft}\) and slips back \(2 \mathrm{ft}\). How many hours does it take to reach top and get out?
Problem 11
Differentiate entry control loop and exit control statements.
Problem 13
Write a program to solve linear and quadratic equations.
Problem 17
What is automatic type conversion? How are widening and narrowing achieved?