TEST 12.9

TEST 12.9

1st Grade

5 Qs

quiz-placeholder

Similar activities

ICT review unit 1

ICT review unit 1

1st - 2nd Grade

9 Qs

SCR1 Recap Day 2

SCR1 Recap Day 2

1st Grade

7 Qs

Parts of Computer

Parts of Computer

KG - 2nd Grade

10 Qs

Class1_Using a Mouse

Class1_Using a Mouse

1st Grade

10 Qs

Programming  TECHMIDDLE BP

Programming TECHMIDDLE BP

KG - 5th Grade

8 Qs

Grade One Quiz 1

Grade One Quiz 1

1st Grade

10 Qs

Computer 1 Reviewer Activity

Computer 1 Reviewer Activity

1st Grade

10 Qs

TEST 12.9

TEST 12.9

Assessment

Quiz

Computers

1st Grade

Hard

Created by

Nicholas Accetturi

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

var abid = 120

function setup() {

createCanvas(400, 400); }

function draw() {

background(abid);

ellipse(mouseX,mouseY,50,50) }

_____WHAT WILL WE SEE WHEN THIS IS RUN?

An ellipse will move up

The ellipse will move away from your mouse cursor

The ellipse will move with your mouse cursor

The ellipse will move down

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

var abid = 120

function setup() {

createCanvas(400, 400); }

function draw() {

background(abid);

ellipse(200,200,mouseX, mouseY) }

_____WHAT WILL WE SEE WHEN THIS IS RUN?

An ellipse will move up

The ellipse will change color as the mouse moves

The ellipse will move with your mouse cursor

The ellipse will change size as the mouse moves

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

var abid = 120

function setup() {

createCanvas(400, 400); }

function draw() {

background(mouseY);

ellipse(200,200,200, 100) }

_____WHAT WILL WE SEE WHEN THIS IS RUN?

An ellipse will move with the backgroud

The background will change color as the mouse moves

The ellipse will move with your mouse cursor

The background will change size as the mouse moves

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

var abid = 120

function setup() {

createCanvas(400, 400);}

function draw() {

background(100);

ellipse(mouseX,mouseY,abid,abid)

if (mouseY > 200) {abid = 50}

if (mouseY < 200) {abid = 300}}

_____WHAT WILL WE SEE WHEN THIS IS RUN?

An ellipse will move with the backgroud

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the ellipse

will move up

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the ellipse

will get smaller

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the ellipse

will get larger

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

var abid = 120

function setup() {

createCanvas(abid, abid);}

function draw() {

background(100);

ellipse(mouseX,mouseY,50,50)

if (mouseY > 200) {abid = 50}

if (mouseY < 200) {abid = 400}}

_____WHAT WILL WE SEE WHEN THIS IS RUN?

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the screen will get

smaller

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the ellipse

will move up

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the ellipse

will get smaller

The ellipse will move with your mouse cursor

and when it goes to the right side of the screen the screen will get larger.