hce_nsysu
112年
計算機概論與程式設計
112年hce_nsysu — 計算機概論與程式設計
共 50 題 · 含 AI 詳解
-
#1
What is printed by the following C/C++ program?
char a[ ]= "ABCDE", b[ ]= "74623…
›
#2
How many bits are used in the IPv6 address?
›
#3
Which one is NOT an operating system?
›
#4
Which one is NOT the extension name of a video file?
›
#5
Which one is NOT a step of the genetic algorithm?
›
#6
What is printed by the following C/C++ program?
int a[10], y=2;
a[1]=1; a[2]=3;…
›
#7
Which one is NOT a name of platform or software for artificial intelligence?
›
#8
Which one is a secure protocol?
›
#9
What is printed by the following C/C++ program?
int a[ ]={1, -2, 2, -1, 3, -1, 2…
›
#10
Which one statement is NOT correct for an AVL tree?
›
#11
Which one statement is NOT correct for the Internet protocol suite?
›
#12
Which one statement is NOT correct for TCP and UDP?
›
#13
The time complexity of a certain algorithm is calculated by $T(n)=cn+T((1-y)n)$,…
›
#14
Which of the following is the decimal representation of $(F3A5)_{16}$?
›
#15
Which of the following statements for a 64-bit processor is incorrect?
›
#16
Which of the following items is a part of central processing unit (CPU) ?
›
#17
Which radix r is correct for $(B7)_{16} = (267)_r$?
›
#18
What can be used to keep the state information on an end user’s computer?
›
#19
What is to ensure unauthorized access to data content?
›
#20
How many operations can be defined when a machine equips a control bus of sixtee…
›
#21
What is the protocol for email services?
›
#22
Which method can be used for the starvation when the operation system has limite…
›
#23
What is the subject of health informatics?
›
#24
Which operation can be taken to flip all of the bits in a binary string with a m…
›
#25
HTTPS is in which network layer?
›
#26
When executing a function call in a program, which data structure will be taken…
›
#27
In order to ensure the access control of medical equipment to avoid unauthorized…
›
#28
What is the output of the following C program?
int i = 8, j = 7, *s = &i, *t = &…
›
#29
What is the output of the following C program?
int M = 10;
int N = 0;
for (int i…
›
#30
What is the output of the following C program?
If a = 3.0, b=5.0, and c=2.0, the…
›
#31
For a Generative Adversarial Network (GAN) to produce images of chest x-ray, whi…
›
#32
How does a ransomware cause damages to the infected computing devices?
›
#33
Given a table as follows:
T:
| X | Y | Z |
|---|---|---|
| 2 | 3 | 3 |
| 7 | 9 |…
›
#34
Which one of the following statements about malware is wrong?
›
#35
What is the potential technique for the privacy protection on medical data?
›
#36
Given a prefix expression as +-ab*c/de, where a = 6, b = 7, c = 9, d = 9, and e…
›
#37
Consider the following code in C program:
#include