WorksheetsW6-L4
Total questions: 15
Worksheet time: 8mins
Which following codes cannot run out the result shows as the picture?
line(0, 0, 0,100);
line(0,100,100,100);
line(100,100,100,0);
line(0,0,100,0);
noFill();
shape(0,0,100,0,100,100,0,100);
noFill();
rect(0,0,100,100);
noFill();
ellipse(0,0,100,100);
Which following codes cannot run out the result shows as the picture?
line(0, 0, 0,100);
line(0,100,100,100);
line(100,100,100,0);
line(0,0,100,0);
noFill();
regularPolygon(50,50,4,100);
noFill();
rect(0,0,100,100);
noFill();
shape(0,0,100,100,100,0,0,100);
If the shape codes are:
line(0, 0, 0,100);
line(0,100,100,100);
line(100,100,100,0);
line(0,0,100,0);
Then after which code adding can the result shows as the picture?
fill("teal");
stroke("teal");
No matter which description code we learned so far, cannot make it
background("teal");
Which following code is correct theoretically?
shape(100,100);
arc(100,100);
regularPolygon(100,100);
line(100,100);
Which of the following code CANNOT make a square?
shape();
rect();
regularPolygon();
arc();
Of which following code CANNOT make ellipse?
ellipse();
arc();
regularPolygon();
Of which following code can make a curve line?
line();
curveLine();
curve();
arc();
Which one can make a straight line?
line(0,0,20,20);
point(0,0,20,20);
ponit(10,10);
point(20,20);
arc(0,0,90,90,0,180);
Which one can make a circle?
ellipse(0,0,100,100,80);
arc(0,0,90,90,0,360);
arc(0,0,90,100);
regularPolygon(0,0,1,1);
Which one can make a Pikachu tail by only one-line code?
Shape
regularPolygon
line
arc
Which one is correct?
line(0,0);
rect(100,20,30,);
point(100,20);
ellipse(100,"30");
Which one can make a curve line? (NOT CIRCLE OR ELLIPSE)
noFill();
ellipse(0,0,100,100);
noFill();
arc(0,0,20,30,0,360);
noFill();
arc(0,0,20,30,0,720);
noFill();
arc(0,0,20,30,0,-26);
Which one cannot run successfully?
shape(0,0);
line(0,0);
rect(0,0);
point(0,0);
Which one can make a straight line?
line(0,0,20,20);
point(0,0,20,20);
ponit(10,10);
point(20,20);
arc(0,0,90,90,0,180);
Which one can make a square?
rect(100,100,100,20);
regularPolygon(10,10,4,100);
regularPolygon(10,10,10,10);
regularpolygon(20,20);
