What will occur when the user clicks the btnSlope Button in the following code? ```Private Sub btnSlope_Click(ByVal

Question:

What will occur when the user clicks the btnSlope Button in the following code?

```Private Sub btnSlope_Click(ByVal sender As System.Object, ByVal e As System.

EventArgs) Handles btnSlope.Click Dim decRise As Decimal Dim decRun As Decimal Dim decSlope As Decimal decRise = 12.3D decRun = 2.1D decSlope = decRise / decRun lblSlope.Text = "The Line Slope is" & decSlope.ToString("F1")```

End Sub

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: