The class RuntimeException is the superclass of which of the following classes?

A. NullPointerException
B. NoSuchMethodException
C. IllegalAccessException
D. NoSuchFileException

Answer: A

Computer Science & Information Technology

You might also like to view...

Software, such as Internet Explorer, Firefox, Safari, or Chrome, that displays Web pages is a

a. web browser b. CAPTCHA c. Web bot

Computer Science & Information Technology

The output of this C# program will be:

``` class Test { static void Main() { int[] a = {99, 22, 11, 3, 11, 55, 44, 88, 2, -3}; int result = 0; for (int i = 0; i < a.Length; ++i) { if (a[i] > 30) { result += a[i]; } } Console.WriteLine($"Result is: {result}"); } } ``` a) Result is: 280 b) Result is: 154 c) Result is: 286 d) Result is: 332

Computer Science & Information Technology