柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
下列设备组中,完全属于计算机输出设备的一组是( )。
A.键盘,鼠标器,扫描仪
B.激光打印机,键盘,鼠标器
C.打印机,绘图仪,显示器
D.喷墨打印机,显示器,键盘
热度🔥588
参考答案:C
解析:
目前常用的输出设备有显示器、打印机、绘图仪、影像输出、语音输出、磁记录设备等;常用的输入设备有键盘、鼠标器、触摸屏、摄像头、扫描仪、光笔、手写输入板,游戏杆、语音输入装置等。故本题答案为C。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序: # include struct S{int n; int a[20]; }; void f(struct S *p) { int i,j,t; for (i=0; in-1; i++) for (j=i+1; jn; j++) if (p->a[i] > p->a[j]) { t= p->a[i]; p->a[i] = p->a[j]; p->a[j] = t; } } main() { int i; struct S s={10, {2,3,1,6,8,7,5,4,10,9}}; f(&s); for (i=0; i
有以下程序: #include #include typedef struct { char name[9]; char sex; int score[2]; } STU; STU f (STU a) { STU b={"Zhao", 'm', 85, 90}; int i; strcpy( a.name, b.name ); a.sex = b.sex; for ( i=0; i<2; i++ ) a.score[i] = b.score[i]; return a; } main() { STU c= { "Qian", 'f', 95, 92 }, d; d = f(c); printf ("%s,%c,%d,%d, ", d.name, d.sex, d.score[0], d.score[1]); printf ("%s,%c,%d,%d\n", c.name, c.sex, c.score[0], c.score[1]); } 程序运行后的输出结果是( )。
下列叙述中正确的是( )。
现代计算机普遍采用总线结构,按照信号的性质划分,总线一般分为
标签
计算机二级Office
键盘
输出
设备
鼠标器