Ask 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 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. 10 March, 23:31
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers