柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
程序流程图中带有箭头的线段表示的是( )。
A.图元关系
B.数据流
C.控制流
D.调用关系
热度🔥367
参考答案:C
解析:
在数据流图中,用标有名字的箭头表示数据流。在程序流程图中,用标有名字的箭头表示控制流,故本题答案为C。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
窗体中有命令按钮Command1,事件过程如下: Public Function f(x As Integer) As Integer Dim y As Integer x=20 y=2 f=x * y End Function Private Sub Command1_Click() Dim y As Integer Static x As Integer x=10 y=5 y=f(x) Debug.Print x;y End Sub 运行程序,单击命令按钮,则立即窗口中显示的内容是( )。
有以下程序 #include #include main() { int i; char a[]="How are you!"; for (i=0; a[i]; i++) if (a[i] == ' ') strcpy(a, &a[i+1]); printf("%s\n",a); } 程序的运行结果是
有以下程序 #include #include main() { char w[20], a[5][10]={"abcdef", "ghijkl", "mnopq", "rstuv", "wxyz."}; int i; for (i=0; i<5; i++) w[i]=a[i][ strlen(a[i]) - 1]; w[5]= '\0'; puts(w); } 程序的运行结果是
如果总线的频率为66MHZ,总线宽度为32位,则总线的带宽为
主存和CPU之间增加高速缓存的目的是
标签
计算机二级Office
箭头
表示
数据流
图中