参考答案和解析
正确答案:D
更多“Which OSI layer does a Router operate at?A.the Physical LayerB.the Data Link LayerC.the Tr ”相关问题
  • 第1题:

    设链式栈中结点的结构为(data,link),且top是指向栈顶的指针。若想摘除链式栈的栈顶结点,并将被摘除结点的值保存到x中,则应执行的操作是(32)。

    A.x=top->data;top=top->link;

    B.top=top->link;x=top->data;

    C.x=top;top=top->link;

    D.x=top->data;


    正确答案:A
    解析:x先取栈顶结点的值,并从栈中去掉这个结点。

  • 第2题:

    Refer to the exhibit. During the process of configuring a virtual link to connect area 2 with the backbone area, the network administrator received this console message on R3:*Mar 1 00:2 5:01.084: %OSPF -4- ERRRCV: Received invalid packet: mismatch area ID, from backbone area must be virtual link but not found from 20.20.20.1, Serial 0 .How should the virtual link be configured on the OSPF routers to establish full connectivity between the areas?()

    A.R1(config - router)# area 0 virtual - link 1.1.1.1R3(config - router)# area 2 virtual - link 3.3.3.3

    B.R1(config - router)# area 1 virtual - link 2.2.2.2 R3(config - router)# area 1 virtual - link 2.2.2.2

    C.R1(config - router)# area 1 virtual - link 20.20 .20.2 R3(config - router)# area 1 virtual - link 30.30.30.2

    D.R1(config - router)# area 1 virtual - link 30.30.30.3 R3(config - router)# area 1 virtual - link 20.20.20.1

    E.R1(config - router)# area 1 virtual - link 3.3.3.3 R3(config - router)# area 1 virtual - link 1.1 .1.1


    参考答案:E

  • 第3题:

    OSI is a theoretical model that shows how any two different systems can communicate with each other. Router, as a networking device operate at the()layer of the OSI model

    A.transport
    B.application
    C.network
    D.physical

    答案:C
    解析:
    OSI是Open System Interconnect的缩写,意为开放式系统互联。国际标准组织制定了OSI模型。这个模型把网络通信的工作分为7层,分别是物理层、数据链路层、网络层、传输层、会话层、表示层和应用层。路由器(Router)是运行在OSI中网络层(network)上的网络通信设备,而不是传输层(transport layer)、应用层(application layer),或物理层(physical layer),因此选C

  • 第4题:

    OSI is a theoretical model that shows how any two different systems can communicate with each other. Router, as a networking device, operate at the ______ layer of the OSI model.

    A.transport

    B.application

    C.network

    D.physical


    正确答案:C

  • 第5题:

    PPP的执行在OSI模型哪个层?()

    A.Layer3

    B.Layer4

    C.Layer2

    D.Layer5


    参考答案:C

  • 第6题:

    设链式栈中节点的结构为(data,link),且top是指向栈顶的指针。若想摘除链式栈的栈顶节点,并将被摘除节点的值保存到x中,则应执行下列()操作。

    A.x=top->data;top=top->link;
    B.top=top->link;x=top->data;
    C.x=top;top=top->link;
    D.x=top->data;

    答案:A
    解析:
    若想摘除链式栈的栈顶节点,并将被摘除节点的值保存到x中,则应执行x=top->data;top=top->link.