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
Get step-by-step solutions from verified subject matter experts
