参考答案和解析
参考答案:B
更多“To determine whether a particular file has a virus by only inspecting a few initial packets before receiving the entire file, which UTM feature do you enable?() ”相关问题
  • 第1题:

    请选择下面File参数书写正确的一项( )。

    A.File("d:\\file\test3.txt")

    B.File("d;\\file\\test3.txt")

    C.File("d:\file\test3.txt")

    D.File("d:\file\\test3.txt")


    正确答案:B
    解析:本题主要考查Java语言中对文件的打开操作。下面3种方法都可以生成一个文件对象或者一个文件夹对象: public File(String pathName);
    public File(String parentStr,String childStr);
    public File(File parentStr,String childStr)。
    选项A错误,text3.txt前应为“\\”;选项B正确;选项C错误,应将“\”换成“\\”:选项D错误,file前应为“\\”。故本题答案是B。

  • 第2题:

    执行下列命令后,当前打开的数据库文件名是Number="3"File="File"+NumberUSE&FileA.File3B.&a

    执行下列命令后,当前打开的数据库文件名是 Number="3" File="File"+Number USE &File

    A.File3

    B.&File

    C.FileNumber

    D.File


    正确答案:A
    解析:通过执行题目所示的程序段{Number="3"File="File"+Number}变量File的值为“File3”。而在VisualFoxPro中,命令USE的含义是打开数据库,因此本题中应该的打开的数据库为File3,因此答案为A。

  • 第3题:

    下面能完成一次性创建名字分别为file01、file02、file03、file04、file05、file06、file07、file08、file09、file10十个空文件的命令是()。

    A.touch file01 file02 file03 file04 file05 file06 file07 file08 file09 file10#B.touch file{01..10}#C.touch {file01..file10}#D.touch file{001..10}
    {};dict(([1,2],[3,4]));{1:2}

  • 第4题:

    Files /tmp/file2 and /tmp/file3 are hard linked to /tmp/file1.What will the result be if a user makes changes to /tmp/file2 at the same time another user tries to delete /tmp/file1?()

    A.All three files will contain the updates and will remain available.

    B.All three files will be deleted and no changes will be made to /tmp/file2.

    C.Only /tmp/file2 will contain the updates, but /tmp/file3 will remain available.

    D.Both /tmp/file2 and /tmp/file3 will contain the updates and will remain available.


    参考答案:D

  • 第5题:

    阅读FORTRAN程序:
    OPEN(8,FILE=FILE2 DAT,STATUS=NEW)
    DO 10 I=1,3
    WEITE(8,(4I4)JI+I,J=1,4)
    10 CONTINUE
    CLOSE(8)
    END
    程序运行后,数据文件FILE2,DAT的内容是:


    答案:A
    解析:

  • 第6题:

    使用cat file1 file2 <file3命令可以将文件file1和file2合并后放入file3中?


    错误