100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
CODE HS ANSWERS: LESSONS 1-20 $12.99   Add to cart

Exam (elaborations)

CODE HS ANSWERS: LESSONS 1-20

 5 views  0 purchase
  • Course
  • CODE HS
  • Institution
  • CODE HS

CODE HS ANSWERS: LESSONS 1-20

Preview 3 out of 28  pages

  • October 28, 2024
  • 28
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • CODE HS
  • CODE HS
avatar-seller
GEEKA
CODE HS ANSWERS: LESSONS 1-20
Which is a valid Karel command?
move;
MOVE
move();
move() - Answers- move();

What is a street in a Karel world? - Answers- Row

What is an avenue in a Karel world? - Answers- Column

If Karel starts at Street 1 and Avenue 3 facing East, what street (row) and avenue
(column) will Karel be on after this code runs?
move();
move();
move();
turnLeft();
move(); - Answers- Street 2 Avenue 6

If Karel is facing North and the code
turnLeft();
turnLeft();
runs; which direction is Karel facing now? - Answers- South

How many times should Karel turn left in order to turn right? - Answers- 3

What can be used to teach Karel to turn right? - Answers- functions

How many times should the start function be defined in a program? - Answers- 1

How many times should the start function be called in a program? - Answers- 0

Why do we use functions in programming? - Answers- Break down our program into
smaller parts
Avoid repeating code
Make our program more readable

What is a top down design? - Answers- Top down design is a way of designing your
program by starting with the biggest problem and breaking it down into smaller and
smaller pieces that are easier to solve.

What is a code comment - Answers- A way to give notes to the reader to explain what
your code is doing

,What commands does SuperKarel know that regular Karel does not? - Answers-
turnAround(); and turnRight();

Why should a programmer indent their code? - Answers- Helps show the structure of
the code
Easier for other people to understand
Indenting is a key part of good programming style

2.4.7 Building a Shelter Code - Answers- turnLeft();
makeSide();
function turnRight(){
turnLeft();
turnLeft();
turnLeft();

}
turnRight();
makeSide();

function makeSide(){
move();
putBall();
move();
putBall();
move();
putBall();
}

goHome();
function goHome(){
turnRight();
move();
putBall();
move();
putBall();
move();
putBall();
turnLeft();
turnLeft();
turnLeft();
move();
move();
move();
turnLeft();
turnLeft();
}

, 2.5.4: Pancakes with Start - Answers- function start(){
move();
makePancakes();
move();
move();
makePancakes();
move();
move();
makePancakes();
move();
}
function makePancakes(){
putBall();
putBall();
putBall();
}

2.6.4: The Two Towers - Answers- function start(){

move();
turnLeft();
makeTower();
move();
turnRight();
move();
move();
turnRight();
move();
makeTower();
turnLeft();
turnLeft();
move();
move();
move();
turnRight();

}

function makeTower(){
putBall();
move();
putBall();
move();
putBall();
}

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller GEEKA. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $12.99. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

81989 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$12.99
  • (0)
  Add to cart