填空题

在数据库技术中,实体集之间的联系可以是一对一或一对多或多对多的,那么“学生”和“可选课程”的联系为______。

【参考答案】

多对多
<上一题 目录 下一题>
热门 试题

填空题
程序流程图中的菱形框表示的是______。
单项选择题
阅读下面程序 public void test() { try{ sayHello(); System.out.println( hello ); } catch(ArrayIndexOutOfBoundException e) { System.out.println( ArrayIndexOutOfBoundException ); } catch(Exception e) { System.out.println( Exception ); } finally { System.out.println( finally );} } 如果sayHello()方法正常运行,则test()方法的运行结果将是
A.Hello
B.ArraylndexOutOfBondsException
C.Exception  Finally
D.Hello  Finally
相关试题
  • 表达式(10 * 49.3)的类型是__...
  • 在Java语言中,用______修饰符定义的...
  • Swing中用来表示工具栏的类是javax.swing...
  • 代码System.out.println(066)的输出...
  • 抛出异常的语句是______语句。