Intro Flashcards

1
Q

What scaffolding does Java require?

A

Class declaration
Main method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does source control management do?

A

Backup code, allows teams to work, version history, can be connected to Continuous Integration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.
*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly