166k views
0 votes
Which of the following GUI/Graphic APIs are still present in the Java compiler (as of Java 11), although deprecated and receiving no further updates (all that apply)?

a) AWT (Abstract Window Toolkit)
b) JavaFX
c) Swing
d) Java 2D API

User Aletzo
by
8.2k points

1 Answer

6 votes

Final answer:

The AWT, Swing, and Java 2D API are still present in the Java compiler (as of Java 11), although deprecated and not receiving updates.

Step-by-step explanation:

The GUI/Graphic APIs that are still present in the Java compiler (as of Java 11), although deprecated and receiving no further updates, are:

  • AWT (Abstract Window Toolkit)
  • Swing
  • Java 2D API

These APIs were popular in the earlier versions of Java and are still present in the compiler for backward compatibility, but are no longer actively maintained. JavaFX, on the other hand, is still actively maintained and is not deprecated.

User ScottJ
by
8.0k points