Final Review Flashcards

1
Q

What changes were made to interface methods in JDK 1.8?

A

Interfaces may now contain public default methods and default static methods (interfaces were always public and abstract by default).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why did JDK 1.8 change?

A

Java designers wanted to add the capability of using lambda expressions in Java to provide a shorter way of implementing methods that are often specified in interfaces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a SAM?

A

Single Abstract Method interface. Any interface that has just one abstract method (aka functional interface). Can also contain default / default static methods but will have just one abstract method in it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a lambda expression?

A

Coding short hand to represent an anonymous method. The declared type of lambda expression variable is the same as the name of the functional interface it implements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a graphics context?

A

Objects of the Graphics class created internally by the JVM to hold object state information, such as the component on which drawing will occur, color, font, and clip.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you get a graphics context object?

A
  • Call paint(Graphics g), g will be the paintbrush

- Call Component class method getGraphics() and assign the returned value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a boundary box?

A

An invisible box that determines where oval shapes are placed (relative to the top left of the box)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

RGB Color Model

A

Color object is created using 3 values in the range 0-255. A fourth value may be used as alpha value (transparency) where 0 is full transparency and 255 is opaque.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the purpose of repaint()?

A

Paint another object at a different position (gives the impression of movement)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

JavaFX Organizational Framework

A
  1. Application class - represents a JavaFX app
  2. Stage (like JFrame)
  3. Scene (like JPanel)
  4. Region (Axis, Chart, Pane)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Set Designer Analogy

A

The coder is the set designer. You arrange a scene on the stage (certain space on the screen). The scene contains the items which will fill the stage and determine the actions for the user.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are Nodes?

A

The individual elements within a Scene.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Nodes can have a child node (T/F)

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The top node is the parent node (T/F)

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Nodes without children are called terminal nodes / leaves (T/F)

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a scene graph?

A

The collection of all nodes within a scene (a tree)

17
Q

The base class for all nodes is the Node class (T/F)

18
Q

How to launch a JFX app?

A

Call launch() in main.

19
Q

JFX Life-cycle Methods

A

init() - called on launch, used to perform initialization tasks
start() - called after init, builds the scene
stop() - called when app is terminated, runs code needed to shut down connections to databases

20
Q

JFX Styles

A
  • fonts/colors are sent to .css

- layout, static content are sent to the .fxml

21
Q

Shneiderman’s Eight Golden Rules of Interface Design

A
  1. Strive for consistency
  2. Seek universal usability
  3. Offer informative feedback
  4. Design dialogs to yeild closure
  5. Prevent errors, but also offer simple error handling
  6. Permit easy reversal of actions
  7. Keep the user in control
  8. Reduce short-term memory load
22
Q

MVC

A

Model - maintain the data
View - display the data from model
Controller - handle user inputs and update the model

23
Q

If the view is registered as a listener for the model, it can update without the controller (T/F)

24
Q

Database Drivers (JDBC)

A
  1. JDBC to ODBC bridge
  2. Native-API partly Java
  3. JDBC to Network protocol, pure Java
  4. Native protocol pure Java (most used)
25
Q

What is a CURSOR?

A

CURrent Set Of Records