下面几个关键字均表示文件的打开方式,只能进行读不能写的是()。

A:Input B:Output C:Random D:Append

使用以下()方式打开文件时,文件指针被指向文件尾。

A:Binary B:Random C:Output D:Append

将下面Shell程序段中的空缺部分补齐,使得它可以将指定的一个或多个输入文件的内容依次添加到输出文件的末尾,如果指定的输出文件不存在,则程序应自动产生一个输出文件。
if ["$#" -lt 2 ];then
echo "usage $0 <output-file> <input file 1> [<input file 2>…]"
exit 0
fi
output="$1"
shift
for i in (61) ; do
if[-e "Si"];then # or use ’-a $i’
cat (62)
fi
done

A:"$i">$output B:"$i">>$output C:$I>$output D:$I>>$output

将下面Shell程序段中的空缺部分补齐,使得它可以将指定的一个或多个输入文件的内容依次添加到输出文件的末尾,如果指定的输出文件不存在,则程序应自动产生一个输出文件。
if ["$#”-1t 2];then
echo "usage $0<output-file><input file 1> [<input file 2>…]”
exit 0
fi
output="$1"
shift
for i in (59) ;do
if [-e"$i"];then # or use’-a $i’
cat (60)
fi
done

A:"$i">$output B:"$i">>$output C:$i>$output D:$i>>$output

列只能读不能写的文件打开方式是______。

A:Input B:Output C:Random D:Append

利用Open语句打开文件时,若省去For[模式],默认的模式是( )。

A:Output B:Input C:Append D:Random

下面程序的输出为( )。
public class Test
public static void main (String args[])
int x,y;
x=1;
y=2;
System.out.println("The output is"+x+y);

A:The output is xy B:The output is 3 C:The output is 12 D:The output is x=1 y=2

在建立文件时,默认的文件输入、输出方式是

A:Output B:Random C:Input D:Append

下面程序的输出为( )。 public class Test { public static void main (String args[]) { int x,y; x=1; y=2; System.out.println("The output is"+x+y); } }

A:The output is xy B:The output is 3 C:The output is 12 D:The output is x=1 y=2

微信扫码获取答案解析
下载APP查看答案解析