public class Counter { public static void main(String[] args) { int numArgs = /* insert code here */; } } and the command line: java Counter one fred 42 Which code, inserted at line 3, captures the number of arguments passed into the program?
args.count
args.length
args.count()
args.length()
args.getLength()