NEW
Font size
WorksheetsG6-Mid term practice-Animation-2025/26
Total questions: 20
Worksheet time: 10mins
Which one is correct?
StrokeWeight(16);
strokeWeight(16);
StrokeWeight("pink");
strokeWeight("pink");
Which one is correct?
Stroke("Pink");
stroke("YELLOW");
stroke("pink");
Stroke(“Pink”)
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 is correct?
noStroke();
Nofill();
noFill(6);
nostroke();
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);
Alice wrote a code: rect(100,200);
Which shows correct?
Bob wrote the code:
rect(100,200);
fill("green");
Which description is correct?
This is a blue square
This is a grey square
This is a green square
This is a green circle
Cindy wrote the codes:
rect(200,150);
fill("yellow");
rect(350,300,50,100);
Which following image is correct?
Which followed statement is correct.
varCircle=10;
Var Circle=randomNumber(100,9);
var Circle of center=10;
var CircleOfCenter=randomNumber(0,199);
var 111=circle;
Which one is correct.
var ColourOfShape="yellow";
fill(ColourOfShape);
var HeightOfShape=randomNumber(0,99);
rect(100,HeightOfShape);
rect(100,HeightOfShape);
var HeightOfShape=170;
var ColourOfShape="yellow";
fill(ColourOfShape);
fill(ColourOfShape);
rect(100,HeightOfShape);
var HeightOfShape=170;
var ColourOfShape="yellow";
fill(ColourOfShape);
var HeightOfShape=170;
var ColourOfShape="yellow";
fill(ColourOfShape);
rect(100,HeightOfShape);
Which group of codes has problem?
var ColourOfShape="red";
var Shapee=300;
fill("ColourOfShape");
rect(Shapee,Shapee);
var ColourOfShape="red";
var Shapee=300;
fill(ColourOfShape);
rect(Shapee,Shapee);
var ColourOfShape="red";
fill(ColourOfShape);
var Shapee=300;
rect(Shapee,Shapee);
Which codes have problems?
Line 1, 2, 10, 11
Line 1,2,10,9,13
Line 1,2,10,9,11
Line 1,2,9,10
Which one is correct.
var BestColour="navy";
fill(BestColour);
var BestColour=navy;
fill("BestColour");
var BestColour="navy";
fill(bestcolour);
var BestColour=navy;
fill(BestColour);
Which statement is correct.
RandomNumber() is equal to a number
RandomNumber() is equal to a code
Stroke() is a shape code
Shape() is a colour code
Which one is correct
rect(randomNumber(100,200),100,200);
rect(randomnumber(100,200),100,200);
rect(randomNumber(200,100),100,200);
rect(randomnumber(200,100),100,200);
Which statement is not correct?
shape(100,200,100,300,400,300);
regularPolygon(100,100,4,200);
var randomNumber(100,200);
var Size=randomNumber(0,200);
rect(100,100,Size,Size);
Which one is wrong for randomNumber()?
regularPolygon(100,100,randomNumber(3,10),100);
point(randomNumber(0,100),randomNumber(0,20));
background(randomNumber(255,0));
strokeWeight(randomNumber(10,20));
Which code can run out the most sides shape?
shape(0,0,200,200,400,400);
rect(100,100,200,30);
regularPolygon(0,0,5,20);
regularPolygon(9,9,9,9);
