MCQs > IT & Programming > Actionscript 3 > What's 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'); }

Actionscript 3 MCQs

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");

}

Answer

Correct Answer:

Code Start catch finally

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Actionscript 3 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Actionscript 3 Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it