Ask Question
9 February, 11:41

The following jа vascript program is supposed to print: 1 by 4 by 9

on a single line by itself. Unfortunately the program contains at least eight mistakes. Write the corrected line beside the line in error.

var N; / / Text

N : = 1;

document. writeln (N);

document. writeln (" by ");

document. writeln ("N + 3");

document. writeln (" by ");

document. writeln (N + 5);

+3
Answers (1)
  1. 9 February, 12:50
    0
    var N; / / Text

    N = 1;

    document. write (N);

    document. write (" by ");

    document. write (N + 3);

    document. write (" by ");

    document. write (N + 8);

    Explanation:

    var N; / / Text

    N = 1;

    document. write (N);

    document. write (" by ");

    document. write (N + 3);

    document. write (" by ");

    document. write (N + 8);
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “The following jа vascript program is supposed to print: 1 by 4 by 9 on a single line by itself. Unfortunately the program contains at ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers