

MCQOPTIONS
Saved Bookmarks
1. |
What is the output for the following code:languages = ["java", "c++", "python"]for x in languages :if x == "c++":continueprint(x) |
A. | java |
B. | javapython |
C. | javac++python |
D. | c++python |
Answer» C. javac++python | |