Question: What will be the ultimate value of the variable finalValue when the user clicks the button? void btnSubmit_Click(object sender , EventArgs e) { int finalValue;

What will be the ultimate value of the variable finalValue when the user clicks the button? void btnSubmit_Click(object sender , EventArgs e) { int finalValue; int row = 3; int col = 4;

finalValue = myFunc(row, col); lblResult.Text = Convert.ToString(finalValue);

}

int myFunc(int rowPar, int colPar) { int counter = 1; int tempCol;

tempCol = colPar;

while (rowPar >= 0) { while (colPar >= 0) { counter = counter + 1; colPar = colPar - 1; } colPar = tempCol; rowPar = rowPar - 1; }

return counter;

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!