更多“关于“保密”的表达法,It should not get (). ”相关问题
  • 第1题:

    ______ it rain tomorrow moring, the loading ______.

    A.Should / will be postponed

    B.If / shall be postponed

    C.Should / would be postponed

    D.If / has to be postponed


    正确答案:C
    一旦明天早上下雨,装货将被延迟。

  • 第2题:

    关于属性的使用正确的是

    A.private int num; public string Num { get{return num;} set{num=value;} }

    B.private int num; public int Num { get{return num;} set{num=value;} }

    C.private int num; public int Num { get{num=value;} set{return num;} }

    D.private int num; private int Num { get{return num;} set{num=value;} }


    private int num; public int Num { get{return num;} set{num=value;} }

  • 第3题:

    6、关于属性的使用正确的是

    A.private int num; public string Num { get{return num;} set{num=value;} }

    B.private int num; public int Num { get{return num;} set{num=value;} }

    C.private int num; public int Num { get{num=value;} set{return num;} }

    D.private int num; private int Num { get{return num;} set{num=value;} }


    private int num; public int Num { get{return num;} set{num=value;} }

  • 第4题:

    I__________have been there,but I__________not find the time.

    A.should;would
    B.should;could
    C.might;could
    D.could;could

    答案:B
    解析:
    考查情态动词的用法。句意为:“我本应该去那里,但我没时间。”should have done表示“过去本应做的事而实际上并没有做”,常含有责备、遗憾的语气。

  • 第5题:

    表达式 {1:'a', 2:'b', 3:'c'}.get(4, 'd') 的值为___________。


    A