A. /*This comment has more than one line*/ B. //This comment has more than one line// C. <!--This comment has more than one line-->
A. ' This is a comment B. <!--This is a comment--> C. //This is a comment
A. for (i <= 5; i++) B. for (i = 0; i <= 5; i++) C. for (i = 0; i <= 5) D. for i = 1 to 5