Which of the following statements best describes the relationship between a logical volume and a journaled file system (JFS)?() A.Increasing the size of a logical volume also increases the size of the file systemB.Reducing the size of a logical volume requires reducing the size of the file system firstC.Increasing the size of a file system requires increasing the size of the logical volume firstD.Increasing the size of a file system also increases the size of the logical volume when necessary

Which of the following statements best describes the relationship between a logical volume and a journaled file system (JFS)?()

A.Increasing the size of a logical volume also increases the size of the file system

B.Reducing the size of a logical volume requires reducing the size of the file system first

C.Increasing the size of a file system requires increasing the size of the logical volume first

D.Increasing the size of a file system also increases the size of the logical volume when necessary


相关考题:

You’re going to have a quiz ( )by another two in the ( )month. A. followed,followedB. followed,followingC. following,followedD. following,following

下列程序中,要求输出一个特定文件(这里是ex1.java)的相关信息,包括文件的名字,相对路径以及文件的长度。请将程序补充完整。程序运行结果如下:name:ex1.javapath:ex1.javalength:299注意:不改动程序结构,不得增行或删行。import java.io.*;public class ex1{public static void main(String[] args){File filel=new File("ex1.java");System.out println("name:"+file1.______);System.out println("path:"+file1.______);System.out println("length:"+file1.______);}}

逻辑函数TRUE的表达式为()。 A、TRUE(logical_test,value_if_true,value_if_false)B、TRUE()C、TRUE(logical1,logical2,…)D、TRUE(logical)

You are the network administrator for Ezonexam.com.You need to install Windows 2000 Professional on 75 new computers in your network. You use Setup Manager wizard to configure a fully automated installation script. file. You test the unattended installation using the fully automated installation script. file. When the installation completes you realize that the Windows 2000 Professional CD does not contain the driver for the Plug and Play video adapter used by the new computers.You want to include the correct driver for the video adapter when installing Windows 2000 Professional.What should you do? (Each correct presents part of the solution. Select three.)A.Run sysprep.exe with the -pnp parameter.B.In the UserData section of the fully automated installation script. file, specify the ProductID variable.C.In the Unattended section of the fully automated installation script. file, set the Oem PnP Drivers Path property to the location of the video driver files.D.In the Unattended section of the fully automated installation script. file, set the Oem Preinstall property to Yes.E.Copy the video driver to the i386\$OEM$\$1\VidDriver.F.Copy the video driver to the i386\$$\System32.

在程序中,用户输入一个文件名,根据用户输入显示相应文件的信息。注意:请勿修改main()主方法和其他已有语句内容,仅在横线处填入适当语句。______java.io.*;public class basic{public static void main(String[] args){InputStreamReader reader;BufferedReader in;System.out.println("请输入文件名: ");try{reader=new InputStreamReader(______);in=new BufferedReader(reader);String filename=in.readLine();File file=new File(filename);System.out.println("文件名:"+file.______);System.out.println("路径:"+file.getAbsolutePath());System.out.println("大小:"+file.length());}catch(Exception e){e.printStackTrace();}}}

JAVA File类执行下面这段程序为什么会出现异常 File file=new File(args[0]); 这句是什么意思?? importjava.io.*;importjava.util.*;publicclassFileClass{/***@paramargs*/publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstubtry{Filefile=newFile(args[0]);System.out.println(args[0]+"文件");if(file.isFile()){//是否为文件System.out.print(file.canRead()?"可读":"不可读");System.out.print(file.canWrite()?"可写":"不可写");System.out.print(file.length()+"字节");//注意不能调用数组类型File[]的length()例:File[]files=file.listFiles();不可以这么调用filess.length()}else{//列出所有文件及目录File[]files=file.listFiles();ArrayListFilefileList=newArrayListFile();for(inti=0;ifiles.length;i++){//先列出目录if(files[i].isDirectory()){//是否为目录//取得路径名System.out.println("路径"+"["+files[i].getPath()+"]");}else{//文件先存入fileList,待会再列出fileList.add(files[i]);}}//列出文件for(Filef:fileList){System.out.println(f.toString());}System.out.println();}}catch(ArrayIndexOutOfBoundsExceptione){System.out.println("using:javaFileDemopathname");}}}结果:using:javaFileDemopathname是不是创建的对象所代表的文件没有被创建成功

下列程序中,要求输出一个特定文件(这里是ex2_1.java)的相关信息,包括文件的名字,相对路径以及文件的长度。请将程序补充完整。程序运行结果如下:name:ex2_1.javapath:ex2_1.javalength: 299import java.io.*;public class ex2_1{public static void main(String[] args) {File file2_1 = new File("ex2_1.java");System.out.println("name:"+file2_1.____________ );System.out.println("path:"+file2_1.____________ );System.out.println("length:"+file2_1.____________ );}}

设有类定义如下:class InOut{String s= new String("Between");public void amethod(final int iArgs){int iam;class Bicycle{public void sayHello(){//Here}}}public void another(){int iOther;}}以下哪些语句可以安排在//Here处 ?A. System.out.println(s);B.System.out.println(iOther);C. System.out.println(iam);D. System.out.println(iArgs);

请解释R函数getwd()、setw()的作用,以及system.file(package = "base")的含义。