English

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 - Computer Science (Python)

Advertisements
Advertisements

Question

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.

Short Note

Solution

The correct algorithm is:

INPUT Number
IF Number < 10
"Single Digit"
  Else If Number < 100
    "Double Digit"
      Else
         "Big"
shaalaa.com
Representation of Algorithms
  Is there an error in this question or solution?
Chapter 4: Introduction to Problem Solving - Exercise [Page 85]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 4 Introduction to Problem Solving
Exercise | Q 17. | Page 85
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×