【評論主題】2. In a natural community, the primary consumer is?(A) Carnivores(B) Herbivores(C) Detritivores(D) D
【評論內容】
(B) Primary consumers make up the second trophic level. They are also called herbivores. They eat primary producers—plants or algae—and nothing else.
【評論主題】30 執行下列 Python 程式後,產生的輸出為何? (A) 10 20 (B) 20 30 (C)[10, 20, 30] (D)[20, 10, 30]
【評論內容】
def 定義方法 會把input[p1]和input[p2]數值互換
input = [10, 20, 30]
把input[0] 和input[1]互換
input 就變成 [20, 10, 30]
【評論主題】28 考慮下列的 C 語言函數宣告,然後呼叫 f(4),函數的回傳值為何? (A)1 (B)4 (C) 10 (D) 24
【評論內容】
f(1) = 1
f(2) = 2*f(1) = 2
f(3) = 3*f(2)= 6
f(4) = 4*f(3) = 4*6 = 24
【評論主題】24 若執行以下的 Python 程式碼,則螢幕上輸出的數字依序為何? (A) 3,3,7,3(B) 3,3,7,7(C) 3,7,3,3(D) 3,7,7,7
【評論內容】執行由第6行開始先列印list[2] = 3★★★★...
【評論主題】14 若 i = 5, j = 6,且 k = 8,下列那個後置式(Postfix)數學式的運算結果,能得到最大的數值?(A) ij+k* (B) ijk*+ (C) ij*k+ (D) ijk+*
【評論內容】
(A)(5+6)*8=88
(B)(6*8)+5=53
(C)(5*6)+8 = 38
(D)(6+8)*5 = 70
【評論主題】13 若三維陣列 A[0:5, 3:10, 1:5]中每個元素的儲存必須耗費 4 個位元組(Bytes)的記憶體,儲存此陣列, 總共需要多少記憶體空間? (A) 240 個位元組 (B) 250 個位
【評論內容】(5-0+1)*(10-3+1........
【評論主題】7 假設整數以二補數表示法儲存為 8 個位元(8-bit memory location),整數「-72」的二補數表示法,為下列何者? (A) 01001000 (B) 11001000 (C) 10
【評論內容】72 = 64+8 = 0100 100021★★★ ........
【評論主題】12 下列不同無號數進制表示法的運算式之計算結果,何者的值最大?(A) (1000001-100000)2(B) (76-34)8(C) (73-38)10(D) (CD-AF)16
【評論內容】
(A) (27+20)-25 =65-32=33
(B) (7*81+6*80)-(3*81+4*80)=(56+6)-(24+4)=34
(C) 73-38 = 35
(D) (12*161+13*160)-(10*161+15*160)=(192+13)-(160+15)=30
【評論主題】2 將十進制數字 105 轉換成二進制表示,答案為:(A) 0100_1101 (B) 0110_1001 (C) 1100_1011 (D) 1101_1101
【評論內容】
(B) 64+32+8+1=105
【評論主題】1. Which of the following is NOT part of the endomembrane system?(A) Lysosome(B) Endoplasmic reticul
【評論內容】
(D) Important note: the endomembrane system does not include mitochondria, chloroplasts, or peroxisomes.