Multiple Choice
What is the output of the following program?
Data = [2, 3, 9]
Temp = [[x for x in[data]]
For x in range(3) ]
Print (temp)
A) [[[2, 3, 9]], [[2, 3, 9]], [[2, 3, 9]]]
B) [[2, 3, 9], [2, 3, 9], [2, 3, 9]]
C) [[[2, 3, 9]], [[2, 3, 9]]]
D) None of these
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q8: What is the output of the following
Q9: What will be displayed by the following
Q10: What is the output of the following
Q11: Which of these is not a core
Q12: Which of the following formatting options can
Q14: What is the output of the following
Q15: Which function overloads the >> operator?<br>A)more()<br>B)gt()<br>C)ge()<br>D)rshift()
Q16: What is the output of the following
Q17: What is the output of the following
Q18: What is the output of the following