没有搜到到结果?点击这里求解答/求资源。
【单选题】
以下声明合法( )

default String s;
public final static native int w( )
abstract double d;
abstract final double hyperbolicCosine( )
【判断题】
在XML文档中,注释可以出现在标记和声明中。

正确
错误
【判断题】
JavaScript不声明变量数据类型,变量可直接使用。

正确
错误
【单选题】
下列声明语句中错误()。

Constvar1=123
Dimvar2=’abc’
Dima,basstring
Dimvar3asinteger
【单选题】
以下正确函数声明形式( )。

double fun(int x,int y)
double fun(int x;int y)
double fun(int x,int y);
double fun(int x, y);
【单选题】
以下正确函数声明形式( )。

double fun(int x,int y)
double fun(int x;int y)
double fun(int x,int y);
double fun(int x, y);
【单选题】
下面对模板声明,正确( )。

template
templateclass T1, T2
templateclass T1, class T2
templateclass T1; class T2
【单选题】
下面对模板声明,正确( )。

template
template
template
template
【单选题】
下面声明数组写法错误( )。

int a[ ];
int[ ] a;
int[3][ ] a;
int[ ][3] a;
【单选题】
下列哪个类声明正确?( )。

abstract final class HI{}
abstract private move(){}
protected private number;
public abstract class Car{}