What is the value of DAG given x = 5, y = 10
What is the value of DAG given x = 5, y = 10

Answer: 110 — Final expression: 2*x*x + x*y + y Read the DAG to form the expression: x*x + x*y + y + x*x. There are two x*x terms because the input x is used twice in…
Attempted by 22 students.
Show answer & explanation
Correct answer: 110
Final expression: 2*x*x + x*y + y
Read the DAG to form the expression: x*x + x*y + y + x*x. There are two x*x terms because the input x is used twice in separate multiplication paths.
Combine like terms to get 2*x*x + x*y + y.
Substitute x = 5 and y = 10: 2*5*5 + 5*10 + 10 = 2*25 + 50 + 10 = 50 + 50 + 10 = 110.
Answer: 110
Loading lesson…