网络优化考试

When a mobile of B class is on the state of standby,what MM information is registered in SGSN?()A、LAIB、CIC、RAID、None

题目

When a mobile of B class is on the state of standby,what MM information is registered in SGSN?()

  • A、LAI
  • B、CI
  • C、RAI
  • D、None
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

( 25 )有如下模板声明:

template <typename T1, typename T2> class A;

下列声明中,与上述声明不等价的是

A ) template <class T1, class T2> class A;

B ) template <class T1, typename T2> class A;

C ) template <typename T1, class T2> class A;

D ) template <typename T1, T2> class A;


正确答案:D

第2题:

The pace of modern society get increasingly fast, but it get even faster when mobile phone comes into play.()


正确答案:对

第3题:

B

Jack is a famous writer now.But he said he was not a good student when he was young.He was often late for class and didn’t like doing his homework. Sometimes he slept in class while the teacher was teaching.He didn't understand much, but he always thought he under-stood everything..

One day the teacher asked the students a question, "When John was ten years old, his brother was twenty. John is fifteen now and how old is his brother?" Jack answered, "That's easy. His brother is twice as old as John, so he is now thirty. "

Another time, the teacher in a science class asked, "When it thunders(打雷) , why do we always see the light before we hear the sound? "But, Miss White," said Jack quickly, "can't you .see our eyes are in front of our ears?"

The third time, the teacher in a biology class asked, "Why can fish swim in the water?" "But, Miss White," said Jack quickly, "don't you know fish can-t walk on land?"

( )26.Jack was not ________. when he was young.

A.strong

B.lazy

C.clever

D.well


正确答案:C
26.C【解析】由第一段可知Jack小时候并不聪明,也不勤奋,故选C.

第4题:

当运算符重载为成员函数时,如果函数参数表中没有参数,则表明该重载为单目运算符,操作数就为该对象本身;如果函数参数表中有一个参数,则表示该重载为双目运算符,另外一个操作数为该对象本身。

A.template<class T1,class T2>class A;

B.template<class T1,typename T2>class A;

C.template<typename T1,class T2>class A;

D.template<typename T1,T2>class A;


正确答案:D
解析:在模板定义中,一般情况下,class和typename可以互换。在选项D中,T2没有类型参数限制定义,所以和题干给出的定义不同。

第5题:

下列模板的声明中,正确是A.templateB.templateC.templateD.

下列模板的声明中,正确是

A.template<T>

B.template<class T1,T2>

C.template<class T1,class T2>

D.template<class T1 ;class T2>


正确答案:C
解析:本题考核模板的定义。模板定义的类型参数表>中包含一个或多个由逗号分隔的类型参数项,每一项由关键字class后跟一个用户命名的标识符,此标识符为类型参数,它不是一种数据类型,但可以同一般数据类型一样使用。在使用类模板时,必须将其实例化,即用实际的数据类型代替它。

第6题:

下列对模板的声明中,正确的是A.templateB.templateC.template

下列对模板的声明中,正确的是

A.template<T>

B.template<class T1,T2>

C.template<class T1,class T2>

D.tamplate<class T1;class T2>


正确答案:C
解析:本题考核模板的定义。模板定义的类型参数表>中包含一个或多个由逗号分隔的类型参数项,每一项由关键字class后跟一个用户命名的标识符,此标识符为类型参数,它不是一种数据类型,但可以同一般数据类型一样使用。在使用类模板时,必须将其实例化,即用实际的数据类型代替它。

第7题:

有如下模板声明:

template<typename T1,typename 12>class A;

下列声明中,与上述声明不等价的是

A.template<class T1,class T2>class A;

B.template<class T1,typename T2>class A;

C.template<typename TI,class T2>class A;

D.template<typename T1,T2>class A;


正确答案:D
解析:定义函数模板时可以使用多个类型参数,这时每个类型参数前面都要加上关键字class或typename,其间用逗号分隔。

第8题:

下列是模板声明的开始部分,其中正确的是A.templateB.templateC.template

下列是模板声明的开始部分,其中正确的是

A.template<T>

B.template<class T1,T2>

C.template<class T1,class T2>

D.template<class T1;class T2>


正确答案:C
解析:本题考核模板的声明。模板声明的开始部分为:template类型形参表>。其中,类型形参表>可以包含基本数据类型,也可以包含类类型。类型形参需要加前缀class。如果类型形参多于一个,则每个类型形参都要使用class。形参表中的参数是惟一的,而且至少在函数定义体中出现厂次。形参表中至少有一个形参的类型必须用类型形参表>中的形参来定义。所以只有C选项的声明是正确的。

第9题:

下面不属于同一函数模板的是()。A.template t1 max(t1 &a,t1 &b) {…}template<

下面不属于同一函数模板的是( )。

A.template<class t1> t1 max(t1 &a,t1 &b) {…}template<class t2> t2 max(t2 &a,t2 &b) {…}

B.template<class t1>t1 max(t1 a,t1 b){…}template<class t2>t2 max(t2 &a,t2 &b){…}

C.template<class t1> t1 max(t1 * a,t1 * b) {…} template<class t2> t2 max(t2 &a,t2 &b) {…}

D.template<class t1>t1 max(t1 a,t1 b){…}template<class t2>t2 max(t2 &a,t2 &b,t2 c){…}


正确答案:D
解析:函数模板的重载是靠模板参数的数量不同来区分的,因为函数模板是抽象的,有待于进一步实例化,所以靠参数类型无法区别调用哪个函数模板。

第10题:

下列对模板的声明,正确的是()。A.templateB.templateC.template

下列对模板的声明,正确的是( )。

A.template<T>

B.template<class T1,T2>

C.template<class T1,class T2>

D.template<class T1;class T2>


正确答案:C

更多相关问题