【单选题】【消耗次数:1】
设<imgwidth="50"height="17"src="http://wljy.whut.edu.cn//uploadfiles/word/lsss002.files/image018.png">,则有(   )
<imgwidth="35"height="16"src="../uploadfiles/word/lsss002.files/image019.png">
<imgwidth="37"height="18"src="../uploadfiles/word/lsss002.files/image020.png">
<imgwidth="37"height="19"src="../uploadfiles/word/lsss002.files/image021.png">
<imgwidth="38"height="20"src="../uploadfiles/word/lsss002.files/image022.png">
参考答案:
复制
纠错
相关题目
【单选题】 在采访中,记者既要&quot;身入&quot;,又要&quot;心入&quot;。&quot;心入&quot;,就是要有强烈的社会责任感, 要对客观事物进行由表及里的分析,还要().
①  A.广泛地接触群众
②  B.多方面地挖掘材料
③  C.细心地掂量各种材料的价值
④  D.细心地掂量各种材料的价值
【多选题】 Whatdoestheword&quot;steal&quot;(thelastpara.)mean?<br/>
【判断题】 新闻用事实说话,即写出事实并把事实说清楚,是&quot;根据事实来描写事实&quot;而不是&quot;根据希望来描写事实&quot;().
①  正确
②  错误
【单选题】 在公式(<imgwidth="26"height="20"src="http://wljy.whut.edu.cn//uploadfiles/word/lsss002.files/image034.png">)F(x,y)→(<imgwidth="12"height="15"src="http://wljy.whut.edu.cn//uploadfiles/word/lsss002.files/image035.png">y)G(x,y)中变元x是(   )
①  自由变元
②  约束变元
③  既是自由变元,又是约束变元
④  既不是自由变元,又不是约束变元
【判断题】 在消息写作上,要力求避免所谓的&quot;三重复&quot;,是指避免标题、导语、主体的重复().
①  正确
②  错误
【单选题】 F.H.奥尔波特(1924)指出,社会心理学是&quot;研究个体的社会行为和()的学科&quot;。
①  A.社会心理
②  B.社会意识
③  C.社会知觉
④  D.社会观念
【单选题】 系统在<imgwidth="56"height="24"src="http://wljy.whut.edu.cn//uploadfiles/word/zdkzll002.files/image003.png">作用下的稳态误差<imgwidth="52"height="24"src="http://wljy.whut.edu.cn//uploadfiles/word/zdkzll002.files/image004.png">,说明()
①  型别<imgwidth="38"height="20"src="../uploadfiles/word/zdkzll002.files/image005.png">; 
②  系统不稳定;
③  输入幅值过大;
④  闭环传递函数中有一个积分环节。
【判断题】 习近平总书记在党的十九届五中全会上提出&quot;新发展理念&quot;,是指:创新、协调、绿色、法治、共享。
①  正确
②  错误
【单选题】 哪个省最早提出了“四换三名&quot;?
①  A.广东
②  B.浙江
③  C.江苏
④  D.福建
【单选题】 执行下面程序:main(){intx=1,y=1,z=1;x=x+++y+++z++;printf(&quot;%d,%d,%d&quot;,x,++y,z++);}输出的结果为()
①  4,3,2
②  3,3,2
③  3,3,3
④  3,2,2
随机题目
【单选题】 下列程序段执行后的结果是( )。 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
【单选题】 有一段java 应用程序,它的主类名是a1,那么保存它的源文件名可以是( )
①  a1.java
②  a1.class
③  a1
④  都对
【单选题】 为AB类的一个无形式参数无返回值的方法method书写方法头,使得使用类名AB作为前缀就可以调用它,该方法头的形式为( )。
①  static void method( )
②  public void method( )
③  final void method( )
④  abstract void method( )
【单选题】 编译Java源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为( )。
①  .byte
②  .class
③  .html
④  .exe
【单选题】 下面哪个函数是public void method(){ }的重载函数?( )
①  public void method( int m){ }
②  public int method(){ }
③  public void method2(){ }
④  public int method(int m,float f ){ }
【单选题】 在使用interface声明一个接口时,只可以使用( )修饰符修饰该接口。
①  private
②  protected
③  private protected
④  public
【单选题】 MAX_LENGTH 是int 型public 成员变量,变量值保持为常量1,用简短语句定义这个变量。( )
①  public int MAX_LENGTH=1;
②  final int MAX_LENGTH=1;
③  final public int MAX_LENGTH=1;
④  public final int MAX_LENGTH=1.