answersLogoWhite

0

Explicit means properly and clearly declared.....will give you the full meaning

Implicit means not properly defined....will not give you the exact meaning ....

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What are the Implicit object in JSP?

The implicit objects in a JSP page are:requestresponsepageContextsessionapplicationoutconfigpage


How many implicit objects in JSP?

There are nine implicit objects in JSP.1. pageContext2. session3. request4. response5. exception6. out7. application8. config9. page


What are the built in objects in jsp?

The correct term is "JSP Implicit Objects" In any JSP Page, there are a bunch of implicit objects that are available for the programmer to use. It contains a variety of information that can be used to display stuff on the page. The following JSP Implicit Objects that are available for a programmer. • request • response • out • session • config • application • page • pageContext


What is the difference between a whole number a?

A question about "the difference between" requires two objects!


What is JSP Implicit objects?

In any JSP Page, there are a bunch of implicit objects that are available for the programmer to use. It contains a variety of information that can be used to display stuff on the page. The following JSP Implicit Objects are available for a programmer: • request • response • out • session • config • application • page • pageContext


What is the energy transferred between objects because of a difference in temperature?

The energy transferred between objects due to a difference in temperature is called heat. Heat flows from objects at higher temperatures to objects at lower temperatures until thermal equilibrium is reached.


What are 2 difference between Pluto?

You need two objects between which you can have differences!


Determined by the distance between objects and the difference in mass between the objects?

The distance between objects and the different is 0. The distance between the mass and an object is 1.


What does Difference Between discuss on their website?

The website Difference Between discusses on their website a number of different terms and objects. Site visitors can find various information regarding differences between objects and terms.


What is the difference between object and variable in c?

There is no objects in C.


Is one way not to confuse verbs and pronouns is to know the difference between subjects and objects?

Pronouns are words like he, him, her, she, it. They can be either subjects or objects. It is good to know the difference between subjects and objects, but it won't help you determine what is a pronoun and what is not.


What is difference between heap and stack memory in java?

Stack memory is used for variables, and allocated and deallocated in a LIFO (last-in first-out) fashion. That is, if a variable is allocated, it is just assigned a space on the stack, and the stack pointer is increased; if the method that uses the variable is finished (there is an implicit or explicit "return"), the stack pointer is adjusted downward again. Heap is an area of memory used to assign objects. This is a bit more chaotic; first, objects can have just about any size - small, or large. Second, objects may continue existing after the method that created them ends its execution. On the heap, the Java Virtual Machine just assigns objects in whatever available space it finds. Every now and then, the Garbage Collector does a cleanup, releasing objects from the heap that are no longer used.