Which function enforces logical data throughput rates that are below the actual physical line rate of a port?()A.rate limitingB.data policingC.classificationD.bandwidth limiting

题目
Which function enforces logical data throughput rates that are below the actual physical line rate of a port?()

A.rate limiting

B.data policing

C.classification

D.bandwidth limiting


相似考题
更多“Which function enforces logical data throughput rates that are below the actual physical line rate of a port?() ”相关问题
  • 第1题:

    Asynchronous Transfer Mode(ATM)is a(16)that promises to change the fabric of local and wide area communications.The key advantage of ATM is the capability to move voice, data, graphics and(17)at speeds of up to 2 gigabits per second.An ATM switch allows you to create a(18)network that is completely independent from the(19)configuration of the network.ATM uses a(20)called cell switching to convert data into fixed length cells of 53 bytes each, so they can be switched very quickly and efficiently.

    A.technology

    B.video images

    C.logical

    D.physical


    正确答案:A

  • 第2题:

    阅读以下说明和Java程序,将应填入(n)处的字句写在对应栏内。

    [说明]

    下面程序输出一个矩形面积,以及矩形区域上的假想的作物产量。

    [Java程序]

    public class MainJava {

    public static void main(String[] args){

    Lot_size small=new Lot_size();

    Lot_size medium=new Lot_size();

    small.set(5,5,5,25);

    medium.set(10,10,10,50);

    System.out.println("For a small lot of area"

    +small.get_area()+"\n");

    System.out.println("the actual crops are $"

    +small.get_data2()+"\n");

    System.out.println("and ideal crops are $"

    +small.get data()+"\n");

    System.out.println("For a medium lot of area"

    +medium.get_area()+“\n”);

    System.out.println("the actual crops are $"

    +medium.get_data2()+"\n");

    System.out.println ("and ideal crops are $"

    +medium.get_data()+"\n");

    }

    }

    class Crop_assessment{

    private int actual_crop;

    private int ideal_crop;

    public void set(int in_actual,int in ideal){

    actual_crop=in_actual;

    ideal_crop=in_ideal;

    }

    public int get_actual_crop(){return (1) ;}

    public int get_ideal_crop()(return (2) ;}

    }

    class Lot_size{

    private int length;

    private int width;

    private Crop_assessment crop= (3) ;

    public void set(int 1,int W,int a,int i){

    length=1;

    width=W;

    crop.set(a,i);

    }

    public int get_area(){return length*width;}

    public int get_data()freturn (4) ;}

    public int get_data2()(return (5) ;}

    }


    正确答案:(1) return actual_crop (2) return ideal_crop (3) new Crop_assessment() (4) crop.get_ideal_crop (5) crop.get_actual_crop()
    (1) return actual_crop (2) return ideal_crop (3) new Crop_assessment() (4) crop.get_ideal_crop (5) crop.get_actual_crop() 解析:本题以Java语言为载体,考查面向对象程序设计中的几个重要概念—类的嵌套及函数的使用。
    本题的功能是通过已定义的粮食收成类定义了一个计算特定矩形域上粮食收成的类,在主函数中定义了两个对象,并调用了相应的函数,来输出理想和实际的粮食产量。
    首先,由于Crop assessment定义的成员数据缺省为私有的,所以想要获得实际和理想的粮食产量,要通过两个公有成员函数,所以(1)处应填入“return actual_crop”,(2)处应填入“return ideal_crop”。
    其次,在类Lot size中,由于我们要反映矩形域上的粮食产量,所以我们在类中嵌套定义了一个类,Java中对象需要实例化,故(3)应填入“new Crop_assessment()”。
    最后,由于我们想通过Lot_size类中的get_data和get_data2函数得到粮食产量,但由于这两个成员数据是私有函数,所以我们必须通过定义的对象调用它,所以(4)应填入“crop.get_ideal_crop()”,(5)应填入“crop.get_actual_crop()”。

  • 第3题:

    已知小程序中网络请求的语法结构如下: wx.request({ url:'...', data:{ ... }, success:function(res){ ... } }) 其中关于参数data的描述不正确的是?

    A.data是必填内容,不可以删除

    B.data的大括号内部可以空着不填写任何内容

    C.data的大括号内部可以填写1个或多个“名称/值”

    D.data是用于为请求的地址附带请求参数的


    data是必填内容,不可以删除

  • 第4题:

    以下PHP常量中,属于魔术常量的有()。

    A.__FILE__

    B.__ROOT__

    C.__LINE__

    D.__FUNCTION__


    参考答案:A, C, D

  • 第5题:

    The relative pronoun "which" in the last paragraph (Line 6) refers to (  ).

    A.experts
    B.periods
    C.theories
    D.issues

    答案:D
    解析:

  • 第6题:

    4、已知小程序中网络请求的语法结构如下: wx.request({ url:'...', data:{ ... }, success:function(res){ ... } }) 其中关于参数data的描述不正确的是?

    A.data是必填内容,不可以删除

    B.data的大括号内部可以空着不填写任何内容

    C.data的大括号内部可以填写1个或多个“名称/值”

    D.data是用于为请求的地址附带请求参数的


    A