tuples/questions.rst
changeset 434 c8ffd52305ff
parent 425 c943cdbee397
--- a/tuples/questions.rst	Tue Nov 09 23:26:39 2010 +0530
+++ b/tuples/questions.rst	Wed Nov 10 02:12:09 2010 +0530
@@ -58,3 +58,10 @@
 
     Answer: (6, 5, 4, 3, 2, 1)
 
+ 10. What is the output of the code block below::
+
+       a = "hello", "bye", "welcome", "goodnight"
+       type(a)
+
+    Answer: <type 'tuple'>
+