CJCoding With Joseph

Dot Product of Two Arrays

Two arrays of equal length are given: a = {1, 2, 3} and b = {4, 5, 6}. The dot product multiplies matching positions and sums the results. Print it:

32

That is 1*4 + 2*5 + 3*6 = 4 + 10 + 18 = 32.

Expected Output:

32
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.