Answer:
value of z is 36.0
Explanation:
Given
[tex]v = 4\\\\w = 5\\\\x = 8\\\\y = 2\\\\z = (v+2)*x/y[/tex]
Required
Print the value of z
To answer this, I will make use of Python and also provide a manual solution:
The program (in python) is as thus:
v = 4
w = 5
x = 8
y = 2
z = (v + w) * x/y
print (“value of z is “, z)
Manually, we have:
z = (v + w) * x/y
z = (4 + 5) * 8/2
Solve the bracket
z = 9 * 8/2
z = 9 *4
z= 36
Either ways, the value of z is 36