【单选题】● 在Excel中,A1单元格的值为-5,在B1单元格输入函数“=ABS(A1)-10” ,则 B1单元格的值为(47) 。
【单选题】在Excel中,若A1单元格中的值为-1,B1单元格中的值为1,在B2单元格中输入=SUM(SIGN(A1)+B1),则B2单元格中的值为()。 A.-1 B.0 C.1 D.2
【单选题】以下不属于杜邦STOP行为观察的内容的是
【单选题】设数组Array由以下语句定义int[] Array=new int[10];则数组的第一个元素的正确引用方法为_________。 Suppose the definition of an array is : int[] Array=new int[10], the correct option to visit the first element in array is:
【单选题】以下不属于杜邦STOP行为观察的内容的是 。
A.
程序与标准 人体功效学 现场整洁与否 现场是否封闭 程序与标准
【单选题】类模板Array的模板参数定义如下: template 则下面哪个对象的定义是错误的?( )
【单选题】关于泛型类定义中,setter方法如下,下列定义正确的是() class ArrayClass{ private T[] array; //setter 。。。 //getter public T[] getT(){ return array; } }
A.
public T setT(T[] array){ this.array = array; }
B.
public T setT(T array){ this.array = array; }
C.
public void setT(T[] array){ array = array; }
D.
public void setT(T[] array){ this.array = array; }
【单选题】如下的类模板声明 template class Array{ T * st; int size; public: Array(int s); ...... }; 类模板之定义的构造函数的形式为( )。
A.
template Array::Array(int s){......}
B.
template Array::Array (int s){......}
C.
template Array ::Array (int s){......}
D.
template Array ::Array (int s){......}