Search Results

0
votes

What fundamental skills are needed for programming?

My favorite answer to this is described in computational thinking: thinking in multiple levels of abstraction simu …
0
votes

Why is using a wild card with a Java import statement bad?

It helps to identify classname conflicts: two classes in different packages that have the same name. This can be masked with the * import. It makes dependencies explicit, so that an …