Certificates are ______documents attesting to the ______ of a public key to an individual or other entity. They allow verification of the claim that a given publickey does in fact belong to a given individual. Certificates help prevent some one from using a phony key to ______someone else. In their simplest form, Certificates contain a public key and a name. As commonly used, a certificate also contains an ______ date, the name of the CA that issued the certificate, a serial number, and perhaps other information. Most importantly, it contains the digital ______ of the certificate issuer. The most widely accepted format for certificates is X.509 , thus, Certificates can be read or written by any application complying with X.509.
A. communication
B. computation
C. expectation
D. expiration
Certificates are ______documents attesting to the ______ of a public key to an individual or other entity. They allow verification of the claim that a given publickey does in fact belong to a given individual. Certificates help prevent some one from using a phony key to ______someone else. In their simplest form, Certificates contain a public key and a name. As commonly used, a certificate also contains an ______ date, the name of the CA that issued the certificate, a serial number, and perhaps other information. Most importantly, it contains the digital ______ of the certificate issuer. The most widely accepted format for certificates is X.509 , thus, Certificates can be read or written by any application complying with X.509.
A. signature
B. mark
C. stamp
D. hypertext
MIDI enables people to use ______ computers and electronic musical instruments. There are actually three components to MIDI, the communications " ______", the Hardware Interface and a distribution ______ called "Standard MIDI Files". In the context of the WWW, the most interesting component is the ______ Format. In principle, MIDI files contain sequences of MIDI Protocol messages. However, when MIDI Protocol ______ are stored in MIDI files, the events are also time-stamped for playback in the proper sequence. Music delivered by MIDI files is the most common use of MIDI today.
A. format
B. text
C. wave
D. center
下列数据表。 仓库(仓库号C(3)、所在地C(8)、人数N(2)) 职工(仓库号C(3)、职工号C(2)、姓名C(8)、工资I) 检索最少有4名职工仓库的职工平均工资( )。
A) SELECT 仓库号,COUNT(*) AS人数,AVG(工资) AS 平均工资 FROM 职工; GROUPBY 仓库号 WHERE COUNT(*)>=4
B) SELECT 仓库号,COUNT(*) AS人数,AVG(工资) AS 平均工资 FROM 职工; GROUPBY 仓库号 HAVING COUNT(*)>=4
C) SELECT 仓库号,COUNT(*) AS人数,AVG(工资) AS 平均工资 FROM 职工; GROUPBY 职工号 WHERE COUNT(*)>=4
D) SELECT 仓库号,COUNT(*) AS人数,AVG(工资) AS 平均工资 FROM 职工; GROUPBY 职工号 HAVING COUNT(*)>=4