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,...
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...
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...
This is in java and you are not allowed to use Java API classes for queues,...
This is in java and you are not allowed to use Java API classes for queues, stacks, arrays, arraylists and linkedlists. You have to write your own implementations for them. You should construct a BST by inserting node values starting with a null tree. You can re-use the code for the insert method given in the sample code from the textbook. -insert method is provided below Your code should have a menu driven user interface at the command line with...
1) Consider the following Java program, which one of the following best describes "setFlavor"? public class...
1) Consider the following Java program, which one of the following best describes "setFlavor"? public class Food {     static int count;     private String flavor = "sweet";     Food() { count++; }     void setFlavor(String s) { flavor = s; }     String getFlavor() { return flavor; }     static public void main(String[] args) {         Food pepper = new Food();         System.out.println(pepper.getFlavor());     } } a. a class variable b. a constructor c. a local object variable d....
1) Consider the following Java program. Which statement updates the appearance of a button? import java.awt.event.*;...
1) Consider the following Java program. Which statement updates the appearance of a button? import java.awt.event.*; import javax.swing.*; public class Clicker extends JFrame implements ActionListener {     int count;     JButton button;     Clicker() {         super("Click Me");         button = new JButton(String.valueOf(count));         add(button);         button.addActionListener(this);         setSize(200,100);         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);         setVisible(true);     }     public void actionPerformed(ActionEvent e) {         count++;         button.setText(String.valueOf(count));     }     public static void main(String[] args) { new Clicker(); } } a. add(button);...
IPv6 is presented visually to humans in what notation (when using ipconfig or GUI to view...
IPv6 is presented visually to humans in what notation (when using ipconfig or GUI to view the address): A. Binary B. 10Base4 notation C. Hexadecimal D. Dotted-decimal E. 10Base8 notation
Simplify the following piece of code: (java) if (a>b) x = a + b; if (a>0)...
Simplify the following piece of code: (java) if (a>b) x = a + b; if (a>0) x = a + b;
java Write a single Java statements to accomplish each of the following: a) Displaythevalueoftheseventhelementofcharacterarraych. b) Considering...
java Write a single Java statements to accomplish each of the following: a) Displaythevalueoftheseventhelementofcharacterarraych. b) Considering “Scanner in = new Scanner (System.in);”, input a value into element 5 of one-dimensional double array nums. c) Initialize each of the four elements of the one-dimensional integer array test to 7. d) Declare and create an array called table as a float array that has four rows and three columns. e) Considering the following ArrayList declaration, insert “test” at the fourth position (index...
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT