1.2.2 Quiz
1. What is a <i>street <i> in a Karel world?
Answer: A row
2. What is an <i> avenue <i> in a Karel world?
Answer: A column
3. 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?
CODE:[
move( );
move( );
move( );
turnLeft( );
move( );
]
Answer: Street 2 and Avenue 6
4. If Karel is facing North and the code
CODE: [
turnLeft( );
turnLeft( );
]
runs; which direction is Karel facing now?
Answer: South











