Answer:
has no body.
Explanation:
An abstract method is a method which has no body.
It is contained in a class which is marked as abstract.
The implementation of such method is specified in a subclass.
For example:
//abstract class
abstract class myClass{
/* Abstract method */
public abstract void mymethod(int a, int b);
}
//Concrete class extending abstract class
class Concrete extends myClass{
public void mymethod(int a, int b){
return a+b;
}
}
ben varım
bende sıkıldım ya
E-mail stands for Electronic mail. It is a method of exchanging messages ("mail") between people in a telecommunication network with the usage of electronic devices. There is a sender and a receiver for any given message, and they switch positions in turn.
The statement that E-mail is an temporary message medium is false. E-mail can be kept forever and are not temporary.
Answer: I think its the last one, there is often more than one right choice :)
It's not how the found it, it's how they made it.