Where should we write comments?
ss
Why is writing comments a good idea?
ss
What does it mean if args.length is zero?
ss
What is the benefit of being able to use a variable as a list index?
ss
What is the difference between Java and pseudo code?
ss
What does iteration mean?
ss
What is the value of Math.pow(10 , 2). Is it 100 or 1024?
dd
What is the value of Math.abs(-2.7)?
ss
What type does the value of Math.PI have?
ss
What is the effect of x = x * 10;?
ss
What is the shorthand way of writing each of the following? x = x + 1; x = x - 1; x = x + y; x = x - y; x = x * y; x = x / y;
s
What is the similarity between the while loop and the if statement?
ss
What are the four parts of a for loop? When should a for loop be used instead of a while loop?
ss