You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
problem/issue description : the value of num3 is not declared
why the issue need to be fixed: since num3 isn't declared, the output that needs to be displayed in the variable "sum" will not be displayed.
how to reproduce, incase of a bug: num1 and num2 are declared in the program, and num3 is not declared. and this is a simple error of declaration. therefore
CORRECT : NUM1+ NUM2
INCORRECT : NUM1 + NUM3
other notes/environment: this can also be avoided by replacing the value of num2 with num3. that helps see the problem in a different way also mitigating the problem.
problem/issue description : the value of num3 is not declared
why the issue need to be fixed: since num3 isn't declared, the output that needs to be displayed in the variable "sum" will not be displayed.
how to reproduce, incase of a bug: num1 and num2 are declared in the program, and num3 is not declared. and this is a simple error of declaration. therefore
CORRECT : NUM1+ NUM2
INCORRECT : NUM1 + NUM3
other notes/environment: this can also be avoided by replacing the value of num2 with num3. that helps see the problem in a different way also mitigating the problem.
@vpriyapm
thank you.
The text was updated successfully, but these errors were encountered: