【判断题】
4.Java系统的标准输入对象是System.in,标准输出对象有两个,分别是标准输出System.out和标准错误输出System.err。( )
【单选题】
Java系统标准输出对象System.out使用的输出流是( )。
【判断题】
java.util.Scanner(System.in)可以接收用户从键盘输入的简单数据。
【单选题】
以下程序的运行结果是:( )
public class Increment{
public static void main(String args[]){
int c;
c = 2;
System.out.println(@@;
System.out.println(c++);
System.out.println(@@;
}
}
【单选题】
getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果( )
public void getCustomerInfo() {
try { // do something that may cause an Exception
} catch (java.io.FileNotFoundException ex){
System.out.print(FileNotFoundException!);
} catch (java.io.IOException ex){
System.out.print(IOException!);
} catch (java.lang.Exception ex){
System.out.print(Exception!);
}
}
③
FileNotFoundException!IOException!
④
FileNotFoundException!IOException!Exception!
【单选题】
System.out.println(5 + 2);的输出结果应该是( )。
【单选题】
The thieves _____ the possibility of the alarm system sounding
【简答题】
要在一个类中包含System.Data命名空间的语句是[填空1]。
【判断题】
GIS是Geographiclnformation System的简称,即全球卫星定位系统。
【判断题】
printf()和 format()方法使用指定格式字符串和参数,将格式化字符串写入到PrintStream类型的输出流(System.out对象)中。