# HG changeset patch
# User Anoop Jacob Thomas<anoop@fossee.in>
# Date 1288187745 -19800
# Node ID 894591150f7bb6dc2e6188680820c42aeaef5740
# Parent  0fbe8a18587f575ff7731c54aacdf9e5d6ba87d6
reviewed questions for loops.

diff -r 0fbe8a18587f -r 894591150f7b loops/questions.rst
--- a/loops/questions.rst	Wed Oct 27 19:22:08 2010 +0530
+++ b/loops/questions.rst	Wed Oct 27 19:25:45 2010 +0530
@@ -7,7 +7,7 @@
 
    Answer: False
 
-#. ``for`` can iterate over 
+#. ``for`` loop can iterate over, 
    
    a. list of numbers
    #. list of strings
@@ -85,9 +85,14 @@
 
    Answer: Nothing is printed
 
+.. #[[Anoop: I think more questions on while loop has to be added as
+   for loop was already covered in another LO, these questions can be
+   kept, but it will good if we add few more on while loop]]
+
 Larger Questions
 ----------------
 
 1. A number is called Armstrong number if the sum of cubes of its digits is
    equal to the number itself. Find all the three digit Armstrong numbers.
 
+.. #[[Anoop: Add one more question]]