100% Solved
How many times should Karel turn left in order to turn right?
1
2
3
4
ANSWERED ✔✔3
What can be used to teach Karel to turn right?
,Functions
Variables
Dog treats
Karel can already turn right
ANSWERED ✔✔Functions
Which function will teach Karel how to spin in a circle one time?
A
function spin() { turnRight(); }
B
function spin() { turnLeft(); turnLeft(); turnLeft(); turnLeft(); } C
, function spin() { turnLeft(); turnLeft();
}
D ✔✔B
How many times should the start function be defined in a program?
0
1
2
However many you like
ANSWERED
Great! ✔✔1
How many times should you call the start function when writing your program? 0