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 

+ Answer
+ Report
Total Preview: 469

Copyright © 2025. Powered by Intellect Software Ltd