Finals OOP- Lesson 7 Flashcards
1
Q
In Arc, if the arcAngle is negative, then the rotation of the arc is clockwise.
A
True
2
Q
In Arc, if the arcAngle is positive, then the rotation of the arc is counter-clockwise.
A
True
3
Q
the point where the arc will start. Must be a
positive value
A
start∠
4
Q
it will serve as the angle of the arc from start up
to the end point. The value can be positive or negative.
A
arc∠
5
Q
syntax for String:
A
.drawString(String, x, y);
6
Q
syntax for Fonts:
A
Font variable = new Font
(“FontName”, Font.BOLD/PLAIN/ITALIC, Font Size);
.setFont(variable);
7
Q
In customizing Font, you can only choose one out of the font style (BOLD, ITALIC or PLAIN).
A
True