Ask Question
2 March, 14:55

What is displayed in the alert dialog box after the following code is executed? var items = 3; for (var i = 1; i = 1; j--) { result * = j; } alert ("The factorial of " + i + " = " + result); }

+5
Answers (1)
  1. 2 March, 15:29
    0
    The factorial of 3=6

    Explanation:

    Following are the description of the given question

    This is jа vascript code. Here items are the variable that are holding the integer value "3". After that there is 2 loop are iterating one is outer and one inner loop. When i=1 1=1 condition of inner loop is true it executed the statement inside the inner loop so result = 1. Now we increment the value of i of the outer loop. i=2 2=1 condition of inner loop is true it executed the statement inside the inner loop so result = 2. Now we increment the value of i of the outer loop. Now i=3 3=1 condition of inner loop is true it executed the statement inside the inner loop so result = 6. Now we increment the value of i of the outer loop. i=4 4<=3 the condition of outer loop is false the control moves from the outer loop. It print The factorial of 3=6
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is displayed in the alert dialog box after the following code is executed? var items = 3; for (var i = 1; i = 1; j--) { result * = j; ...” 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