- Wake up
- Do exercise
- Brush teeth
- Take bath
- Get ready
- Take lunch box
- Revise chapters
- Take bus
- Get off the bus
- Reach school or college
Advertisements
Advertisements
प्रश्न
Following is an algorithm for going to school or college. Can you suggest improvements in this to include other options?
Reach_School_Algorithm
- Wake up
- Get ready
- Take lunch box
- Take the bus
- Get off the bus
- Reach school or college
उत्तर
APPEARS IN
संबंधित प्रश्न
Write an algorithm that performs the following:
Ask a user to enter a number. If the number is between 5 and 15, write the word GREEN. If the number is between 15 and 25, write the word BLUE. if the number is between 25 and 35, write the word ORANGE. If it is any other number, write that ALL COLOURS ARE BEAUTIFUL.
Write an algorithm that accepts four numbers as input and finds the largest and smallest of them.
Write an algorithm to display the total water bill charges of the month depending upon the number of units consumed by the customer as per the following criteria:
- for the first 100 units @ 5 per unit
- for next 150 units @ 10 per unit
- more than 250 units @ 20 per unit
Also, add meter charges of 75 per month to calculate the total water bill.
Following is an algorithm to classify numbers as “Single Digit”, “Double Digit” or “Big”.
Classify_Numbers_Algo
INPUT Number
IF Number < 9
"Single Digit"
Else If Number < 99
"Double Digit"
Else
"Big"
Verify for (5, 9, 47, 99, 100, 200) and correct the algorithm if required.
For some calculations, we want an algorithm that accepts only positive integers up to 100.
Accept_1 to 100_Algo
INPUT Number
IF (0 <= Number) AND (Number <= 100)
ACCEPT
Else
REJECT
- On what values will this algorithm fail?
- Can you improve the algorithm?