【名词&注释】
有效性(effectiveness)、模块化(modularization)、先进性(advancement)、结构化(structured)、表达式、程序设计语言(programming language)、程序结构(program structure)、文本框(text box)、派生类(derived class)、逐步求精(stepwise refinement)
[单选题]使数据库表变为自由表的命令是
A. DROP TABLE
B. REMOVE TABLE
C. FREE TABLE
D. RELEASE TABL
查看答案&解析查看所有试题
学习资料:
[单选题]为“教师”表的职工号字段添加有效性规则:职工号的最左边三位字符是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"
[单选题]结构化程序设计主要强调的是( )
A. 程序的规模
B. 程序的效率
C. 程序设计语言的先进性
D. 程序易读性
[单选题]设int a=10,b=11,c=12;表达式(a+b)
A. 2
B. 0
C. -2
D. 1
[单选题]在窗体上画1个文本框(text box),其名称为Text1,然后编写如下过程:
A. Private Sub Text1_KeyDown(KeyCode As Integer,Shift As Integer)
B. Print Chr(KeyCode)
C. End Sub
D. Private Sub Text1_Key Up(KeyCode As Integer,Shift As Integer)
E. Print Chr(KeyCode+2)
F. End Sub
G. 程序运行后,把焦点移到文本框(text box)中,此时如果敲击“A”
J.
[单选题]有如下程序:include using namespace std;class Base{public:Base(){ cout
有如下程序: #include iostream.h> using namespace std; class Base { public: Base(){ cout"BB"; f(); } voidf(){cout "Bf"; } }; class Derived: public Base { public: Derived (){cout"DD";} void f(){cout"Df";} }; int main(){Derived d; return 0;} 执行上面的程序将输出
A. BBBfDD
B. BBDfDDDf
C. DD
D. DDBBBf
本文链接:https://www.51ksbd.net/show/3oy5pd.html