Using comments to document programs and what is a test plan


Question:

Using Comments to Document Programs and What is a Test Plan?

What information must be included in the comments at the top of a program? What is a test plan? I am looking for general answer not specific to this or any other program.

/**
* The HelloWorldApp class implements an application that
* simply prints "Hello World!" to standard output.
*/
class HelloWorldApp
{
public static void main(String[] args)
{
System.out.println("Hello World!"); // Display the string.
}
}

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Using comments to document programs and what is a test plan
Reference No:- TGS01937725

Now Priced at $20 (50% Discount)

Recommended (93%)

Rated (4.5/5)