in Education by
What will happen if we provide concrete implementation of method in interface? (a) The concrete class implementing that method need not provide implementation of that method (b) Runtime exception is thrown (c) Compilation failure (d) Method not found exception is thrown I had been asked this question during a job interview. This interesting question is from Interfaces in portion Interfaces & Packages of Java Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
Right answer is (c) Compilation failure The best explanation: The methods of interfaces are always abstract. They provide only method definition.

Related questions

0 votes
    What will happen if we provide concrete implementation of method in interface? Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    Which of these can be used to fully abstract a class from its implementation? (a) Objects (b) Packages (c) ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of these access specifiers can be used for an interface? (a) Public (b) Protected (c) private (d) ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of these keywords is used by a class to use an interface defined previously? (a) import (b) Import (c ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of the following is the correct way of implementing an interface salary by class manager? (a) class manager ... Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of the following access specifiers can be used for an interface? (a) Protected (b) Private (c) Public (d ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of the following is the correct way of implementing an interface A by class B? (a) class B extends A{ ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    All methods must be implemented of an interface. (a) True (b) False This question was addressed to me in an ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What type of variable can be defined in an interface? (a) public static (b) private final (c) public final ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What does an interface contain? (a) Method definition (b) Method declaration (c) Method declaration and definition ... Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What type of methods an interface contain by default? (a) abstract (b) static (c) final (d) private I ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What happens when a constructor is defined for an interface? (a) Compilation failure (b) Runtime Exception (c) ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    Which of these package is used for graphical user interface? (a) java.applet (b) java.awt (c) java.awt. ... & Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
0 votes
    What happens when we access the same variable defined in two interfaces implemented by the same class? (a) ... Packages of Java Select the correct answer from above options...
asked Feb 23, 2022 in Education by JackTerrance
...