hce_nsysu
111年
計算機概論與程式設計
111年hce_nsysu — 計算機概論與程式設計
共 90 題 · 含 AI 詳解
-
#1
Which of the following is the binary representation of (6.625)10?
›
#2
If you have a disk that has a capacity of Petabyte (PB), that is equal to
›
#3
How many bits in length are used for IP address in IPv4?
›
#4
Which of the following statement about the Unicode is not true?
›
#5
Three security goals are ______.
›
#6
If the longest path in a binary tree contained exactly four nodes, what is the m…
›
#7
Which of the following data structures is static in the sense that it does not c…
›
#8
Which one of the following is NOT the characteristic of TCP protocol?
›
#9
Which of the following methods is suitable for preventing the falsification of m…
›
#10
The digital transformation of smart medical has always been a hot topic and paid…
›
#11
Which of the following is used to store the instruction currently being executed…
›
#12
x = 01001010, y = 11001100. What is the Hamming distance between x and y?
›
#13
Which one of the following is an unsupervised learning method?
›
#14
(a) System Program, (b) Application Program, (c) Operating System, and (d) CPU,…
›
#15
Which of the following statement about GPU is not true?
›
#16
If the function `int volume(int x = 1,int y = 1,int z = 1);` is called by the ex…
›
#17
If a=1.0, b=6.0 and c=4.0, then what is printed by
`printf("%.2f", sqrt(a+b*c));…
›
#18
Which of the following C code is used to declare a two-dimensional array of inte…
›
#19
What is the output of the following statements?
```c
int x = 3;
switch(x…
›
#20
Which following is the correct way to create a dictionary in Python?
›
#21
What is the output of this code in Python?
```python
list = ['a', 'b', 'c',…
›
#22
What does the following Python program fragment do?
```python
s=0
for i…
›
#23
Which of the following statements about the format specifier for `printf()` func…
›
#24
Consider an array declaration `int data[5]={1,2,3,4,5};` in C. What is the value…
›
#25
Which of the following C code is used to declare two pointers of integer?
›
#26
Which of the following code could not be used to ignore all remaining characters…
›
#27
What is the output of the following program?
```c
int a[10] = {3,2,3,4,5,4,7…
›
#28
What is the output of this code in python?
```python
r = lambda q: q * 2…
›
#29
What is the output of this code in C++?
```cpp
#include