MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    Identify the number of the row which has an error 10 REM A program to find the even and odd numbers 20 CLS 30 INPUT "Enter number"; A 40 IF A % 2 = 0 THEN 50 PRINT A; "is even number" 60 ELSE 70 PRINT A; "is odd number" 80 END | 
                            
| A. | 40 | 
| B. | 30 | 
| C. | 80 | 
| D. | 10 | 
| Answer» D. 10 | |