Question

Which of the following is not a GUI API for Java? a. AWT c. RIA b....

  1. Which of the following is not a GUI API for Java?

a.

AWT

c.

RIA

b.

Swing

d.

JavaFX

Homework Answers

Answer #1

Answer :option c

RIA

Because of following reason

Ria which is known as Rich internet applications is the application not a GUI api for java

Ria splits the process across the network

So it is not GUI api for java

Where as

Swing ,javafx and awt are the Gui api for java

Swing is a java application interface providing gui thaat is graphical user interface for java which has set of widgets

Where as javafx is a GUI api which is built in tool kit for gui development

And awt which is called abstract window toolkit is also a api which supports graphical user interface for java which. Includes some robust event handling , coloring, shape ,font and etc.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
46. rding Java thread scheduling, which of the following statements are true? a. The Java API...
46. rding Java thread scheduling, which of the following statements are true? a. The Java API provides no direct support for scheduling threads at a fixed rate. b. Java threads may be scheduled differently on different systems. c. The JVM has a very strictly-defined thread scheduling policy. d. Invoking the yield() method ensures a thread yields control of the CPU.
Java API Usage: Use the Java API documentation for Standard Edition 7 to answer the following:...
Java API Usage: Use the Java API documentation for Standard Edition 7 to answer the following: a) List the full prototype for the methods that must be coded if a class implements the java.util interface named Iterator. b) How many methods are in the class Track? c) What package is the class Track located in? I am asking for the signature of the method, which is the first line which tells the return data type, the name of the method,...
Hadoop HDFS supports C API, Java API and even RESTful API support is available. You can...
Hadoop HDFS supports C API, Java API and even RESTful API support is available. You can find more info on RESTful API at http://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/WebHDFS.html. There is even the command line tool available i.e. hadoop fs -copyFromLocal. If you are the architect for your Big Data project, and you are responsible for bringing in files into Hadoop, would you use the C, Java API or RESTful API?
Write a Java application with a JavaFX GUI that takes a String input by the user...
Write a Java application with a JavaFX GUI that takes a String input by the user and shows whether the string contains all 26 letters of the (English version of the Latin) alphabet. For example, "Pack my box with five dozen liquor jugs" contains all 26 letters, but "The quick frown box jumps over the hazy log" does not contain a d. It does not matter whether one or more letters appear more than once. The GUI needs, at minimum,...
Create a student record management system With JAVA using linked list and queue using Java language...
Create a student record management system With JAVA using linked list and queue using Java language and (oracle or any) database to save files and GUI Java swing to create background The program will have the following properties: A. Register students ( assume each students has ID, first name, last name and middle name) B. Register students with courses ( course no ,course title chr ) C. Able to maintain grade on which course they are registered D. Searches students...
SIMPLE PAINTING GUI APP in Java Your mission in this exercise is to implement a very...
SIMPLE PAINTING GUI APP in Java Your mission in this exercise is to implement a very simple Java painting application. Rapid Protyping The JFrame app must support the following functions: (you can use any other programming languages that you are comfortable)  Draw curves, specified by a mouse drag.  Draw filled rectangles or ovals, specified by a mouse drag (don't worry about dynamically drawing the shape during the drag - just draw the final shape indicated).  Shape selection...
Java programming 1) Which among the choices is the following Java expression equivalent to? !((b !=...
Java programming 1) Which among the choices is the following Java expression equivalent to? !((b != 0) || (c <= 5)) Select one: a)       (b != 0) && (c <= 5) b)       (b == 0) && (c > 5) c)       !((b <> 0) && (c <= 5)) d)       (! (b = 0)) && (! (c > 5)) e)       (b == 0) && (c <= 5) 2) The scope of a variable is an important feature in Java, the following variable...
you have been tasked with developing a Java Swing GUI that displays time, traffic signals and...
you have been tasked with developing a Java Swing GUI that displays time, traffic signals and other information for traffic analysts. The final GUI design is up to you but should include viewing ports/panels to display the following components of the simulation: 1. Current time stamps in 1 second intervals 2. Real-time Traffic light display for three major intersections 3. X, Y positions and speed of up to 3 cars as they traverse each of the 3 intersections Some of...
1. Which of the fields are serialized automatically by the java serialization mechanism a) All instance...
1. Which of the fields are serialized automatically by the java serialization mechanism a) All instance fields that implement the serializable interface b) All static fields c) Both a & b d) Neither (a) nor(b) 2. which of the following is the most correct statement with respect to JavaFX? a) A scene may contain a stage, which may contain widgets b) A stage may contain a scene, which may contain widgets c) A widget may contain a stage , which...
In Java, specifically using javafx and NOT SWING , thanks! To write a program that illustrates...
In Java, specifically using javafx and NOT SWING , thanks! To write a program that illustrates how to code a box with buttons on the screen and to create an event class to handle the click of a button Write a program using a layout manager. You must write the program to meet the following criteria: Create a window with a layout. Add 6 buttons to the window, each with a number to identify it – such as Button1, Button2,...