-->
当前位置:首页 > Luz 第6035页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:Given code below:

Luz5年前 (2021-05-10)743
Given code below: ```Javapackage his;public class My {}```Which statement below is NOT correct? @[C](2)A. It has to be…

单选题:Suppose there is no file Hello.txt in the current directory. Run

Luz5年前 (2021-05-10)1485
Suppose there is no file Hello.txt in the current directory. Run the program: @[C](2)```import java.io.*;public class AB…

单选题:Which of the following statements are true?

Luz5年前 (2021-05-10)730
Which of the following statements are true? @[B](2)A. A Node can be placed in a Scene. B. A Node can be placed in a Pa…

单选题:Given code below:

Luz5年前 (2021-05-10)1079
Given code below:```JavaString s1 = "Hello";String s2 = "Hell"+"o";String s3 = "Hell";s3 = s3+"o";```Which one below is…

单选题:To place a node in the left of a BorderPane p, use ___________.

Luz5年前 (2021-05-10)826
To place a node in the left of a BorderPane p, use ___________. @[A](2)A. p.setLeft(node); B. p.placeLeft(node); C. p.…

单选题:To remove two nodes node1 and node2 from a pane, use ______.

Luz5年前 (2021-05-10)565
To remove two nodes node1 and node2 from a pane, use ______. @[C](2)A. pane.removeAll(node1, node2); B. pane.remove(nod…

单选题:Which of the following statements correctly rotates the button 4

Luz5年前 (2021-05-10)766
Which of the following statements correctly rotates the button 45 degrees counterclockwise? @[B](2)A. button.setRotate…

单选题:To add two nodes node1 and node2 into a pane, use ______.

Luz5年前 (2021-05-10)757
To add two nodes node1 and node2 into a pane, use ______. @[A](2)A. pane.getChildren().addAll(node1, node2); B. pane.g…

单选题:Suppose a JavaFX class has a binding property named weight of th

Luz5年前 (2021-05-10)687
Suppose a JavaFX class has a binding property named weight of the type DoubleProperty. By convention, which of the follo…

单选题:Which of the following statements are correct?

Luz5年前 (2021-05-10)678
Which of the following statements are correct? @[B](2)A. new Scene(new Button("OK")); B. new Scene(new Circle()); C. n…