

InterviewSolution
Saved Bookmarks
1. |
What type of data is: a=[(1,1),(2,4),(3,9)]?(a) Array of tuples(b) List of tuples(c) Tuples of lists(d) Invalid type |
Answer» Correct option is (b) List of tuples Explanation: The variable a has tuples enclosed in a list making it a list of tuples. |
|