answersLogoWhite

0


Best Answer

AWT is a Java package for creating graphical user interfaces. JavaScript is a completely unrelated programming language.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between awt and java script?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between heavy weight and lightweight programing language in java script?

Applet is a heavy component,Applet uses AWT Layouts..like flow layout,Swing is a light weight component, Using UI Manager, swing have look and feel according


What is the difference between container and panel?

In Java, a Container is an AWT superclass which simply describes any Component class that can contain other Component objects. A Panel is a specific type of Container.


What is the methods with the parameters of an AWT?

AWT (Abstract Window Toolkit) is a top-level Java package. Listing out the hundreds or thousands of methods would be a waste of effort. See the related link below for the Java documentation on the AWT package.


What does someone use AWT for?

AWT (Abstract Window Toolkit) is Java's original widget program allowing webmasters to add outside widgets to their sites for users to interface between them and other sites.


What is awt in java explain its features?

awt contains all the graphical features of java, including many different elements to create an acceptable and usable GUI for applications easily. such as buttons, sliders and text areas.


Which are the AWT components in Java?

AWT stands for Abstract window toolkit. AWT gives us the components using which we can create User- Interface based applications in java. Some of the components are: a. Frame b. Panel c. Window d. CheckBox e. RadioButton f. Button g. TextBox h. TextArea i. Etc


Why is itemstatechanged method called thrice on changing an item in java swings?

http://docs.oracle.com/javase/7/docs/api/java/awt/event/ItemListener.html#itemStateChanged%28java.awt.event.ItemEvent%29 "http://docs.oracle.com/javase/7/docs/api/java/awt/event/ItemListener.html#itemStateChanged%28java.awt.event.ItemEvent%29"


Is it possible to draw in java without using applet?

Yes it is possible to draw in java by using AWT package. or by using javax package.


What are Awt Components?

AWT stands for Abstract window tootlkit . Abstract window Toolkit provides a standard application programming interface for writing graphical user interfaces in java.


What do you mean by AWT?

AWT stands for Abstract Window Toolkit It contains the list of java classes & packages that can be used to create UI based applications using java. Some components available are: * button * text field * text area * scroll bar * etc...


Which is best institute to learn java and mainframe course in pune?

Virtual Vision Institute in Pune is the best for Java Course. You get best training regarding Java interfaces, Java Packages, Java AWT & SwingsFor More Information you can visit our websitevirtualvision.in/core-java/Contact Number : 9766119340


What is the difference between AWT and Swing?

Several consequences result from this difference between AWT and Swing. AWT is a thin layer of code on top of the OS, whereas Swing is much larger. Swing also has very much richer functionality. Using AWT, you have toimplement a lot of things yourself, while Swing has them built in. For GUI-intensive work, AWT feels very primitive to work with compared to Swing. Because Swing implements GUI functionality itself rather than relying on the host OS, it can offer a richer environment on all platforms Java runs on. AWT is more limited in supplying the same functionality on all platformsbecause not all platforms implement the same-looking controls in the same ways. Swing components are called "lightweight" because they do not require anative OS object to implement their functionality. JDialog and JFrame are heavyweight, because they do have a peer. So components like JButton, JTextArea, etc., are lightweight because they do not have an OS peer. A "peer" is a widget provided by the operating system, such as a button object or an entry field object.