A technician has identified prohibited content on a user’s hard drive. Which of the following should be done NEXT?()A. Warn the userB. Report through proper channelsC. Wipe the driveD. Give the computer back to the user

题目
A technician has identified prohibited content on a user’s hard drive. Which of the following should be done NEXT?()

A. Warn the user

B. Report through proper channels

C. Wipe the drive

D. Give the computer back to the user


相似考题
参考答案和解析
参考答案:B
更多“A technician has identified prohibited content on a user’s hard drive. Which of the following should be done NEXT?() ”相关问题
  • 第1题:

    You have been asked to configure your MX240 with a default route toward your upstream ISP at IP address 192.168.100.1. Which command successfully completes this task?()

    A. user@router# set routing-options static route 0.0.0.0/0 next-hop 192.168.100.1

    B. user@router# set routing-options default route 0.0.0.0/0 next-hop 192.168.100.1

    C. user@router# set forwarding-options static route 0.0.0.0/0 next-hop 192.168.100.1

    D. user@router# set protocols default route 0.0.0.0/0 next-hop 192.168.100.1


    参考答案:A

  • 第2题:

    在单链表结点p之后插入结点s,正确的操作是()。

    A.p.next=s;s.next=p.next;

    B.s.next=p.next;p.next=s;

    C.p.next=s;p.next=s.next;

    D.p.next=s.next;p.next=s;


    s.next=p.next; p.next=s;

  • 第3题:

    基于协同过滤的推荐系统翻译为:

    A.Content-based recommender systems

    B.Collaborative Filtering based recommender systems

    C.User-based Recommendation

    D.Item-based Recommendation


    Collaborative Filtering based recommender systems

  • 第4题:

    在循环双链表的p节点之后插入s节点的操作是______。

    A.p→next=s; p→next→prior=s; s→prior=p; S→next=p→next;

    B.s→next=p; s→next=p→next; p→next=S; p→next→prior=s;

    C.p→next=s; s→prior=p; p→next→prior=s; s→next=p→next;

    D.s→prior=p; s→next=p→next; p→next→prior=s; p→next=s;


    正确答案:D

  • 第5题:

    基于内容的推荐系统翻译为____________。

    A.Content-based recommender systems

    B.Collaborative Filtering based recommender systems

    C.User-based Recommendation

    D.Item-based Recommendation


    A

  • 第6题:

    在一个单链表中,若删除s所指结点的直接后继结点,则执行()。

    A.p=s->next; s->next=p->next; free(p);

    B.p=s->next; free(p); s->next=s->next->next;

    C.s->next=s->next->next; free(s);

    D.s->next=s->next->next; p=s->next; free(p);


    B