按FCA术语成交,应由买方订立运输合同或指定承运人。按惯例,当卖方被要求协助订立运输合同时,只要买方承担费用和风险,卖方也可以办理。 ( )
参考答案:对
在下面程序的空白处,填上适当的内容。 Import java.io. *: import java.util. *; class BufferTest public static void main(String args[])throws IOExeeption FileOutputStream unbuf=new FileoutputStream("test.one"); BufferedOutputStream bur=new ______ (new FileOutputStream("test.two")); System.out.println("write file unbuffered:"+time(unbuf)+"ms"); System.out.println("write file buffered:"+time(buf)+"ms"); static int time(OutputStream os)throws IOException Date then=new Date(); for(int i=0;i<50000;i++)os.write(1); os.close(); return(int)((new Date()).getTime()-then.getTime());
下面是关于PC中CPU的若干叙述: ( ) ①CPU中包含几十个甚至上百个寄存器,用来临时存放待处理的数据 ②CPU是PC中不可缺少的组成部分,它担负着运行系统软件和应用软件的任务 ③CPU的速度比主存储器低得多,使用高速缓存(cache)可以显著提高系统的速度 ④PC中只有1个微处理器它就是CPU 其中正确的是 ( )
A.①和②
B.②和③
C.②和④
D.①和④