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
When you described how local variables are not initialized, you said that they are NOT uninitialized. I believe you should either write not initialized or uninitialized. Saying that local variables are not uninitialized is saying that local variables are initialized, which is incorrect.
here: local_int is a local variable which is not uninitialized, so it has an undefined value. local_str is also a local variable which is not uninitialized, but it has a value that is defined by the class. So it is empty string.
Your enviroment information
System: NA
Compiler version/IDE: NA
The text was updated successfully, but these errors were encountered:
Exercise information
Exercise 2.10
Question or Bug
When you described how local variables are not initialized, you said that they are NOT uninitialized. I believe you should either write not initialized or uninitialized. Saying that local variables are not uninitialized is saying that local variables are initialized, which is incorrect.
here:
local_int
is a local variable which is not uninitialized, so it has an undefined value.local_str
is also a local variable which is not uninitialized, but it has a value that is defined by the class. So it is empty string.Your enviroment information
The text was updated successfully, but these errors were encountered: