Java Comments
Comments are notes for humans. The compiler ignores them. Three styles: // one line, /* many lines */, /** javadoc */ for classes and methods.
Write why a tricky decision exists, not every obvious line. Don’t leave huge commented-out code forever — delete it or use git.
MCQ favourite — name all three styles. Nesting /* */ carelessly can break compilation.
Let's take this on the board with one tiny Main class — no extra files. Java Comments — comments are ignored by the compiler; only sum print runs. Start from main, go line by line, and stop at each print. That output is the proof for Comments.
Name //, /* */, and /** */ in one breath.