πŸ“Š Problem Solving and Python Programming
Q. for y in l2]
  • (A) [4, 8, 12, 5, 10, 15, 6, 12, 18]
  • (B) [4, 10, 18]
  • (C) [4, 5, 6, 8, 10, 12, 12, 15, 18]
  • (D) [18, 12, 6, 15, 10, 5, 12, 8, 4]
πŸ’¬ Discuss
βœ… Correct Answer: (C) [4, 5, 6, 8, 10, 12, 12, 15, 18]

Explanation: the code shown above returns x*y, where x belongs to the list l1 and y belongs to the list l2. therefore, the output is: [4, 5, 6, 8, 10, 12, 12, 15, 18].


Explanation by: Mr. Dubey
the code shown above returns x*y, where x belongs to the list l1 and y belongs to the list l2. therefore, the output is: [4, 5, 6, 8, 10, 12, 12, 15, 18].

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
667
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
99%
Success Rate