【导读】
布丁学网发布医卫类考试2022病案信息技术(师)相关专业每日一练(10月27日),更多病案信息技术(师)的每日一练请访问布丁学网医卫类考试频道。
1. [多选题]属于交界性肿瘤的是
A. 肾母细胞瘤
B. 精原细胞瘤
C. 唾液腺混合瘤(mixed salivary gland tumor)
D. 霍奇金病
E. 子宫肌瘤
2. [多选题]国内生产总值(GDP)是按市场价格计算的一个国家(或地区)所有常住单位在一定时期内生产活动的最终成果。国内生产总值有三种表现形态,即( )。
A. 市场形态
B. 价值形态
C. 收入形态
D. 产品形态
E. 产量形态
3. [单选题]3执行完以下代码int[]x=new int[25];后,以下( )说明是正确的。
A. x[24]为0
B. x[24]未定义(undefined)
C. x[25]为0
D. x[0]为空
4. [单选题]单击命令按钮时,下列程序的执行结果是 Private Sub Command1_Click() Dim a As Integer,b As Integer,c As Integer a=3:b=4:c=5 Print SecProc(c,b,a) End Sub Function FirProc(x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Function Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Function
A. 20
B. 22
C. 28
D. 30