题目内容

2、G大调的第Ⅰ、Ⅳ、Ⅴ级音分别是( )

A. G音
B. F音
C. D音
D. C音

查看答案
更多问题

以下的C#程序:编译和运行时,将( )。public static void Main(){ int x;try {x = 100; }catch{}Console.Write(x);}

A. 程序正常编译与运行,输出结果为100
B. 运行时时将报告错误信息,提示变量x未赋值
C. 编译时将报告错误信息,提示变量x未赋值
D. 程序中没有处理错误的代码,在运行时到最后一行将报告错误信息

请问以下代码运行结果是( )public class Except{public static void ThrowException(){throw new Exception();}public static void Main(){try{Console.WriteLine("A");ThrowException();}catch (Exception e){Console.WriteLine("B");}finally{Console.WriteLine("C");}}}

A
B. AB
C. ABC
D. 程序运行时,给出错误提示并终止

( )类是C#中其他所有异常类的基类。

A. System.AllException
B. System.Exception
C. System.Exceptions
D. System.AllExceptions

阅读以下C#代码:using System;public class TestException: Exception{public TestException():base(){}public TestException(String message):base(message){}public TestException(String message,Exception innerException):base(message,innerException){}}public class TextExceptionTestApp{ public static void Main() { try{ int i; Console.WriteLine("请输入的字符为:"); i=Convert.ToInt32(Console.ReadLine()); if(i>10) Console.WriteLine("OK!"); else if(i>5) throw new TestException("Err Input!"); } catch (Exception e) { TestException Ex=new TestException("Catch!",e); Console.WriteLine(Ex.Message); } Console.WriteLine();}}当输入“A”时,程序运行的结果应该为()。(选择一项)

A. OK!
B. Err Input!
Catch!
D. 无显示,程序直接退出。

答案查题题库