niusouti.com

Which command(s) will result in the smallest sized backup of the text files contained in the /staticFS filesystem?()A.tar -cvf file_system.tar /staticFS ; gzip file_system.tarB.tar -xvf /staticFS file_system.tar ; gzip file_system.tarC.tar -cvf /staticFS

题目
Which command(s) will result in the smallest sized backup of the text files contained in the /staticFS filesystem?()

A.tar -cvf file_system.tar /staticFS ; gzip file_system.tar

B.tar -xvf /staticFS file_system.tar ; gzip file_system.tar

C.tar -cvf /staticFS file_system.tar ; compress file_system.tar

D.tar -xvf file_system.tar /staticFS ; compress file_system.tar


相似考题
更多“Which command(s) will result in the smallest sized backup of the text files contained in the /staticFS filesystem?() ”相关问题
  • 第1题:

    在窗体中添加名称为Command1和名称为Command2的命令按钮以及文本框Text1,然后编写如下代码:Private sub Command1_Click() Text1.text="AB"End SubPrivate Sub Command2_Click() Text1.Text="CD"End Sub 首先单击Command1按钮,然后再单击Command2按钮,在文本框中显示 。A.AB B.CD C.ABCD D.CDAB


    正确答案:B
    【解析】本题意在考查考生对文本框Text的理解。当单击Command1时,Text1的Text变为AB;当单击Command2时,Text1的属性变为CD,故选择B,不能选C,更不能选D。

  • 第2题:

    在窗体中添加名称为Command1和名称为Command2的命令按钮测验文本框Text1,然后编写如下代码:

    PrivateSubCommand1_Click()

    Text1.Text="AB"

    EndSub

    PrivateSubCommand2_Click()

    Text1.Text="CD"

    EndSub

    首先单击Command2按钮,然后再单击Command1按钮,在文本框中显示( )

    A、AB

    B.CD

    C.ABCD

    D.CDAB


    正确答案:A

  • 第3题:

    如果用组件上传,希望获得上传文件的大小,应该怎样实现()

    A.Request.Files(“upfile”).Size

    B.UploaD.Form(“upfile”).Size

    C.UploaD.Files(“upfile”).Size

    D.Request.form(“upfile”).Size


    参考答案:C

  • 第4题:

    在窗体中添加名称为Command1和名称为Command2的命令按钮以及文本框Text1,然后编写如下代码: Private Sub Command1 Click() Text1.Text="AB" End Sub Private Sub Command2 Click() Text1.Text="CD" End Sub 首先单击Command1按钮,然后再单击Command2按钮,在文本框中显示

    A.AB

    B.CD

    C.ABCD

    D.CDAB


    正确答案:B
    解析:本题意在考查考生对文本框Text的理解。当单击Command1时,Text1的Text变为AB;当单击Command2时,Text1的属性变为CD,故选择B,不能选C,更不能选D。

  • 第5题:

    在窗体中添加名称为Command1和名称为Command2的命令按钮以及文本框Text1,然后编写如下代码: Private Sub Command1_Click( ) Text1.Text="AB" End Sub Private Sub Command2_Cliek( ) Text1.Text="CD" End Sub 首先单击Command1按钮,然后再单击Command2按钮,在文本框中显示

    A.AB

    B.CD

    C.ABED

    D.CDAB


    正确答案:B
    解析:当单击Command1时,Text1的Text变为AB;当单击Command2时,Text1的Text属性变为CD。