把当前目录下的filel. txt复制为file2. txt,正确的命令是 A: copy filel. txt file2. txt B: cp filel.txt I file C: cat file2. txt filel. txt D: cat file. txt > file2. txtt
把当前目录下的filel. txt复制为file2. txt,正确的命令是 A: copy filel. txt file2. txt B: cp filel.txt I file C: cat file2. txt filel. txt D: cat file. txt > file2. txtt
从以下四个选项中,选出能成功以覆盖的方式将标准错误重定向到file文件中的选项。 ( ) A: gcc hello.c 2 B: gcc hello.c 1 C: gcc hello.c 2>file D: gcc hello.c 2>>file
从以下四个选项中,选出能成功以覆盖的方式将标准错误重定向到file文件中的选项。 ( ) A: gcc hello.c 2 B: gcc hello.c 1 C: gcc hello.c 2>file D: gcc hello.c 2>>file
如何定义一个文件读写变量? A: FILE *file; B: FILE file; C: FILE &file; D: file *file;
如何定义一个文件读写变量? A: FILE *file; B: FILE file; C: FILE &file; D: file *file;
用ls –l file命令显示文件file,若文件file为链接文件,存取权限为文件主和同组用户可读写,其他用户只读,以下哪个符合要求?( ) A: -rw-rw-r-- 2 hel-s users 56 Sep 09 11:05 file B: lrw-rw-rw- 2 hel-s users 56 Sep 09 11:05 file C: drwxr—r—1 hel users 1024 Sep10 08:11 file D: lrw-rw-r--hel users 2024 Sep 12 08:12 file
用ls –l file命令显示文件file,若文件file为链接文件,存取权限为文件主和同组用户可读写,其他用户只读,以下哪个符合要求?( ) A: -rw-rw-r-- 2 hel-s users 56 Sep 09 11:05 file B: lrw-rw-rw- 2 hel-s users 56 Sep 09 11:05 file C: drwxr—r—1 hel users 1024 Sep10 08:11 file D: lrw-rw-r--hel users 2024 Sep 12 08:12 file
当执行gcc -c hello.c 2>file命令时,系统会将执行命令时的__________输出到文件file中
当执行gcc -c hello.c 2>file命令时,系统会将执行命令时的__________输出到文件file中
当执行gcc -c hello.c 2>file命令时,系统会将执行时的输出到文件file中
当执行gcc -c hello.c 2>file命令时,系统会将执行时的输出到文件file中
以长格式列出当前用户家目录下文件名以file开头,跟着2到5之间的一个数字的所有文件(提示,结合ls 命令) A: ls -l ~/file[2-5]* B: find ~ -name "file[2-5]*" C: find ~ -name "file[2-5]*" -exec ls -l {} \; D: ls -a ~/file[2-5]* E: ls -l ~/file[2-5] F: find ~ -name "file[2-5]?"
以长格式列出当前用户家目录下文件名以file开头,跟着2到5之间的一个数字的所有文件(提示,结合ls 命令) A: ls -l ~/file[2-5]* B: find ~ -name "file[2-5]*" C: find ~ -name "file[2-5]*" -exec ls -l {} \; D: ls -a ~/file[2-5]* E: ls -l ~/file[2-5] F: find ~ -name "file[2-5]?"
创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");
创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");
下列__________说法是正确的?I:File file = new File("input.txt");try (Scanner input = new Scanner(file)) { String line = input.nextLine();}II:try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}III:File file;try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}IV:File file;Scanner input;try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine();} A: I B: II C: III D: IV
下列__________说法是正确的?I:File file = new File("input.txt");try (Scanner input = new Scanner(file)) { String line = input.nextLine();}II:try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}III:File file;try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}IV:File file;Scanner input;try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine();} A: I B: II C: III D: IV
To read the entire remaining contents of the file as a string from a file object infile, which one should be used ? ( ) A: infile.read(2) B: infile.readline() C: infile.readlines() D: infile.read()
To read the entire remaining contents of the file as a string from a file object infile, which one should be used ? ( ) A: infile.read(2) B: infile.readline() C: infile.readlines() D: infile.read()