Q1. Write a program to print a string on the screen.
Q2. Write a program to show the use of ‘char’ data type.
Q3. Write a program to print the sum of two numbers.
Q4. Write a program to read two values from user and print there sum.
Q6. Write a program to show the use of chain assignment.
Q7. Write a program to show the use logical operator.
Q8. Write a program to show the use of addition C++ shorthand operator.
Q9. Write a program to show the use of subtraction C++ shorthand operator.
Q10. Write a program to show the use of multiply C++ shorthand operator.
Q11. Write a program to show the use of division C++ shorthand operator.
Q12. Write a program to show the use of modulus C++ shorthand operator.
Q13. Write a program to make use of ternary operator/conditional operator.
Q14. Write a program to make use of ternary operator/conditional operator.
Q16. Write a program to input users age and display a message you can vote or cannot vote.
Q17. Write a program to accept a character and determine whether it’s upper case or lower case.
Q18. Write a program to accept a character and determine whether its number, alphabet or symbol.
Q19. Write a program to accept a number and determine whether it is even or odd.
Q20. Write a program to accept a number and if it is less than 10 then print its square value.
Q22. Write a program to accept percentage and print division accordingly.
Getting started with C++
Q23. Write a program to print a string on the screen.
Q24. Write a program to print sum of two values.
Q25. Write a program to calculate the square of a number.
Q27. Write a program to display the following output using a single cout statement.
Q28. Write a program to read values of w, x, y and z and display the value of P, where
Q29. Write a C++ program that reads temperature in Celsius and displays it in Fahrenheit.
Q30. Write a program that displays on screen
Q32.Write a program to generate the following table:
Use a single cout statement for output.
(Hint : Make use of \n anf \t)
Q33. Write a program that generates the following output:
Q34. Write a C++ program that accepts marks in 5 subjects and outputs average marks.
DATA HANDLING
Q35. Write a C++ program to display ASCII code of a character and vice versa.
Q36. Write a C++ program (using a function) to accept a number and print its cube.
Q37. Write a C++ program to compute the area of a square. Make assumption on your own.
Q38. Write a C++ program to convert a given number of days into years, weeks and days.
Q39. Write a C++ program that accepts a character between a to j and prints next 4 characters.
For the next 200 units – 50 P per unit
Beyond 300 units – 60 P per unit.
All users are charged meter charge also which is R50/-.
Q42. Write a program to read a number n and print n2, n3, n4 and n5.
Q43. Write a program to find area of a triangle.
Q44. Write a program to find whether a given number is even or odd.
Q46. Write a program to convert given inches into its equivalent yards, feet and inches.
(1 yard = 36 inches, 1 foot = 12 inches)
Q47. Write a program to read two numbers and print their quotient and remainder.
Q48. Write a program to compute simple interest and compound interest.
(Hint: Store escape sequence for backspace in an integer variable).
Operators and Expressions in C++
Q50. Write a C++ program to perform chain multiple assignments (as many as possible).
Q59. Write a program to input three integers and print the largest of three.
- If <char> is a lower case letter, the message “The upper case character corresponding to <char> is ….”,
- If <char> is an uppercase letter, the message “The lower case character corresponding to <char> is ….”,
- If <char> is not a letter, the message <char> is not a letter”.