【单选题】【消耗次数:1】
以下标识符中不全是保留字的是(????)
case for int
default then while
bool class long
goto return char
参考答案:
复制
纠错
相关题目
【单选题】 以下标识符中不全是保留字的是()
①  case for int
②  default then while
③  bool class long
④  goto return char
【单选题】 以下标识符中不全是保留字的是()。
①  caseforint
②  defaultthenwhile
③  boolclasslong
④  gotoreturnchar
【单选题】 以下标识符中不全是保留字的是()。
①  caseforint
②  defaultthenwhile
③  boolclasslong
④  gotoreturnchar
【单选题】 以下标识符中哪项是不合法的( )
①  const
②  $double
③  hello
④  BigMeaninglessName
【单选题】 作为语句标号使用的C保留字case和default只能用于( )语句中。
①  if
②  for
③  switch
④  while
【单选题】 作为语句标号使用的C保留字case和default只能用于( )语句中。
①  if
②  for
③  switch
④  while
【单选题】 选出下列标识符中不是合法的标识符的是()。
①  hot_do
②  cat1
③  _pri
④  2ab
【单选题】 以下函数的返回结果是() int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放
【单选题】 以下函数的返回结果是(????) int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放
【单选题】 以下函数的返回结果是( )。 int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度B.将字符串x连接到字符串p后面
②  将字符串x复制到字符串p中
③  将字符串x反向存放
随机题目
【单选题】 下面说法不正确的是( ) 。
①  抽象类既可以做父类,也可以做子类
②  abstract 和 final 能同时修饰一个类
③  抽象类中可以没有抽象方法,有抽象方法的类一定是抽象类或接口
④  声明为 final 类型的方法不能在其子类中重新定义
【单选题】 Java中( )。
①  一个子类可以有多个父类,一个父类也可以有多个子类
②  一个子类可以有多个父类,但一个父类只可以有一个子类
③  一个子类可以有一个父类,但一个父类可以有多个子类
④  上述说法都不对
【单选题】 下列说法正确的有()
①  class中的构造函数不可省略
②  构造函数必须与class同名,但方法不能与class同名  
③  构造函数在一个对象被new时执行 
④  一个class只能定义一个构造函数
【单选题】 定义一个类,必须使用的关键字是( )
①  public
②  class
③  interface
④  static
【单选题】 下述概念中不属于面向对象方法的是( )。
①  对象、消息
②  继承、多态
③  类、封装
④  过程调用
【单选题】 类 Teacher 和 Student 是类 Person 的子类; Teacher t; Student s; // t and s are all non-null. if (t instanceof Person ){ s=(Student)t; } 最后一条语句的结果是:( )
①  将构造一个Student 对象;
②  表达式是合法的;
③  表达式是错误的;
④  编译时正确, 但运行时错误。
【单选题】 下列程序段执行后的结果是( )。 String s = new String(abcdefg); for (int i=0; i<s.length(); i+=2){ System.out.print(s.charAt(i)); }
①  aceg
②  ACEG
③  abcdefg
④  abcd
【单选题】 阅读以下代码: import java.io.*; import java.util.*; public class foo{ public static void main (String[] args){ String s; System.out.println(s= + s); } } 输出结果应该是:( )
①  代码得到编译,并输出“s=”
②  代码得到编译,并输出“s=null”
③  由于String s没有初始化,代码不能编译通过
④  代码得到编译,但捕获到 NullPointException异常
【单选题】 访问修饰符作用范围由大到小是( )
①  private-default-protected-public
②  public-default-protected-private
③  private-protected-default-public
④  public-protected-default-private
【单选题】 有以下方法的定义,请选择该方法的返回类型( )。 ReturnType method(byte x, double y) { return (short)x/y*2; }
①  byte
②  short
③  int
④  double