NEW
Font size
WorksheetsAnimation 1
Total questions: 10
Worksheet time: 5mins
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?
Cindy wrote the codes:
//fill("yellow");
rect(200,150);
fill("yellow");
rect(350,300,50,100);
Which following image is correct?
David wants to generate the following image, which group of codes is correct?
fill("pink");
rect(100,100);
rect(200,100);
fill("red");
rect(150,150);
fill("orange");
rect(100,200);
rect(200,200);
fill(pink);
rect(100,100);
rect(200,100);
fill(red);
rect(150,150);
fill(orange);
rect(100,200);
rect(200,200);
fill("pink");
rect("100,100");
rect("200,100");
fill("red");
rect("150,150");
fill("orange");
rect("100,200");
rect("200,200");
fill('pink')
rect(100,100);
rect(200,100);
fill('red');
rect(150,150);
fill('orange');
rect(100,200);
rect(200,200);
How many lines of the following codes have problems?
1. rect(100,200)
2. fill{"red"};
3. rect(200,300);
4. fill('pink');
5. rect(100,100,200,200);
6. rect(100);
2
3
4
5
Elsa wrote the following codes, which generated image can match to her codes?
Finn wrote a code:
fill("red");
rect(50,50,100,100);
fill("blue");
rect(100,100,200);
fill("yellow");
rect(300,300);
fill("green");
rect(0,0,300,300);
Which colour can fill the most?
red
blue
yellow
green
Which colour can be showed in the generated image by the following code?
fill("red");
rect(50,50,100,100);
fill("green");
rect(0,0,300,300);
fill("yellow");
rect(400,0,150,300);
//fill("pink");
fill("navy");
rect(300,300,150,150);
red, green, yellow,pink, navy
green,navy
green,navy,yellow
green,yellow,pink
Which following statement is correct?
Write down the wheel code first
Write down the wheel code as the last
The wheel codes should be: ellipse()
The car body code construction should be:
rect();
fill("red");
