Question:Given the following code snippet, what will be the output when helloWorld( ) is run? public function helloWorld() : void { trace("Code Start" ); try{ throw new Error ("Test_Error"); trace("try"); } catch(err : Error) { trace("catch"); return; }finally{ trace("finally"); } trace("Code End"); }
A Code Start try catch finally Code End
B Code Start catch finally
C Code Start try catch finally
D Code Start catch
+ AnswerB
+ Report