Naming choices for variables during a coding test
Anonymous User
98

Hello, for those of you who gave coding tests along with interviewers, can you share your experieces / choices for naming variables and how much attention one has to give to them?

As an example will the following snippet of code land me into trouble because I used i as an iterator?
Thanks in advance!!

for (int i = 0; i<n; i++) {
System.out.println("Hello");
}
Comments (0)