QUESTION 7 Given a Pane object appPane and a TextField object nameField, which statement adds nameField to the pane. imb
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
QUESTION 7 Given a Pane object appPane and a TextField object nameField, which statement adds nameField to the pane. imb
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