Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Forgot Password?

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign In

Quizaza

Quizaza

Quizaza Navigation

  • Home
  • DMCA
  • Honor Code
  • About us
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • About Us
  • Contact Us

Share & grow the world's knowledge!

We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.

  • Recent Questions
  • Most Answered
  • Bump Question
  • Answers
  • Most Visited
  • Most Voted
  • No Answers
  1. Asked: January 27, 2024In: Technology

    1.13.4 Random Hurdles CodeHS Answers

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 4:07 am

    function start() { for(var i = 0; i < 13; i++) { if(frontIsClear()) { move(); } else { jumpHurdle(); } } } function jumpHurdle() { turnLeft(); move(); turnRight(); move(); turnRight(); move(); turnLeft(); }

    function start()
    {
    for(var i = 0; i < 13; i++)
    {
    if(frontIsClear())
    {
    move();
    }
    else
    {
    jumpHurdle();
    }
    }
    }
    function jumpHurdle()
    {
    turnLeft();
    move();
    turnRight();
    move();
    turnRight();
    move();
    turnLeft();
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  2. Asked: January 27, 2024In: Technology

    1.12.6 Big Tower CodeHS Answers

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 4:06 am

    /* This program draws a big tower from Karel’s starting spot */ function start() { faceNorth(); placeBalls(); } function placeBalls() { while(noBallsPresent()) { putBall(); if(frontIsClear()) { move(); } } } function faceNorth() { while(notFacingNorth()) { turnLeft(); } }

    /* This program draws a big tower from Karel’s starting spot */
    function start()
    {
    faceNorth();
    placeBalls();
    }
    function placeBalls()
    {
    while(noBallsPresent())
    {
    putBall();
    if(frontIsClear())
    {
    move();
    }
    }
    }
    function faceNorth()
    {
    while(notFacingNorth())
    {
    turnLeft();
    }
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  3. Asked: January 27, 2024In: Technology

    1.12.5 Lay Row of Tennis Balls CodeHS

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 4:03 am

    function start() { while(noBallsPresent()) { putBall(); if(frontIsClear()) { move(); } } }

    function start()
    {
    while(noBallsPresent())
    {
    putBall();
    if(frontIsClear())
    {
    move();
    }
    }
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  4. Asked: January 27, 2024In: Technology

    1.12.4 Follow The Yellow Ball Road CodeHS

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 4:02 am

    // Follow the yellow ball road! // Karel moves until it’s not on a tennis ball. function start() { while(ballsPresent()) { move(); } }

    // Follow the yellow ball road!
    // Karel moves until it’s not on a tennis ball.
    function start()
    {
    while(ballsPresent())
    {
    move();
    }
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  5. Asked: January 27, 2024In: Technology

    1.11.5 Right Side Up CodeHS Answers

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 4:02 am

    function start() { south(); west(); } function south() { if(facingSouth()) { turnRight(); } } function west() { if(facingWest()) { turnLeft(); turnLeft(); } }

    function start()
    {
    south();
    west();
    }
    function south()
    {
    if(facingSouth())
    {
    turnRight();
    }
    }
    function west()
    {
    if(facingWest())
    {
    turnLeft();
    turnLeft();
    }
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  6. Asked: January 27, 2024In: Technology

    1.10.5 Is There a Ball?

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 3:59 am

    function start() { if(ballsPresent()) { takeBall(); } if(noBallsPresent()) { putBall(); } move(); }

    function start()
    {
    if(ballsPresent())
    {
    takeBall();
    }
    if(noBallsPresent()) { putBall(); } move();
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
  7. Asked: January 27, 2024In: Technology

    1.9.8 Lots of Hurdles CodeHS Answers

    Quizaza team
    Quizaza team Enlightened
    Added an answer on January 27, 2024 at 3:52 am

    function start() { for(var i = 0; i < 5; i++) { jumpHurdle(); } } function jumpHurdle() { move(); move(); turnLeft(); move(); turnRight(); move(); turnLeft(); turnLeft(); turnLeft(); move(); turnLeft(); }

    function start()
    {
    for(var i = 0; i < 5; i++)
    {
    jumpHurdle();
    }
    }
    function jumpHurdle()
    {
    move();
    move();
    turnLeft();
    move();
    turnRight();
    move();
    turnLeft();
    turnLeft();
    turnLeft();
    move();
    turnLeft();
    }
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report
Load More Answers

Sidebar

Ask A Question

Stats

  • Questions 266
  • Answers 318
  • Best Answers 34
  • Users 151
  • Popular
  • Answers
  • Quizaza team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Quizaza team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Quizaza team

    What is a programmer’s life like?

    • 5 Answers
  • Quizaza team
    Quizaza team added an answer A) multiple settings Novels, being lengthy and complex forms of… February 12, 2024 at 6:54 am
  • Quizaza team
    Quizaza team added an answer The absolute value of −18.7 is 18.7. February 12, 2024 at 6:52 am
  • Quizaza team
    Quizaza team added an answer Exercise Program managers should use exercises to validate: Plans, policies… February 12, 2024 at 6:51 am

Top Members

Quizaza team

Quizaza team

  • 73 Questions
  • 608 Points
Enlightened
Quiz Master

Quiz Master

  • 0 Questions
  • 119 Points
Pundit
agrohimgna

agrohimgna

  • 0 Questions
  • 22 Points
Begginer

Trending Tags

analytics Civil Rights CodeHS company Cyber Awareness Challenge Cybersecurity english google ICS 100 interview javascript language life php programmer programs question salary Sere 100.2 ServSafe

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users

Footer

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

© 2024 Quizaza. All Rights Reserved.

[wordpress_social_login]


OR


Forgot your password?
[wordpress_social_login]


OR


Note: Your password will be generated automatically and sent to your email address.

Forgot Your Password?

Enter your email address and we'll send you a link you can use to pick a new password.