【导读】
布丁学网发布2022计算机二级基础知识每日一练(09月09日),更多计算机二级的每日一练请访问布丁学网计算机类考试频道。
1. [单选题]如果类A被说明成类B的友元,则( )。
A. 类A的成员即类B的成员
B. 类B的成员即类A的成员
C. 类A的成员函数不得访问类B的成员
D. 类B不一定是类A的友元
2. [单选题]单击命令按钮时,下列程序代码的执行结果为______。 Private Function FirProc (x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Function Private Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Function Private Sub Command1_Click() Dim a As Integer Dim b As Integer Dim C As Integer a=2 b = 3 c = 4 Print SecProc(c,b,A) End Sub
A. 21
B. 19
C. 17
D. 34
3. [单选题]在SQL查询时,使用WHERE子句指出的是 ______。
A. 查询目标
B. 查询结果
C. 查询条件
D. 查询视图
4. [单选题]下列是一个Java应用程序,输出结果是 public class Testmm { public static void main(String args[]) { for(char c='a';c〈=‘d’;c++) {if(c==‘c’)break; System.out.print(c); } } }
A. ab
B. abc
C. abd
D. abcd