What is the format for the main method?
public static void main(String [ ] args)
Are keywords capitalized or lowercased?
lowercased
Are class names capitalized or lowercased?
capitalized
What do complete lines must end with?
;
What is the format for printing something out?
System.out.print(“ “);
System.out.println(“ “);
What is a syntax error also called?
A bug
What is the act of fixing syntax errors called?
Debugging
What does the first line of code look like?
public class NameOfClass
FirstClass.java:5: error: unclosed string literal
Which line has an error?
Line 5
How do you start and end comments that are more than one line long?
/*
*/
How do you mark comments that are one line?
//
What is a compiler?
Translates code into a class file that can be run
What is a literal string?
Things between two quotation marks