Discussion :: Exception Handling
-
Which of the following statements is correct about the C#.NET program given below if a value "ABCD" is input to it?
using System; namespace FresherGate
ConsoleApplication
{ class MyProgram { static void Main(string[] args) { int index; int val = 55; int[] a = new int[5]; try { Console.Write("Enter a number: "); index =Convert.ToInt32(Console.ReadLine()); a[index] = val; } catch(FormatException e) { Console.Write("Bad Format "); } catch(IndexOutOfRangeException e) { Console.Write("Index out of bounds "); } Console.Write("Remaining program "); } } }
A.
It will output: Bad Format |
B.
It will output: Remaining program |
C.
It will output: Index out of bounds |
D.
It will output: Bad Format Remaining program |
E.
It will output: Index out of bounds Remaining program |
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment