A where ;
B what ;
C why
第1题:
When you compare the differences between half-duplex and full-duplex Ethernet, which of the following characteristics are exclusive to half-duplex? (Select two answer choices)
A.Half-duplex Ethernet operates in a shared collision domain.
B.Half-duplex Ethernet operates in an exclusive broadcast domain.
C.Half-duplex Ethernet has efficient throughput.
D.Half-duplex Ethernet has lower effective throughput.
E.Half-duplex Ethernet operates in an exclusive collision domain.
第2题:
b)
main()
{
union{ /*定义一个联合*/
int i;
struct{ /*在联合中定义一个结构*/
char first;
char second;
}half;
}number;
number.i=0x4241; /*联合成员赋值*/
printf("%c%c\n", number.half.first,
mumber.half.second);
number.half.first='a'; /*联合中结构成员赋值
*/
number.half.second='b';
printf("%x\n", number.i);
getch();
}
AB (0x41 对应'A',是低位;Ox42 对应'B',
是高位)6261 (number.i 和number.half 共用一块地址空
间)
第3题:
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.
第4题:
A.shows...progresses
B.show...progresses
C.show...progress
D.shows...progress
第5题:
【C6】
A.punishes
B.defeats
C.tells
D.shows
第6题:
下面哪条语句,可以产生与下面程序相同的结果。 data invest; money=1000; do until(money gt 5000); Year+1; money+(money*0.10); end; run;
A.do while(money ge 5000);
B.do while(money =5000);
C.do while(money le 5000);
D.do while(money >5000);