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 /
You might also like to view...
Pseudocode is a technique for representing program logic.
Answer the following statement true (T) or false (F)
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
Data backup, UPSes, backup generators, and redundant hardware all provide some form of this.
A. fault tolerance B. QoS C. traffic shaping D. caching
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;