Question:Given the following code snippet: public function helloWorld(value:int) : String { switch(value){ case 1: return "One"; break; case 2: return "Two"; break; case 3: return "Three"; break; default: return "No Match"; } } What will be returned if we pass call the above function as helloWorld(2):
A One
B Two
C Three
D No match
+ AnswerB
+ Report