【名词&注释】
有效性(effectiveness)、字符串(string)、存储空间(storage space)
[单选题]为“教师”表的职工号字段添加有效性规则:职工号的最左边三位字符是110,正确的SQL语句是
A. CHANGE TABLE教师ALTER职工号SET CHECK LEFT(职工号,3)="110"
B. ALTERTABLE教师ALTER职工号SET CHECK LEFT(职工号,3)="110"
C. ALTER TABLE教师ALTER职工号CHECK LEFT(职工号,3)="110"
D. CHANGE TABLE教师ALTER职工号SET CHECK OCCURS(职工号,3)="110"
查看答案&解析查看所有试题
学习资料:
[单选题]请阅读下面程序 import java.io.*; public class ExceptionCatch { public static void main(String args[]) { try{ FilelnputStream fis=new FilelnputStream("text"); System.out.println("content of text is:"); } catch(FileNotFoundException e) { System.out.println(e); System.out.println("message:"+e.getMessageO); e.printStackTrace(System.out); }____{ System.out.println(e); } } } 为保证程序正确运行,程序中下划线处的语句应是
A. catch(FilelnputStream fis)
B. e.printStackTrace()
C. catch(IOException e)
D. System.out.println(e)
[单选题]有如下程序:
A. include
B. using namespace std;
C. class AA{
D. int k:
E. protected:
F. int n;
H. public:
I. void setN(int n){tllis->n=n;}
J. };
K. class BB:public AA{/*类体略*/};
L. int main(){
M. BB X;
N. n=l: //1
O. setN(2); //2
P. k=3: ///3
Q. setK(4); //4
R. return 0;
S. }
T. 在标注号码的4条语句中正确的是
U. 1
V. 2
W. 3
X. 4
[单选题]下面程序段的运行结果是 char *S="abcde"; s+=2;printf("%d",s);
A. cde
B. 字符'c'
C. 字符'c'的地址
D. 无确定的输出结果
本文链接:https://www.51ksbd.net/show/k8g9po.html