adplus-dvertising
frame-decoration

Question

What will be the output of the code snippet?
class Output 
 {
     public static void main(String args[]) 
     {
         try 
         {
             int a = 10;
             int b = 5;
             int c =  b - 5 / 5;
             Console.WriteLine("Hi");
         }
         catch(Exception e) 
         {
             Console.WriteLine("hello");
         } 
     }
 }

a.

Hi

b.

hello

c.

Hihello

d.

Compile time error

Answer: (a).Hi

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the code snippet?

Similar Questions

Discover Related MCQs

Q. Which of these keywords are used for the block to handle the exceptions generated by try block?

Q. Which of the keywords are used for the block to be examined for exceptions?

Q. Choose the statement which is incorrect?

Q. What is the use of try & catch?

Q. Which of these classes is related to all the exceptions that are explicitly thrown?

Q. Which of the following keywords is used by the calling function to guard against the exception that is thrown by called function?

Q. Which of these exceptions will occur if we try to access the index of an array beyond its length?

Q. Which of these exceptions handles the divide by zero error?

Q. A single try block must be followed by which of these?

Q. Which of these clauses will be executed even if no exceptions are found?

Q. Choose the correct statement which makes exception handling work in C#.NET?

Q. When no exception is thrown at runtime then who will catch it?

Q. Which of the following is the wrong statement about exception handling in C#.NET?

Q. Which of these keywords is used to manually throw an exception?

Q. Which of these keywords must be used to monitor exceptions?

Q. Which of these keywords is not a part of exception handling?

Q. Select the correct statement about an Exception?

Q. Select the statements which describe the correct usage of exception handling over conventional error handling approaches?

Q. Which of the following is the object oriented way to handle run time errors?

Q. Which among the following is considered as .NET Exception class?