第1题:
对于如下代码,描述正确的是哪项? () class Student{ public static void main(String[] args){ Student student = new Student(); } }
第2题:
Which statement explicitly names a constraint?()
第3题:
to have an excellent academic record
to be wise and mature
to be imaginative with a value system to guide him
to be a technical genius with a wide vision
第4题:
You need to design a student registration database that contains several tables storing academic information. The STUDENTS table stores information about a student. The STUDENT_GRADES table stores information about the student's grades. Both of the tables have a column named STUDENT_ID. The STUDENT_ID column in the STUDENTS table is a primary key. You need to create a foreign key on the STUDENT_ID column of the STUDENT_GRADES table that points to the STUDENT_ID column of the STUDENTS table. Which statement creates the foreign key?()
第5题:
new Student()创建了Student对象的一个实例
Student student声明了对象Student的一个引用
class Student声明了一个类
new Student()创建了一个类
Student student 声明了一个类
第6题:
Student student 声明了一个类
new Student()创建了Student 对象的一个实例
Student student 声明了对象Student 的一个引用
class Student 声明了一个类