皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
在数据库的如下两个表中,若学生成绩表的主键是学生号和课程名,学生表的主键是学生号。在下列所给的操作中,哪项操作不能执行? 学生成绩表
A.
从学生成绩表中删除行('0001','001',60)
B.
将行('0102','002',80)插入到学生成绩表中
C.
将学生成绩表中的学生号='0101'的成绩改为60
D.
将学生成绩表中学生号='0103'的学号改为'0104'
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】Give the noun form of the following word: estimate
【单选题】有以下程序段: #include<iostream.h> #define MAX(x,y)(x)>(y)?(x):(y) void main() { int i,j,k i=10 j=15k=MAX(i,j)*10 cout<<k<<end1 } 程序执行后的输出结果是( )。
A.
15
B.
100
C.
150
D.
10
【简答题】Give the noun form of the following word : assume
【简答题】树的存储结构如下: define MAX一TREE—SIZE 100 typedef struct CTNode{ //孩子结点 int child; struct CTNode *next ; }*childPtr; typedef struct { E1emtype data; childPtr *firstchild; //孩子链表头的指针 }*CTBox; Typedef struc
【简答题】由二叉树的前序遍历和中序遍历序列能确定唯一的一棵二叉树,下面程序的作用是实现由已知某二叉树的前序遍历和中序遍历序列,生成一棵用二叉链表表示的二叉树并打印出后序遍历序列,请写出程序所缺的语句。 #define MAX 100 typedef struct Node {char info; struct Node *llink, *rlink; }TNODE; char pred[MAX],inod...
【单选题】According to this conversation, 'textbook' is
A.
close form. compound noun.
B.
hyphenated form. compound noun.
C.
open form. compound noun.
D.
not a compound noun.
【简答题】编写函数int fun(int lim, int aa[MAX]),其功能是求出小于或等于lim的所有素数并放在aa数组中,并返回所求出的素数的个数。 注意:部分源程序在文件PROG1.C中。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。 #include #include #include #define MAX 100 int fun(int l...
【简答题】Give the noun form of the following word : identified
【简答题】Give the noun form of the following word : economic
【简答题】当输入的数据为2、5时,则下列程序的运行结果为【 】。 include <stdio.h> define max 100 main() { int f[max],i,j,k,m; scanf('%d%d',&k,&m); for(i=0;i<=m;i++) f[i]=0; f[k-1]=1; for(i=k;i<=m;i++) for(j=i-k;j<=i-1;j++) f[i]+=f[i]; p...
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题