logo

Crowdly

Browser

Додати до Chrome

Given the following code, a student holds the mouse down for a few seconds, then...

✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.

Given the following code, a student holds the mouse down for a few seconds, then releases it. What do they observe?

function setup() {

  createCanvas(500, 500);

  background(220, 220, 220);

}

function draw() {

  if (mouseIsPressed) {

    fill(255, 0, 0);

  } else {

    fill(0, 0, 255);

  }

  ellipse(250, 250, 80, 80);

}

0%
0%
0%
0%
Більше питань подібних до цього

Хочете миттєвий доступ до всіх перевірених відповідей на elearning.aua.am?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome