adplus-dvertising
frame-decoration

Question

Which is the missing java code in the class implementing an Interface below?
interface Linein
{  void addInput(); }

interface Lineout
{  void addOutput(); }

class Speaker implements Linein, Lineout
{
  //MISSING CODE
}

a.

class Speaker implements Linein, Lineout
{
@Override
public void addOutput() { }

@Override
public void addInput() { }
}

b.

class Speaker implements Linein, Lineout
{
@Override
public void addOutput() { }
}

c.

class Speaker implements Linein, Lineout
{
@Override
public void addInput() { }
}

d.

All the above

Answer: (a).class Speaker implements Linein, Lineout
{
@Override
public void addOutput() { }

@Override
public void addInput() { }
}

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which is the missing java code in the class implementing an Interface below?

Similar Questions

Discover Related MCQs

Q. A Superinterface is comparable to a Superclass. State TRUE or FALSE.

Q. A Static method of an Interface should be accessed with _____ and a DOT operator.

Q. What is a package in Java?

Q. Choose the correct syntax of a Java Package below.

Q. The keyword used to declare a Java package is ____.

Q. What is the maximum number of Java Class files that can be kept inside a single Java Package?

Q. The name of a package is the name of the ___ in Java.

Q. It is possible to declare a package and import another package within the same Java class file. State TRUE or FALSE.

Q. The keyword used to import a package into Java class or Interface is ___.

Q. Which is the correct syntax to import a Java package below?

Q. Choose correct declaration and importing of packages in Java.

Q. You can use the same name for a Parent package and Child package in Java. State TRUE or FALSE.

Q. What is the maximum number of levels or depth up to which sub-packages can be defined in Java?

Q. Choose a correct statement below about importing packages into a class.

Q. When importing a Package, theClass isactually importing ____.

Q. The package declaration statement should be the first statement in a Java file. State TRUE or FALSE.

Q. You can place a comment before the Package Declaration statement in Java. State TRUE or FALSE.

Q. How does JAVAC or JAVA (JVM) find the packages that will be used inside classes by an import statement?

Q. Which is the default Java package that will be auto included (imported) in the classpath while Compiling and Running a Java program?

Q. What are the popular Classes or Interfaces inside a Java Language Pack (java.lang)?