English

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

Advertisements
Advertisements

Question

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
  1. On what values will this algorithm fail?
  2. Can you improve the algorithm?
Short Note

Solution

If we enter 0 then this algorithm will fail.

Correct algorithm:

INPUT Number
IF (0 < Number) AND (Number <= 100)
   ACCEPT
   Else
      REJECT
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 18. | Page 85
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×