A fill color is both the inside color and border color of a shape
Indicate whether the statement is true or false
FALSE
Computer Science & Information Technology
You might also like to view...
The components of a class are called the ____ of the class.
A. elements B. members C. objects D. properties
Computer Science & Information Technology
What will be displayed after the following code snippet runs?
```
function itLoops()
{
var m = 0; var k = 0; var p = 0;
while (m < 3)
{
k = m;
for (p = 1; p < 6; p+=3)
{
k = k + p;
document.write(k + " ");
}
document.write("
");
m++;
}
}
```
a. 1 5
2 6
3 7
b. 0 4
1 5
2 6
c. 1 5
2 6
3 7
4 8
d. 2 6
3 7
Computer Science & Information Technology