碱基对(base pair)

题目
名词解释题
碱基对(base pair)
参考答案和解析
正确答案: 通过碱基之间氢键配对的核酸链中的两个核苷酸,例如A与T或U,以及G与C配对。
解析: 暂无解析
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

This pair of shoes isn‘t good, but that pair is ________ better.

A、 rather

B、 less

C、ever

D、hardly


参考答案:D

第2题:

有如下程序: include using namespace std; class Pair{ int m, n; public: Pair(int

有如下程序:

#include<iostream>

using namespace std;

class Pair{

int m, n;

public:

Pair(int j, int k):m(j), n(k){}

int get(){return m;}

int get()const{return m+n;)

};

int main() {

Pair a(3, 5);

const Pair b(3, 5);

cout<<a. get()<<b. get();

return 0;

}

运行时的输出结果是( )。

A) 33

B) 38

C) 83

D) 88

A.

B.

C.

D.


正确答案:B

第3题:

( 33 )有如下程序:

#include<iostream>

using namespace std;

class Pair{

int m;

int n;

public:

Pair ( int i , int j ) : m ( i ) , n ( j ) {}

boot operator > ( pair p ) const; // 须在类体外给出定义

} ;

int main () {

Pair Al ( 3,4 ) , p2 ( 4,3 ) ; p3 ( 4,5 ) ;

Cout<< ( pl>p2 ) << ( P2>P1 ) << ( p2>p3 ) << ( p3>p2 ) ;

return 0;

}

运算符函数 。 operator> 的功能是比较两个 Pair 对象的大小 , 当左边对象大时 , 返回 true , 否则返 回false 。 比较规则是首先比较两对象的 m 成员 , m 大者为大 ; 当 m 相等时比较 n , n 大者为大 。 程序输出 0101 ,下列对运算符重载函数的正确定义是

A ) bool Pair::operator> ( Pair p ) const

{if ( m!=p.m ) return m>p.m; return n>p.n;}

B ) bool Pair:;operator> ( Pair p )

{if ( m!=p.m ) return m>p.m; return n>p.n;}

C ) bool Pair::operator> ( Pair p ) const

{if ( m>p.m ) return true; return n>p.n;}

D ) bool Pair:;operator> ( Pair p )

{if ( m>p.m ) return true; return n>p.n;}


正确答案:A

第4题:

Which of the following LAN technologies is considered fast Ethernet and uses two pairs of cabling,one pair for sending and the other pair for receiving?()

A.100Base-T4

B.100Base-TX

C.100Base-X

D.100Base-FX


参考答案:B

第5题:

有如下程序: include using namespace std class Base{ int b; public: Base(int i) {

有如下程序:

include<iostream>

using namespace std

class Base{

int b;

public:

Base(int i) {b=i;}

Void disp ( ) {cout<<"Base:b="<<b<<''; }

};

class Base1:virtual public Base{

public:

Base1(int i):Base(i){}

};

class Base2:virtual public Base{

public:

Base2(int i):Base(i){}

};

class Derived:public Basepublic Base1{

int d;

public:

Derived(int i ,int j):Base1(j),Base2(j),【 】

{ d=i; }

void disp() {cout<<"Derived:d="<<d<<' ';}

};

int main()

Derived objD(1,2);objD. disp()

objD. Base::disp();

objD. Base1::disp()

objD. Base2::disp();

return 0;

}

请将程序补充完整,使程序在运行时输出:

Derivd:d=1 Base:b=2 Base:b=2 Base:b=2


正确答案:Base(j)
Base(j) 解析:因为程序在运行时输出:Derivde:d=1 Base:b=2 Base:b=2 Base:b=2,而前两个Base:b=2 Base:b=2分别来自Base1(j),Base2(j),而在程序类的声明中,Base类也具有输出Base:b=2的功能。所以,程序中应补充的代码为Base(j)。

第6题:

MotoPTP500的以太接口速率是().

A.10BASE.T

B.100BASE.T

C.10BASE.T/100BASE.T

D.10BASE.T/1000BASE.T


参考答案:C

第7题:

Ethernet 的物理层协议主要有(21)。

A.10BASE-T1000BASE-T FDDI

B.10BASE-T 100BASE-T 1000BASE-T

C.100BASE-T 1000BASE-T FDDI

D.10BASE-T 100BASE-T FDDI


正确答案:B
解析:FDDI是在令牌环网的基础上发展的使用光纤的一种高速环网标准不屑于物理层协议

第8题:

完整的核小体约有( )

A、100碱基对

B、200碱基对

C、650碱基对

D、1300碱基对

E、1500碱基对


参考答案:B

第9题:

Which of the following pin pairs remain with the same wire color for either T568A or T568B?()

A. Pair 1 & 8

B. Pair 2 & 7

C. Pair 3 & 6

D. Pair 4 & 5


参考答案:D

第10题:

WhichofthefollowingareformsofgigabitEthernetthatrequiretheuseoffiberopticcables?()

A.1000Base-CX

B.1000Base-TX

C.1000Base-SX

D.10Base-T

E.1000Base-T

F.1000Base-LX


参考答案:A, C, F