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