Bellringer
Vocabulary Words
send definitions and sentences:
Subject: Vocabulary [enter date sent]
Stocks
Bonds
Valuation
APR
Credit Score
Subject: Definitions and Sentences
Open Khan Academy in a new tab, keep your email active on the browser! Go to https://www.khanacademy.org
click on login
Click on home,
start learning,
Go to Computing
Go To Computer Programming. We will be working on the unit:
Hint:
noStroke();
var leftX = 118;
var rightX = 222;
var sunRadius = 100;
draw = function() {
background(184, 236, 255);
fill(255, 170, 0);
ellipse(200, 100, sunRadius, sunRadius);
// clouds
fill(255, 255, 255);
// left cloud
ellipse(leftX--, 150, 126, 97);
ellipse(leftX+62, 150, 70, 60);
ellipse(leftX-62, 150, 70, 60);
// right cloud
ellipse(rightX++, 100, 126, 97);
ellipse(rightX+62, 100, 70, 60);
ellipse(rightX-62, 100, 70, 60);
};
Show a helper when you are done.