A. number
B. quantify
C. additional
D. count
第1题:
以下对枚举类型名的定义中正确的是______。
A.enum a={one,two,three};
B.enum a{one=9,two=-1,three};
C.enum a={"one","two","three"};
D.enum a{"one","two","three"};
第2题:
以下对枚举类型名的定义中正确的是______。
A.enum a={one, two,three};
B.enum a{one=9,two=1,three};
C.enum a={"one","two","three"};
D.enum a{"one", "two","three"};
第3题:
1、以下对枚举类型名的定义中正确的是()。
A.enum a={one,two,three};
B.enum a {one=9,two=-1,three};
C.enum a={"one","two","three"};
D.enum a {"one","two","three"};
第4题:
查询订购单号首字符是”P”的订单信息,应该使用命令A)SELECT*FROM订单WHERE HEAD(订购单号,1)=”P”B)SELECT*FROM订单WHERE LEFT(订购单号,1)=”P”C)SELECT*FROM订单WHERE “P” $ 订购单号D)SELECT*FROM订单WHERE RIGHT(订购单号,I)=”P”
第5题:
下列选项中,不能创建字典对象的语句是()。
A.{'one':1, 'two':2, 'three':3}
B.dict('one':1, 'two':2, 'three':3)
C.dict([('one',1), ('two',2), ('three',3)])
D.dict(zip(['one','two','three'], [1,2,3]))
第6题:
4、下列选项中,不能创建字典对象的语句是()。
A.{'one':1, 'two':2, 'three':3}
B.dict('one':1, 'two':2, 'three':3)
C.dict([('one',1), ('two',2), ('three',3)])
D.dict(zip(['one','two','three'], [1,2,3]))