Sorry if this sounds silly but i am having a hard time understanding what "n" is when talking about big-oh. I know "n" is the data size but what does it really mean. Like in:
public static boolean isArrayOver100(String[] args) {
2 if (args.length > 100)
3 return true;
4 return false;
5 }
What is "n" there??