NEW
Font size
WorksheetsG6-W4-Quiz-Animation
Total questions: 10
Worksheet time: 5mins
Which one is correct?
StrokeWeight(16);
strokeWeight(16);
StrokeWeight("pink");
strokeWeight("pink");
Which one is correct?
regularpolygon(100,200,100,200,300,400);
shape(0);
line(100,200,0,0);
arc(0,0,100,100,0,720,100);
Which one is correct?
stroke(‘yellow’);
strokeweight(16);
strokeWeight(16);
stroke(16);
Which one is correct?
line(0,0);
rect(100,20,30,);
point(100,20);
ellipse(100,"30");
Which groups of codes can run out this image?
background("yellow");
fill("blue");
rect(100,200,100,100);
fill("blue");
rect(100,200,100,100);
background("yellow");
background("blue");
fill("yellow");
rect(100,200,100,100);
fill("yellow");
rect(100,200,100,100);
background("blue");
Which code can make this image?
ellispse();
line();
point();
noFill();
Which one is not correct?
shape(100,200,300,200,100);
regularPolygon(50,75,5,100);
line(100,200,300,400);
nofill();
Which is correct?
noStroke();
Nofill();
noFill(6);
nostroke();
Which is not correct?
background("pink");
shape("pink");
fill("pink");
stroke("pink");
How can I make this?
background("green");
strokeWeight(10);
stroke("black");
fill("orange");
arc(50,100,100,100,0,300);
point(41,72);
strokeWeight(10);
stroke("black");
fill("orange");
arc(50,100,100,100,0,300);
point(41,72);
background("green");
background("green");
strokeWeight(10);
stroke("black");
fill("orange");
arc(50,100,100,100);
point(41,72);
background("green");
stroke("black");
fill("orange");
arc(50,100,100,100,0,300);
strokeWeight(10);
point(41,72);
