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

import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }

3 Answers   IBM, Ramco,


Can you have an inner class inside a method and what variables can you access?

2 Answers  


What is java ceil?

0 Answers  


Can a constructor call the constructor of parent class?

0 Answers  


How do you add an element to an arraylist in java?

0 Answers  






Why spring singleton is not thread safe?

0 Answers  


How do you use spaces in java?

0 Answers  


How do I get a substring?

0 Answers  


How OOPS concept is achieved in Java?

6 Answers   Cognizant, JPMorgan Chase, Xavient,


What is the purpose of finalization in java programming?

0 Answers  


What is application system?

0 Answers  


What is a file pointer?

0 Answers  


Categories