柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
进程从运行态转换为阻塞态的原因是
A.需要的数据没有准备好
B.需要的设备不存在
C.分配给该进程的时间片用完
D.运算过程中栈溢出
热度🔥302
参考答案:A
解析:
A【解析】引起进程阻塞的事件有:1)请求系统服务;2)启动某种操作;3)新数据尚未到达;4)无新工作可做。故选择A选项。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
若有以下程序 #include main() { int s=0, n; for (n=0; n<4; n++) { switch(n) { default: s+=4; case 1: s+=1; case 2: s+=2; case 3: s+=3; } } printf("%d\n", s); } 则程序的输出结果是
若有以下程序 #include int f(int a[], int n) { if (n > 1) { int t; t=f(a, n-1); return t > a[n-1] ? t : a[n-1]; } else return a[0]; } main() { int a[] = {8,2,9,1,3,6,4,7,5}; printf("%d\n", f(a, 9)); } 则程序的输出结果是
下面关于位运算符的叙述,正确的是
数据库(DB)、数据库系统(DBS)和数据库管理系统(DBMS)三者之间的关系是( )。
标签
四级信息安全工程师
进程
数据
阻塞
需要