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();
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?
Share
Karel will end up on Street 2 and Avenue 4.
Explanation:
1. Karel starts at Street 1, Avenue 3 facing East.
2. The first `move()` moves Karel to Street 1, Avenue 4.
3. The second `move()` moves Karel to Street 1, Avenue 5.
4. The third `move()` moves Karel to Street 1, Avenue 6.
5. `turnLeft()` changes Karel’s direction to face North.
6. The final `move()` moves Karel up one street to Street 2, Avenue 6.
So the final position is Street 2, Avenue 6.