answersLogoWhite

0

Abstract means just the opposite of depicting anything - an abstract painting has no subject outside itself.

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about General History

What method did the leaders of the civil rights movement rely on?

Persuasive


What was the method of the Black Power Movement?

to eliminate the descrimination of black people


What is sepentine movement?

Serpentine movement refers to a type of locomotion characterized by a sinuous, undulating motion, resembling the movement of a snake. This method is often observed in certain animals, such as snakes and some reptiles, which use lateral undulation to propel themselves forward. In a broader context, serpentine movement can also describe any smooth, curving motion, often used in dance or physical activities to convey grace and fluidity.


Mohandas Gandhi used his philosophy of nonviolent noncooperation in an effort to?

Free India from Great Britians rule. This method also was used in the Civil Rights Movement in the 60's.


Generic Servlet and HTTP Servlet?

javax.servlet.GenericServletSignature: public abstract class GenericServlet extends java.lang.Object implements Servlet, ServletConfig, java.io.SerializableGenericServlet defines a generic, protocol-independent servlet.GenericServlet gives a blueprint and makes writing servlet easier.GenericServlet provides simple versions of the lifecycle methods init and destroy and of the methods in the ServletConfig interface.GenericServlet implements the log method, declared in the ServletContext interface.To write a generic servlet, it is sufficient to override the abstract service method.javax.servlet.http.HttpServletSignature: public abstract class HttpServlet extends GenericServlet implements java.io.SerializableHttpServlet defines a HTTP protocol specific servlet.HttpServlet gives a blueprint for Http servlet and makes writing them easier.HttpServlet extends the GenericServlet and hence inherits the properties GenericServlet.

Related Questions

What is abstract methods?

Simply, Abstract method is a method that is declared without or containing no implementation. It has a method signature


How do you write concrete method inside abstract class?

There is no difference with method declaration and implementation between abstract and non-abstract classes. You do the exact same thing when writing a concrete method in either an abstract or non-abstract class.


How do you create a concrete method inside abstract class?

The same way you create a concrete method in a concrete class. When a class is abstract, it can contain abstract methods. That doesn't mean that all methods must be abstract. Hope this helps.


Is the word method an abstract noun?

Yes, the noun method is an abstract noun, a word for a concept.


When do you declare a method or class abstract in java?

when overriding of a class or a method is necessary, they can be declared as abstract


Can you call an abstract method from a non abstract method in java?

We can't call (i.e, execute) an abstract method in java because these methods don't contain any code to execute!In some special cases like when an abstract method is overridden in a subclass, and when we are using super class reference variable( which is referring that subclass object), it appears that we are calling abstract method in super class. But actually the code in the subclass method is being executed.Example:abstract class SuperClass{abstract void show(); //abstract method in super class}class SubClass extends SuperClass{void show(){ //show() of SuperClass overridden in SubClassSystem.out.println("SubClass Method");}}class Example{public static void main(String... args){SuperClass sup=new SubClass();sup.show(); //SubClass show() will be executed !!!}}


Is Interface is a kind of abstract method?

No


Can an abstract method be declared static?

Yes. Abstract methods can be declared static


What is Abstract in science?

An abstract is a brief summary of an experiment.


Can abstract method be overriden?

An overridden method is one which has already been implemented in the parent class with the same signature but has again been coded in the current class for functionality requirements. An abstract method is one which has only been declared in a class and would have to be implemented by the class that extends this abstract class. The implementation for the method is not available in the class in which it is declared.


Why you are not allowed to put an abstract method into a normal class?

You can't put an abstract method (pure-virtual method) in a normal class because the normal class would become abstract itself. Only non-abstract classes can be physically instantiated as objects, and only if they fully implement all the abstract methods inherited from their base classes.


Why don't use abstract keyword when we declare a method in interface?

The abstract keyword signifies that the particular method will have no features in the class where it is declared and it is upto the child class to provide the functionality. In case of an interface, the method is already abstract by default and has no code inside it. So there is no actual point in using the abstract keyword there.