adplus-dvertising
frame-decoration

Question

What is the output of this program?
class Compsci
{
     Compsci()throws IOException
     {
 
     } 
 
}
class Bits extends Compsci
{
     Bits()
     {
 
     }
     public static void main(String[]args)
     {
 
     }
}

a.

compile time error

b.

run time error

c.

compile and runs fine

d.

unreported exception java.io.IOException in default constructor

Answer: (a).compile time error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?