The output node is another exact linear combination. The squared error then compares that output with the shown target.
The output node
The output combines the hidden activations with v1=1, v2=1, and c=0. The result is yhat=2.
y^=1⋅2+1⋅0+0=2
Squared error
The target is y=3. Squared error gives L=1 exactly.
L=(y^−y)2=(2−3)2=1
Summary
The forward pass ends with one exact integer loss. No decimal approximation is introduced.
y^=2,L=1