-->
当前位置:首页 > 题库

题库 第6457页

  • 最新
  • 浏览
  • 评论

对于如下的switch语句(使用break)的一般形式,其执行流程是:首先求解表达式,如果表达式的值与某个常量表达式的值相等,则

Luz5年前 (2021-05-10)3805
对于如下的switch语句(使用break)的一般形式,其执行流程是:首先求解表达式,如果表达式的值与某个常量表达式的值相等,则执行该常量表达式后的相应语句段;如果表达式的值与任何一个常量表达式的值都不相等,则执行 default 后的语句…

String is a character array ended with ‘\0’.

Luz5年前 (2021-05-10)1206
String is a character array ended with ‘\0’. ~@[](2)答案:TRUE…

从信息的输入输出角度来说,磁盘驱动器和磁带机既可以看作输入设备,又可以看作输出设备( )。

Luz5年前 (2021-05-10)1373
从信息的输入输出角度来说,磁盘驱动器和磁带机既可以看作输入设备,又可以看作输出设备( )。 ~@[](1)答案:TRUE…

The number of leaf nodes in a complete binary tree with 124 node

Luz5年前 (2021-05-10)1060
The number of leaf nodes in a complete binary tree with 124 nodes is definite. ~@[](2)答案:TRUE…

for语句的一般形式如下,若表达式2的值为“假”,则结束循环。

Luz5年前 (2021-05-10)4079
for语句的一般形式如下,若表达式2的值为“假”,则结束循环。 ``` for (表达式1; 表达式2; 表达式3) 循环体语句 ``` ~@[](1)答案:TRUE…

When initialize to all element in a 2-dimention array, row numbe

Luz5年前 (2021-05-10)1037
When initialize to all element in a 2-dimention array, row number cannot be ommited, but column number could. ~@[](1),…

只有Python扩展库才需要导入以后才能使用其中的对象,Python标准库不需要导入即可使用其中的所有对象和方法。

Luz5年前 (2021-05-10)2128
只有Python扩展库才需要导入以后才能使用其中的对象,Python标准库不需要导入即可使用其中的所有对象和方法。 ~@[](2)答案:FALSE…

For the recurrence equation $$T(N)=2T(N/2)+N$$ for $$N>1$$ and $

Luz5年前 (2021-05-10)980
For the recurrence equation $$T(N)=2T(N/2)+N$$ for $$N˃1$$ and $$T(1) = O(1)$$, then $$T(N)=O(N)$$ ~@[](1)答案:FALSE…

若有向图有n个结点,则其强连通分量至多有n个。

Luz5年前 (2021-05-10)1266
若有向图有n个结点,则其强连通分量至多有n个。 ~@[](1)答案:TRUE…

For the recurrence equation $$T(N)=aT(N/b)+f(N)$$ for $$N>n_{0}$

Luz5年前 (2021-05-10)1085
For the recurrence equation $$T(N)=aT(N/b)+f(N)$$ for $$N˃n_{0}$$ and $$T(N) = O(1)$$ for $$N˂=n_{0}$$,then $$T(N)=max({…