【名词&注释】
软件开发(software development)、文本文件(text file)、基本原理(basic principle)、应用领域(application field)、字符串(string)、运算符(operator)、开发者(developer)、解决问题。、弹出式菜单(popup menu)、思考问题(thinking problems)
[单选题]使用宏组的目的是
A. 设计出功能复杂的宏
B. 设计出包含大量操作的宏
C. 减少程序内存消耗
D. 对多个宏进行组织和管理
查看答案&解析查看所有试题
学习资料:
[单选题]在以下事件过程中,可以在用户按下鼠标右键时,显示一个上边框,以鼠标当前位置为中心的弹出式菜单(popup menu),而且这个弹出式菜单(popup menu)还可以识别右键对菜单命令的选择,相应的选项是( )。
A. Private Sub Form_MouseUp(Button As Integer, Shift As Integer, _
B. X As Single, Y As Single)
C. If Button=2 Then
D. PopupMenu mnuEdit, vbPopupMenuCenterAlign Or _
E. vbPopupMenuRightButton, X, Y, mnuEditOpen
F. End If
G. End Sub
H. Private Sub Form_MouseUp(Button As Integer, Shift As Integer, _
I. X As Single, Y As Single)
J. If Button=2 Then
K. PopupMenu mnuEdit,
L. End If
M. End Sub
N. Private Sub Form_MouseUp(Button As Integer, Shift As Integer, _
O. X As Single, Y As Single)
P. PopupMenu mnuEdit, vbPopupMenuCenterAlign Or _
Q. vbPopupMenuRightButton
R. End Sub
S. Private Sub Form_MouseUp(Button As Integer , _
T. Shift As Integer, X As Single, Y As Single)
U. If Button=2 Then
V. PopupMenu mnuEdit, 2
W. End If
X. End Sub
[单选题]有如下类定义:
A. int XX;
B. public:
C. xx():xx(0){tout$amp;XX(int n):xx(n){cout$amp;};
D. class Y:Y:public XX{
E. int YY;
F. public:
G. YY():YV(O){cout$amp;YY(int n):xx(n+1),YY(n){cout$amp;YY(int m,int n):XX(m),YY(n){cout$amp;};
H. 下列选项中,输出结果为A0的语句是
I. YY yl(0,0);
J. YY 72(1);
K. YY y3(0);
L. YY y4;
[单选题]面向对象的设计方法与传统的面向过程的方法有本质不同,它的基本原理是( )。
A. 模拟现实世界中不同事物之间的联系
B. 强调模拟现实世界中的算法而不强调概念
C. 使用现实世界的概念抽象地思考问题(thinking problems)从而自然地解决问题
D. 鼓励开发者(developer)在软件开发的绝大部分中都用实际领域的概念去思考
[单选题]有如下程序: main() { int n=9; while(n>6){n--;printf("%d",n);}} 该程序的输出结果是
A. 987
B. 876
C. 8765
D. 9876
[单选题]有以下程序 #includeiostream> using namespace std; class sample { private: int x; public: sample(int a) { x=a; } friend double square(sample s); }; double square(sample S) { return s.x*s.x; } int main() { sample s1(20),s2(30); coutsquare(s2)endl; return 0; } 执行结果是
A. 30
B. 900
C. 400
[单选题]实现下列______接口可以对TextField对象的事件进行监听和处理。
A. ActionListener
B. FocusListener
C. MouseMotionListener
D. WindowListener
[单选题]有下列程序:
A. voidmain( )
B. {FILE*f;
C. f=fopen("filea.txt","w");
D. fprintf(f,"abe");
E. fclose(f);
F. }
G. 若文本文件filea.txt中原有内容hell0,则运行以上程序后,文件Iilea.txt中的内容为( )。
H. helloabe
I. abclo
J. abe
K. abchello
本文链接:https://www.51ksbd.net/show/e5kplx.html