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
B
C
D
Hello World
B
Blank string
C
Program execution ends with a Runtime error
D
Compilation error
Note: Not available