Ask Question
31 October, 13:26

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);

+1
Answers (1)
  1. 31 October, 14:46
    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?
Get 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 & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers