Questions & Answers
3.1.4: Your First Karel Program ✔️Correct Ans-move();
move();
move();
move();
takeBall();
3.1.5: Short Stack ✔️Correct Ans-move();
putBall();
putBall();
move();
3.2.4: Make a Tower ✔️Correct Ans-move();
putBall();
turnLeft();
move();
putBall();
move();
putBall();
move();
turnLeft();
turnLeft();
, codehs; Programming with Karel-
Questions & Answers
turnLeft();
3.2.5: Pyramid of Karel ✔️Correct Ans-putBall();
move();
putBall();
turnLeft();
move();
putBall();
turnLeft();
turnLeft();
turnLeft();
move();
putBall();
turnLeft();
turnLeft();
turnLeft();
move();
putBall();
turnLeft();
turnLeft();
move();
, codehs; Programming with Karel-
Questions & Answers
move();
putBall();
turnLeft();
turnLeft();
turnLeft();
3.3.4: Slide Karel ✔️Correct Ans-function turnRight(){
turnLeft();
turnLeft();
turnLeft();
}
putBall();
move();
turnRight();
move();
putBall();
move();
turnLeft();
move();
putBall();