QUESTION 7 Given a Pane object appPane and a TextField object nameField, which statement adds nameField to the pane. imb
Posted: Fri May 20, 2022 3:18 pm
QUESTION 7 Given a Pane object appPane and a TextField object nameField, which statement adds nameField to the pane. imbed(nameField) add(nameField) attach(nameField) none of the mentioned QUESTION 8 Write a statement that sets the grid's horizontal gap to 3 pixels. gridPane.setHgap(3) gridPane.setGap(3); gridPane.sethgap(3); none of the mentioned QUESTION 9 The application should create a Canvas object with a height of 800 pixels and a width of 300 pixels. Canvas = new Canvas(); Canvas = new Canvas(300, 800); Canvas = new Canvas(800, 300); none of the mentioned QUESTION 10 Pane is the base class of all the layout panes such as Anchor Pane, BorderPane, DialogPane, etc. True False