A.) /* This is a comment */ B.) ' This is a comment C.) // This is a comment D.) # This is a comment
A.) To continue to the next iteration of the loop B.) exit the loop and continue with the next statement after the loop C.) To restart the loop D.) To create a new loop
A.) public B.) protected C.) private D.) package
A.) To raise an exception B.) To define a loop C.) To handle exceptions and errors D.) To declare a variable
A.) array[] arr B.) arr[] = new array[] C.) int[] arr D.) arr = []
A.) &&& B.) || C.) & D.) &&
A.) To exit a loop B.) To declare a variable C.) To create an object D.) To transfer control to a block passed to a method
A.) def self.my_method B.) my_method.def C.) class my_method D.) method.my_method
A.) To execute code a fixed number of times B.) To execute code based on a condition C.) To define a function D.) To declare a variable
A.) constant x = 10 B.) x = 10 (constant) C.) CONST x = 10 D.) X = 10