单项选择题

有三个关系R、S和T如下:
由关系R和S通过运算得到关系T,则所使用的运算为

A.并
B.自然连接
C.笛卡尔积
D.交
<上一题 目录 下一题>
热门 试题

单项选择题
以下选项中不能正确把c1定义成结构体变量的是( )。
A.typedef struct   { int red;    int green;    int blue;   } COLOR;      COLOR cl;
B.struct color cl   { int red;   int green;    int blue;   }
C.struct color   { int red;   int green;   int blue;   } cl;
D.struct   { int red;    int green;    int blue;   } cl;
单项选择题
有以下程序main(){int i;for(i=1;i<=40;i++) {if(i++%5==0)if(++i%8==0)printf( %d ,i);printf( \n );}执行后的输出结果是【 】。
A.5
B.24
C.32
D.40
相关试题
  • 以下sstrcpy( )函数实现字符串复制,即...
  • 在面向对象方法中,类的实例称为【 】。
  • 以下程序中,函数fun的功能是计算X的2次方...
  • 计算机网络分为广域网和局域网,因特网属于...
  • 若有语句int i=-19,j=i%4;printf...