adplus-dvertising
frame-decoration

Question

Which of the following statements is correct about the C#.NET program given below if a value "6" is input to it?

using System;
namespace CompSciBitsConsoleApplication
{
    class MyProgram
    {
        static void Main(string[] args)
        {
            int index; 
            int val = 44;
            int[] a = new int[5];
            try
            {
                Console.Write("Enter a number:");
                index = Convert.Tolnt32(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: Index out of bounds Remaining program

b.

It will output: Bad Format Remaining program

c.

It will output: Bad Format

d.

It will output: Remaining program

Posted under C# programming

Answer: (a).It will output: Index out of bounds Remaining program

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following statements is correct about the C#.NET program given below if a value "6" is input to it?

Similar Questions

Discover Related MCQs

Q. Exceptions can be thrown even from a constructor, whereas error codes cannot be returned from a constructor.

Q. All code inside finally block is guaranteed to execute irrespective of whether an exception occurs in the protected block or not.

Q. Which of the following is NOT an Exception?

Q. It is compulsory for all classes whose objects can be thrown with throw statement to be derived from System.Exception class.

Q. Which of the following statements is true about an enum used in C#.NET?

Q. An enum that is declared inside a class, struct, namespace or interface is treated as public.

Q. An enum can be declared inside a class, struct, namespace or interface.

Q. Which of the following CANNOT be used as an underlying datatype for an enum in C#.NET?

Q. Which of the following statements is correct about an enum used in C#.NET?

Q. Choose the correct statement among the followings?

Q. Choose the keyword which declares the indexer?

Q. Choose the operator/operators which is/are not used to access the [] operator in indexers?

Q. Choose the correct statement among the following?

Q. Which among the following are the advantages of using indexers?

Q. Choose the correct statement about properties describing the indexers?

Q. Choose the correct alternative that utilizes the indexed property such that a group named class has indexed property which stores or retrieves value to/from an array of 5 numbers?

Q. Choose the correct option among the following indexers which correctly allows to index in same way as an array?

Q. Choose the wrong statement about the properties used in C#.NET?

Q. Choose the statements which makes use of essential properties rather than making data member public in C#.NET?

Q. Where the properties can be declared?