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.9.7 For Loop Square CodeHS

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

    function start() { for(var i = 0; i < 4; i++) { move(); putBall(); turnLeft(); } }

    function start()
    {
    for(var i = 0; i < 4; i++)
    {
    move();
    putBall();
    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.9.6 Dizzy Karel CodeHS Answers

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

    function start() { for(var i = 0; i < 32; i++) { turnLeft(); } }

    function start()
    {
    for(var i = 0; i < 32; i++)
    {
    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.9.5 Take ’em All CodeHS Answers

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

    function start() { move(); for(var i = 0; i < 100; i++) { takeBall(); } move(); }

    function start()
    {
    move();
    for(var i = 0; i < 100; i++) { takeBall(); } 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.8.4 The Two Towers + SuperKarel CodeHS Answers

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

    function start() { buildTower(); buildTower2(); // Write your code here } function buildTower() { move(); turnLeft(); putBall(); move(); putBall(); move(); putBall(); turnLeft(); turnLeft(); move(); move(); turnLeft(); } function buildTower2() { move(); move(); turnLeft(); putBall(); move(); putBallRead more

    function start()
    {
    buildTower();
    buildTower2();
    // Write your code here
    }
    function buildTower()
    {
    move();
    turnLeft();
    putBall();
    move();
    putBall();
    move();
    putBall();
    turnLeft();
    turnLeft();
    move();
    move();
    turnLeft();
    }
    function buildTower2()
    {
    move();
    move();
    turnLeft();
    putBall();
    move();
    putBall();
    move();
    putBall();
    move();
    turnRight();
    }

    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.7.4 The Two Towers + Comments CodeHS Answers

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

    function start() { buildTower();///hhahhah captian obvious buildTower2();///why am i doing this, can’t this just submit already? // So like literally this just calls in the buildTower functions lol } function buildTower() // This one literally builds the towers and goes down { move(); //move turnLefRead more

    function start()
    {
    buildTower();///hhahhah captian obvious
    buildTower2();///why am i doing this, can’t this just submit already?
    // So like literally this just calls in the buildTower functions lol
    }
    function buildTower() // This one literally builds the towers and goes down
    {
    move(); //move
    turnLeft(); //turn
    putBall(); //puttingBall
    move(); //move
    putBall(); //putting ball
    move(); //move
    putBall(); //putting ball
    turnLeft(); //turn
    turnLeft(); //turn
    move(); //moving
    move(); //moing again
    turnLeft(); //turning again
    }
    function buildTower2() // This one is how to build the second tower becaues for some reason this one is a bit different from the first
    {
    move();//aaa
    move();//aaa
    turnLeft();//aa
    putBall();//a
    move();//a
    putBall();//a
    move();//a
    putBall();//a
    move();//aaaaa
    turnRight();//aaaaaa
    }
    function turnRight() // This is so self explanatory i don’t even see whsy I need to explain this lool
    {
    turnLeft();//yeet
    turnLeft();//xd
    turnLeft();//exdeeh
    }

    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.6.4 The Two Towers

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

    function start() { buildTower(); buildTower2(); // Write your code here } function buildTower() { move(); turnLeft(); putBall(); move(); putBall(); move(); putBall(); turnLeft(); turnLeft(); move(); move(); turnLeft(); } function buildTower2() { move(); move(); turnLeft(); putBall(); move(); putBallRead more

    function start()
    {
    buildTower();
    buildTower2();
    // Write your code here
    }
    function buildTower()
    {
    move();
    turnLeft();
    putBall();
    move();
    putBall();
    move();
    putBall();
    turnLeft();
    turnLeft();
    move();
    move();
    turnLeft();
    }
    function buildTower2()
    {
    move();
    move();
    turnLeft();
    putBall();
    move();
    putBall();
    move();
    putBall();
    move();
    turnRight();
    }
    function turnRight()
    {
    turnLeft();
    turnLeft();
    turnLeft();
    }

    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.5.4 Pancakes with Start CodeHS Answers

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

    function makePancakes() { putBall(); putBall(); putBall(); } function start() { move(); makePancakes(); move(); move(); makePancakes(); move(); move(); makePancakes(); move(); }

    function makePancakes()
    {
    putBall();
    putBall();
    putBall();
    }
    function start()
    {
    move();
    makePancakes();
    move();
    move(); makePancakes(); move(); move(); makePancakes(); move();
    }

    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
  • 595 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.