A.takes up
B.takes off
C.takes on
第1题:
46_______.
A.paid
B.took
C.cost
D.spent
第2题:
A. Half-duplex Ethernet operates in a shared collision domain.
B. Full-duplex Ethernet has a lower effective throughput.
C. Half-duplex Ethernet operates in a private collision domain.
D. Full-duplex Ethernet allows two-way communication.
E. Half-duplex Ethernet operates in a private broadcast domain.
第3题:
第4题:
A. reuse
B. suppress
C. half-life
D. max-suppress-time
第5题:
13.
A.played
B.took
C.wanted
D.spent
第6题:
若要实现total=1+2+3+4+5求和,以下程序段错误的是()
A.int i=1,total=1; while(i<5) { total+=i; i+=1; }
B.int i=1,total=0; while(i<=5) { total+=i; i+=1; }
C.int i=0,total=0; while(i<5) { i+=1; total+=i; }
D.int i=0,total=0; while(i<=5) { total+=i; i+=1; }