In a public-key cryptosystem,(71)encrypted with the public key can only be deciphered with the private key from the same(72). Conversely,(71)encrypted with the private key can be decrypted only with the public key. Users can make their public keys(73)available or place them at a key distribution center or others to access. However, the private key must be(74)safe. In public-key systems there's no(75)to find a safe channel for communicating a shared secret key.
A.binarytext
B.hypertext
C.plaintext
D.supertext
第1题:
Packet-switching wireless networks are preferable(71)when transmissions are(72)because of the way charges are(73)per packet. Circuit-switched networks are preferable for transferring large files or for other lengthy transmissions because customers are(74)for the(75)of time they use the network.
A.to
B.for
C.than
D.only
第2题:
The(71)is a combination of keys that allows the user to activate a program function without clicking a series of menus options.
(71)A.shortcut-key
B.quick-key
C.fast-key
D.rapid-key
第3题:
给定一个长度为11的散列表ht如下所示,采用双散列法解决冲突,两个散列函数分别为: h1(key)=key%11 h2(key)=key%9+1 请向散列表依次插入关键字为71,24,56,89的集合元素,给出插入完成后的散列表。(10分) i 0 1 2 3 4 5 6 7 8 9 10 ht[i] 23 46 90 49 27
第4题:
A.RCO1only.
B.DB01only.
C.DB02only.
D.DB01andDB02only.
E.DB01,DB02,andRC01.
第5题:
第6题:
6.设按键key按下时,产生低电平0。实现key按下时,key_state 置1的程序段是()
A.if(key == 1) { delay(200); if(key == 1) key_state = 1; }
B.if(key == 0) { delay(200); if(key == 0) key_state = 1; }
C.while(key == 0) { delay(200); while (key == 0) key_state = 1; }
D.while(key == 1) { delay(200); while (key == 1) key_state = 1; }