Answer the following statements true (T) or false (F)

1. In a window that is 640px wide by 480px high, the top right X, Y coordinates would be (0, 480).
2. To create a circle, you need to specify only the X and Y coordinates of the center point.
3. A polygon, created by the Polygon class is, by default, filled with the color black.
4. The following statement will draw the string "Welcome!" starting at the top left corner of the screen.
```
Text welcomeText = new Text(0, 0, "Welcome!");
```
5. To make a node half its original size, you pass the setScaleX method the value 2 and pass the setScaleY method the value 0.5.

1. FALSE
2. FALSE
3. TRUE
4. TRUE
5. FALSE

Computer Science & Information Technology

You might also like to view...

Different types of programs that are designed to be harmful to your computer are called ________

A) hijackers B) spam C) malware D) spim

Computer Science & Information Technology

Where are the files for a user called CSchmidt stored by default on a Windows 7 computer?

A) C:\Users\CSchmidt\My Documents B) C:\CSchmidt\My Documents C) C:\Users\Documents and Settings\CSchmidt D) C:\Users\Documents and Settings\CSchmidt\Documents

Computer Science & Information Technology