Oracle认证考试

In Real Operations Automation, we have Domain Template and WebLogic Scripting Tool for provisioning and configuration respectively.  Which are the other two elements ?()A、 Weblogic Cluster B、 Weblogic CacheC、 Weblogic GridD、 Weblogic Deployment 

题目

In Real Operations Automation, we have Domain Template and WebLogic Scripting Tool for provisioning and configuration respectively.  Which are the other two elements ?()

  • A、 Weblogic Cluster 
  • B、 Weblogic Cache
  • C、 Weblogic Grid
  • D、 Weblogic Deployment 
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

We are engaged in the development of real ________.

A、establishment

B、state

C、estate


参考答案:C

第2题:

An on-line virtual supermarket ______ the real supermarket, which makes it feel so real.

A stimulates ;

B simulates ;

C simulators


参考答案:B

第3题:

Mark Twain is the author’s ______.

A、real name

B、a pen name


正确答案:B

第4题:

In “It doesn't matter how he did his work.”, “It” is used as the ___.

A. formal subject

B.formal object

C.real subject

D.real object


答案:A

解析:句意为:他怎样做他的工作并不重要。it在这做主语,排除B、D选项;但是其并无实际语义,只是为满足语法上的需要,避免句子头重脚轻,代指how he did his work,是形式主语,所以答案选A。

第5题:

The statements concerning nominal and real interest rate are true except that ______.

A.the nominal interest rate is the growth rate of your money

B.the real interest rate is the growth rate of your purchasing power

C.the nominal rate is the real interest rate deducted by the rate of inflation

D.all of the above statements


正确答案:C
解析:名义利率减去通货膨胀率等于实际利率。nominal interest rate名义利率。

第6题:

真实收益(Real benefits)


参考答案:

真实收益是指能够增加社会福利的收益。(货币收益与此不同,它表示由于当经济向另一个计划调整引起相对价格改变时所带来的收益增加。)


第7题:

设有定义: struet complex {int real,unreal;)datal={1,8},data2; 则以下赋值语句中错误的是( )。

A.data2=datal;

B.data2={2,6};

C.data2.real=datal.real;

D.data2.real=datal.unreal;


正确答案:B
B中的赋值方式仅限于在结构说明时,对每个变量成员初始化。在程序中对结构体成员赋值,或采用选项A中的整体赋值方式,或采用选项C、D中对结构成员依次赋值。

第8题:

( 36 ) 设有定义 :

struct complex

{ int real,unreal; } data1={1,8},data2;

则以下赋值语句中错误的是

A ) data2=data1;

B ) data2= ( 2,6 ) ;

C ) data2.real=data1.real;

D ) data2.real=data1.unreal;


正确答案:B

第9题:

RTF格式的全称是_____。

A.Rich Text Format

B.Real Text Format

C.Real Test Format

D.Rich Test Format


答案:A

第10题:

下面是复数类complex的定义,其中作为友元函数重载的运算符“--”的功能是将参数对象的实部减1,然后返回对该对象的引用;请补充完整。

class complex

{

private:

int real;

int imag;

public:

complex(int r=0,int i=0):real(r),imag(i){}

void show ()

{

cout<<real<<(imag<0?"-":"+")<<imag<<'i';

}

______;

};

complex& operator -- (complex &c)

{

c.real --;

return c;

}


正确答案:friend complex& operator--(complex&)
friend complex& operator--(complex&) 解析:本题考核运算符重载的定义。程序要填入的是运算符函数operator--在类complex中的声明,运算符“--”是作为友元函数重载的。根据题目给出的条件,易得到答案。

更多相关问题