Visual Basic
DrawingWorksheet #1
Name -

1. Complete the statement below so it draws a black line segment from the point (100, 200) to the point (300, 400).

e.Graphics.

2. Complete the statement below so it draws a blue, unfilled circle with a radius of 50 pixels and a top, left corner at the point 100, 100.

e.Graphics.

3. Write a code segment that draws a black tic tac toe board. The line segments on the tic toe board should be evenly-spaced and fit within a form that has a width and height of 300 pixels .






4. Write a code segment that would place a black X in the middle square of the tic tac board drawn above and a black O in the top left corner position.