Question:Given the following code snippet: public class Student { public function Student () { trace("Student variable created"); } public function hello () : String { return "Hello World"; } } ------------------------------------------------------- public function helloWorld () : String { var student1 : Student; return student1.hello (); } What will the function helloWorld() return? 

A Hello World 

B Blank string 

C Program execution ends with a Runtime error 

D Compilation error 

+ Answer
+ Report
Total Preview: 428

Copyright © 2025. Powered by Intellect Software Ltd