填空题

在关系A(S,SN,D) 和关系B(D,CN,NM)中,A的主关键字是S,B的主关键字是D,则称______是关系A的外码。

【参考答案】

D
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序: #include<iostream> using namespace std; void f1(int& x, int& y)int z=x; x=y; y=z;) void f2(int x, int y)int z=x; x=y; y=z; intmain() int x=10, y=26; f1(x, y); f2(x, y); cout<<y<<end1; return 0; 运行时的输出结果是( )。
A.10
B.16
C.26
D.36
单项选择题
有如下程序: #include<iostream> using namespace std; int main() int a[6]=23, 15, 64, 33, 40, 58; int s1, s2; s1, s2=a[0]; for(int*p=a+1; p<a+6; p++) if(s1>*p)s1=*p; if(s2<*p)s2=*p; cout<<s1+s2<<end1; return 0; 运行时的输出结果是( )。
A.23
B.58
C.64
D.79
相关试题
  • 下列程序的输出结果为1 2.3 2 4....
  • 下列程序的输出结果为-5 8-3 4,请...
  • 请在横线处填写派生类Derived的继承方式,...
  • 函数Min的功能是返回具有n个元素的数组arra...
  • 下列程序的输出结果为012,请根据注释将...