← Back to Question List
Java Quiz #57
HBox Layout
What does this code produce?
📄 Code
1HBox row = new HBox(15);2row.getChildren().addAll(3 new Button("Cut"),4 new Button("Copy"),5 new Button("Paste")6);