Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Insert the loops from parts A, and B below into a script element in the body below an hl that says Last Lab! Run

  

Insert the loops from parts A, and B below into a script element in the body below an hl that says Last Lab! Run the code and insert comments that answer the questions. A. How many times does the following loop execute? for (a = 0; a < 5; a=a+1) { document.write ("Go Gamecocks!! "); } B. What is written to the document by the following loop? var k = 10; while (k 7) { } document.write (k + " "); k = k - 1; Below those loops add two more loops: a) Write the code for a while loop that outputs these values: 5 10 15 20 25 30 35 using document.write. b) Write a loop to add the numbers from 0 to 100 and only output the sum in an alert box. Hint: Add the values in the loop and put the alert below of the loop.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Seeing Through Statistics

Authors: Jessica M.Utts

4th Edition

1285050886, 978-1305176249, 1305176243, 978-1305322394, 978-1285050881

More Books

Students also viewed these Algorithms questions