Intro Flashcards
1
Q
What scaffolding does Java require?
A
Class declaration
Main method
2
Q
What does source control management do?
A
Backup code, allows teams to work, version history, can be connected to Continuous Integration
3
Q
How do you print out your code?
A
System.out.println - prints a line of text ending
with a newline.
○ System.out.print - prints text without a newline.
4
Q
What is a JavaDoc Comment?
A
JavaDoc comments, which are a special kind of
comment that can be parsed and translated into a
web page that describes your class and code.
JavaDoc comments begin with /** and end with */
/**
* JavaDoc comments are special, and we will talk
* about them in much more detail in the coming
* weeks.
*