answersLogoWhite

0

What is an interface?

Updated: 8/11/2023
User Avatar

Wiki User

8y ago

Best Answer

An interface is the place where two different things meet and interact. This term often comes up with regard to computers. Data processing takes place inside the computer, and thoughts take place inside the user of the computer, and they meet at an interface, which is a keyborad and a monitor screen (and usually speakers as well).

Normally, the term interface most commonly used in networking world.Every networking equipments of the world are connected through interfaces in order to make intelligible communications such as-routers, switches, hubs-these devices has interfaces. One important characteristics of interface is that they they should have the combination of input and output.

Made a very important ( revolutionary and unpublished ) discovery - invention-the1.first practical device for reading human thoughts / human mind reading machine / Brain Computer Interface. In particular, I have created a means for people with Locked - in Syndrome ( LiS ) and ALS ( such as British physicist Stephen Hawking or Steve Gleason problem ). Another unit called human Speech Generating Device. Discovery is not published. I invite partnership. Russia. Thank you. Сурен Акопов. email : tyristcheget@gmail.com / About the problem look :

Jack Gallant, Tom Mitchell and Marcel Just, John - Dylan Haynes, human mind reading machine.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

An interface in the Java programming language is an abstract type that is used to specify an interface (in the generic sense of the term) that classes must implement. Interfaces are declared using the interface keyword, and may only contain method signatures and constant declarations (variable declarations which are declared to be both static and final). An interface may never contain method definitions. As interfaces are implicitly abstract, they cannot be directly instantiated except when instantiated by a class which implements the said interface. The class must implement all of the methods described in the interface, or be an abstract class. Object references in Java may be specified to be of an interface type; in which case they must either be null, or be bound to an object which implements the interface. One benefit of using interfaces is that they simulate multiple inheritance. All classes in Java (other than java.lang.Object, the root class of the Java type system) must have exactly one base class; multiple inheritance of classes is not allowed. However, a Java class/interface may implement/extend any number of interfaces.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

An interface is a group of related methods with empty bodies, so that some class will be able to implement it in the future.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an interface?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Natural Sciences
Related questions

What are the types of network interface card?

Gigabit Ethernet interface Controller interface Serial interface Multilink Group interface MFR (Multilink Frame Relay bundle interface) Dialer interface Loopback interface Tunnel interface ATM interface


What interface is an interface that uses graphics as compared to a command-driven interface?

Graphical User Interface


What is a tagging interface type?

A tagging interface type in Java is an interface that has not defined methods such as the java.io.Serializable interface.


Does a corsa have an interface on non interface engine?

Does a Chrysler Sebring 2008 have an interface or non interface engine


Is Iterator a class or Interface?

Its an interface.


What is an interface that uses graphics as compared to a command-drive interface?

The interface you are looking for is called a GUI (Graphical User Interface). This interface is supported by all Microsoft Windows Operating System's.


Can interface implement the other interface?

No. An interface cannot implement another interface, it can only just extend it. Because, an interface cannot implement any method as it has no method body declarations.


What interface is extended by AWT event listeners?

The AWTEventListener interface implements the EventListener interface.


What has the author Marcus Tonndorf written?

Marcus Tonndorf has written: 'An interface in an interface in an interface'


When was We Interface created?

We Interface was created in 2004.


What is interface?

Interface is the layout that you see and work on.


Can you create an empty interface with no definitions?

Yes. This is a valid interface definition in Java: interface Useless {}