Practice Problem
Problem Set 1: Arithmetic Operators (17)
Find the Summation of two numbers.
Find the Difference between two numbers.
Find the Product of two numbers.
Find the Quotient of two numbers.
Find the Reminder of two numbers.
Find the Average of three numbers.
Find the Area of a Triangle using Base and Height.
Find the Area of a Triangle using the length of 3 sides.
Find the Area of a Circle using Radius.
Convert Temperature Celsius to Fahrenheit.
Convert Temperature Fahrenheit to Celsius.
Convert Second to MM:SS.
Convert Second to HH:MM:SS.
Convert Second to DD:HH:MM:SS.
Add a HH:MM:SS with another time in HH:MM:SS (Consider 24 Hours Format)
Add a HH:MM:SS with another time in HH:MM:SS (Consider 12 Hours Format)
Add N day to a Date in DD/MM/YYYY format.
Problem Set 2: Conditional Statement (14)
Find Pass/ Fail.
Find Voter or Not Voter.
Is a number Positive/ Negative/ Zero?
Find the Maximum between 2 numbers.
Find the Minimum between 2 numbers.
Find the Maximum between 3 numbers.
Find the Minimum between 3 numbers.
Determine whether a number is EVEN or ODD.
Check is a year Leap Year or Not.
Find Grade of Exam.
Print a digit into a word.
Validate a Time. (Consider 24 Hours Format)
Validate a Time. (Consider 12 Hours Format)
Validate a Date.
Problem Set 3: Loop (29)
Printing Series (4)
1, 2, 3, 4, ⋯⋯⋯, N
1, 3, 5, 7, ⋯⋯⋯, 99
2, 4, 6, 8, ⋯⋯⋯, N
1, 1, 2, 3, 5, 8, 13, 21, 34, ⋯⋯⋯, N
Summation of Series (8)
1 + 2 + 3 + 4 + ⋯⋯ + N
1 + 3 + 5 + 7 + ⋯⋯⋯ + N
2 + 4 + 6 + 8 + ⋯⋯⋯ + N
1^2 + 3^2 + 5^2 + 7^2 + ⋯⋯⋯ + (101)^2
2^3 + 4^3 + 6^3 + 8^3 + ⋯⋯⋯ + N^3
N! = 1.2.3.4. ⋯⋯⋯ .N
Summation of N Number (Use Array)
Average of N Number (Use Array)
More Exercise (4)
Count CGPA
Multiplication Table of N
Find the Maximum between N Numbers. (Use Array)
Find the Minimum between N Numbers. (Use Array)
Draw the following diagrams (13)
1
N=5
* * * * * * * * * * * * * * * * * * * * * * * * *
2
N=5
* * * * * * * * * * * * * * *
3
N=5
* * * * * * * * * * * * * * *
4
N=5
* * * * * * * * * * * * * * *
5
N=5
* * * * * * * * * * * * * * *
6
N = 5
* * * * * * * * * * * * * * * * * * * * * * * * *
7
N = 5
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
8
N = 5
* * * * * * * * * * * * * * * * * * * * * * * * *
9
N = 5
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
10
N=5
* * * * * * * * * * * * * * *
11
N=5
* * * * * * * * * * * * * * *
12
N=5
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
13
N = 5
* * * * * *
* * * * * * * * * * * * * * * * * * *
Last updated