阿摩線上測驗
登入
首頁
>
計算機概論、大意(資訊科學概論,電腦常識,電子計算機概論)
>
99年 - 99 專技高考_資訊技師:計算機概論(包括軟體、硬體)#46454
>
題組內容
一、
⑴何謂 Graphics Processing Unit?(10 分)
其他申論題
⑴ select item_id, count(*), sum(quantity) from orders where cust_id in (’AAA’,’CCC’,’EEE’) group by item_id;
#158516
⑵ select item_id from orders group by item_id having 10*sum(quantity)> (select on_hand from stock where orders.item_id = stock.item_id);
#158517
⑴下列 C 語言程式碼,若使用 call-by-reference 呼叫副程式,請問最後印出的 a 值 為何? main() { int a=1,b=2; p(a+b,&a,&a); printf("%d ",a); } int p(int x,int *y,int *z) { *y=*y+1; *z=x+x; }
#158518
⑵若使用 call-by-value 呼叫副程式,請問最後印出的 a 值為何? main() { int a=1,b=2; p(a+b,a,a); printf("%d ",a); } int p(int x,int y,int z) { y=y+1; z=x+x; }
#158519
⑵ Graphics Processing Unit 它主要的運算功能為何?在那一方面的應用可以提升很大的效能?(10 分)
#158521
⑴何謂 Knowledge Management(KM)?(10 分)
#158522
⑵在保存延續企業 intellectual capital(智慧資本)這項目標主要的成功關鍵因素為 何?(10 分)
#158523
三、何謂 Church-Turing thesis?(20 分)
#158524
⑴何謂 RSA Public-Key Cryptography?(10 分)
#158525
⑵令 N=P*Q,其中 P, Q 是兩個相異的質數,E*D=K(P-1)(Q-1)+1,K 為某一個正整 數,現在給定 public keys N=77, E=7,請問 private keys:P, Q, D 為何?(10 分)
#158526