asked 1.7k views
8 votes
What would be the new value of a after running the program

var a= 3
var b=5
a=a*b

options are:
8
15
3
75​

asked
User Aaossa
by
8.5k points

1 Answer

3 votes

Answer:

15

Explanation:

var a = 3

then a= 3

var b = 5

then b = 5

a ( a new variable ) = a * b = 3 * 5

answered
User Mandaputtra
by
8.4k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.