WRITE AN ALGORITHM TO CHECK YOU ARE ELIGIBLE FOR VOTING OR NOT
Answers
Answered by
4
Answer:
Start
Input age
Check if age is greater than 18
if yes, display "eligible to vote"
else display "not eligible to vote"
Stop
Answered by
1
Answer:-
This is the required algorithm.
STEP 1: START
STEP 2: Input Age.
STEP 3: If age>=18 display "Eligible for voting." else display that "Not Eligible for voting."
STEP 4: STOP
Similar questions