【导读】
布丁学网发布计算机类考试2022计算机二级考试试题试卷(6AA),更多计算机二级的考试试题请访问布丁学网计算机类考试频道。
1. [单选题]以下事件过程可以将打开的对话框的标题改变为“新标题”的是
A. Private Sub Command1_Click() CommonDialog1.DialogTitle=“新标题” CommonDialog1.ShowOpen End Sub
B. Private Sub Command1_Click() CommonDialog1.DialogTitle=“新标题” CommonDialog1.ShowFont End Sub
C. Private Sub Command1_Click() CommonDialog1.DialogTitle=“新标题” CommonDialog1.Show End Sub
D. Private Sub Command1_Click() CommonDialog1.DialogTitle=“新标题” CommonDialog1.ShowColor End Sub
2. [单选题]有以下程序:#include stdio.h>#include string.h>main( ) { char a[ 7 ] = "a0 \0a0 \0"; int i,j; i = sizeof(a); j = strlen(a); printf(" % d %d \n" ,i,j); }程序运行后的输出结果是( )。
A. 76
B. 72
C. 62
3. [单选题]下列组件不能添加进Frame主窗口的是( )。
A. Panel
B. CheckBox
C. Dialog
D. Choice