tuples/questions.rst
changeset 425 c943cdbee397
parent 232 da873a5ac918
--- a/tuples/questions.rst	Tue Nov 09 16:16:55 2010 +0530
+++ b/tuples/questions.rst	Tue Nov 09 16:51:00 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'>
+