Which of the following does not describe a valid comment in Java?

a. Single line comments, two forward slashes - //
b. Multi-line comments, start with / and end with /
c. Multi-line comments, start with / and end with /
d. Documentation comments, any comments starting with /* and ending with /


c. Multi-line comments, start with / and end with /

Computer Science & Information Technology

You might also like to view...

Pseudocode is a technique for representing program logic.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Excel inserts ____whenever it runs out of room on a page.

A. a blank row B. an automatic page break C. an automatic hyperlink D. a paragraph marker

Computer Science & Information Technology

Data backup, UPSes, backup generators, and redundant hardware all provide some form of this.

A. fault tolerance B. QoS C. traffic shaping D. caching

Computer Science & Information Technology

Consider the following statements:struct studentType1  {  string name;  int ID;  double gpa;  };studentType1 student1, student2;struct studentType2  {  string name;  int ID;  double gpa; };studentType2 student3, student4;Which of the following statements is valid in C++?

A. student2 = student3; B. student1 = student4; C. student2.ID = ID; D. student1.ID = student3.ID;

Computer Science & Information Technology