Ask Question
18 June, 13:38

Consider the following algorithm. x â 1 for i is in {1, 2, 3, 4} do for j is in {1, 2, 3} do x â x + x for k is in {1, 2, 3, 4, 5} do x â x + 1 x â x + 5 Count the number of + operations done by this algorithm.

+5
Answers (1)
  1. 18 June, 15:17
    0
    Number of + operation done by this algorithm is 60

    Explanation:

    i = 4

    j = 3

    k = 6

    Now, let "n" be number of '+' operations

    n = i * j + i * 2k

    substituting the figures

    n = 4 * 3 + 4 * (2 * 6)

    n = 12 + 4 * 12

    n = 12 + 48

    n = 60
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Consider the following algorithm. x â 1 for i is in {1, 2, 3, 4} do for j is in {1, 2, 3} do x â x + x for k is in {1, 2, 3, 4, 5} do x â x ...” 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