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

题库 第5948页

  • 最新
  • 浏览
  • 评论

单选题:The output of this program is ( ).

Luz5年前 (2021-05-10)617
The output of this program is ( ). @[B](2)```#define add(a,b) a+bint main(){ printf("%d\n",5*add(3,4)); return 0;}…

单选题:How many '*' will be printed?

Luz5年前 (2021-05-10)973
How many '*' will be printed? @[B](2)```int i; int main(){ void prt(); for(i=0; i˂5; i++) prt();}void prt() { for(i…

单选题:What is the output of this program?

Luz5年前 (2021-05-10)1193
What is the output of this program? @[B](2)```void fun(int);main( ){ int w=2; fun(w);} void fun(int k){ if…

单选题:What operator is definitely NOT supported in C between two poin

Luz5年前 (2021-05-10)689
What operator is definitely NOT supported in C between two pointer variables (based on the same datatype)? @[C](2)A.…

单选题:Given 4 cases of frequences of four characters. In which case(s)

Luz5年前 (2021-05-10)728
Given 4 cases of frequences of four characters. In which case(s) that the total bits taken by Huffman codes are the same…

单选题:Suppose that the replacement selection is applied to generate lo

Luz5年前 (2021-05-10)2231
Suppose that the replacement selection is applied to generate longer runs with a priority queue of size 4. Given the seq…

单选题:In a binomial queue with $$150$$ nodes, how many nodes have dept

Luz5年前 (2021-05-10)576
In a binomial queue with $$150$$ nodes, how many nodes have depth $$1$$ (the root has depth $$0$$)? @[C](2)A. 4B. 8C. 1…

单选题:表达式

Luz5年前 (2021-05-10)842
表达式下面的程序段将输出 ▁▁▁▁▁ 。@[A](2)```cdouble base = 2.5, heigh = 2, area;area = 1 / 2 * base * heigh;printf("%g\n", area);```A.…

单选题:表达式

Luz5年前 (2021-05-10)630
表达式下面的程序段将输出 ▁▁▁▁▁ 。@[B](2)```cint a = 5, b = -3, c;c = a / b;printf("%d\n", c);```A. 1B. -1C. 2D. -2A.1B.-1C.2D.-2答案:B…

单选题:表达式

Luz5年前 (2021-05-10)1386
表达式下面的程序段将输出 ▁▁▁▁▁ 。@[A](2)```cint n = 4, s;s = 1 / 2 * n * (n + 1);printf("%d\n", s);```A. 0B. 0.025C. 0.625D. 10A.0B.0…