what is java bean?where can we use it?

Answers were Sorted based on User's Feedback



what is java bean?where can we use it?..

Answer / sivasubramanian.k

JavaBeans are reusable software components for Java that
can be manipulated visually in a builder tool.[1]
Practically, they are classes written in the Java
programming language conforming to a particular convention.
They are used to encapsulate many objects into a single
object (the bean), so that the bean can be passed around
rather than the individual objects.

Is This Answer Correct ?    94 Yes 20 No

what is java bean?where can we use it?..

Answer / namita

Java bean is simply a java class which has getter and
setter methods.
setter methods are used to set the data.
getter methods are used to to get the data.

Java beans are used to encapsulate objects in a single java
bean so that the bean can be used or passed in other
classes.

Like in our jsp we can use this bean by using <%jspusebean>
tag.

Is This Answer Correct ?    82 Yes 15 No

what is java bean?where can we use it?..

Answer / rameshkrishna

javabean is encapsulate data in the form of
object.according to java specification javabean support any
number of properties and any number of events and
additional mthods..

Is This Answer Correct ?    26 Yes 4 No

what is java bean?where can we use it?..

Answer / suresh royal

--->Java bean is component s/w.
--->java beans are used to encapsulate the data.
--->usually bean is like as object.
--->We can use java bean as setters and getters methods.

Is This Answer Correct ?    12 Yes 0 No

what is java bean?where can we use it?..

Answer / c.rama kantha rao

A specification developed by Sun Microsystems that defines
how Java objects interact. An object that conforms to this
specification is called a JavaBean, and is similar to an
ActiveX control. It can be used by any application that
understands the JavaBeans format.

Note:
The principal difference between ActiveX controls and
JavaBeans are that ActiveX controls can be developed in any
programming language but executed only on a Windows
platform, whereas JavaBeans can be developed only in Java,
but can run on any platform.

Is This Answer Correct ?    16 Yes 5 No

what is java bean?where can we use it?..

Answer / ashok sharma0834110008

A JavaBeans is a reusable s/w component that can visually manipulated in builder tools. [a]
Beans can be visible objects,such as AWT components or invisible objects such as queue.
Javabean is component, coded to an specific standard, use within an application or applet

Is This Answer Correct ?    12 Yes 3 No

what is java bean?where can we use it?..

Answer / hemantcse

JavaBeans is a reusable s/w component that can visually manipulated in builder tools. [a]
Beans can be visible objects,such as AWT components or invisible objects such as queue.
Javabean is component, coded to an specific standard, use within an application or applet

Is This Answer Correct ?    3 Yes 0 No

what is java bean?where can we use it?..

Answer / ravi kumar gupta

JavaBeans are reusable software components for Java.
Practically, they are classes written in the Java
programming language conforming to a particular convention.
They are used to encapsulate many objects into a single
object (the bean), so that they can be passed around as a
single bean object instead of as multiple individual
objects. A JavaBean is a Java Object that is serializable,
has a nullary constructor, and allows access to properties
using getter and setter methods.

Is This Answer Correct ?    4 Yes 2 No

what is java bean?where can we use it?..

Answer / vineen

Java bean is simply a java class which has getter and
setter methods.
setter methods are used to set the data.
getter methods are used to to get the data.

Java beans are used to encapsulate objects in a single java
bean so that the bean can be used or passed in other
classes.

Like in our jsp we can use this bean by using <%jspusebean>
tag.

Is This Answer Correct ?    3 Yes 1 No

what is java bean?where can we use it?..

Answer / nisid ranjan jena

Java Bean is simply a java class which has some setter
methods and getter methods to represent data.It is basically
used to encapsulate many objects into a single object so
that can be distributed in network.Java beans are reusable
components.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More Core Java Interview Questions

Explain importance of finally block in java?

0 Answers  


In how many ways we can do synchronization in java?

0 Answers  


what is meant by abstract class?

0 Answers   Aspire,


What is the use of hashmap in java?

0 Answers  


Which variables are stored in stack?

0 Answers  






Explain tree set and its features?

0 Answers  


How do you generate random numbers in java?

0 Answers  


Can a serialized object be transferred via network?

0 Answers  


how many ways to create Thread and which one is good? runnable interface ot Thread class?

3 Answers   Satyam,


Is java a compiler?

0 Answers  


What is the relationship between clipping and repainting under awt?

0 Answers  


What is hypertext?

1 Answers  


Categories