Question: What will this statement return?
- a dictionary with x as a key, and x squared as its value; from 1 to 100
- a dictionary with x as a key, and x squared as its value; from 1 to 99
- a set of tuples, consisting of (x, x squared); from 1 to 99
- a list with all numbers squared from 1 to 99
Answer: The correct answer of the above question is Option B:a dictionary with x as a key, and x squared as its value; from 1 to 99