1 2 3 4 5 6 7 8 9 10 |
public class StudentsRunner{ public static void main(String[] args){ Student dom; } } |
1) Construct the Java statement to create the Student object called Dom in the
StudentsRunner
Back to the Student Class
1 2 3 4 5 6 7 8 9 10 |
public class StudentsRunner{ public static void main(String[] args){ Student dom; } } |
1) Construct the Java statement to create the Student object called Dom in the
StudentsRunner
Back to the Student Class