In software programming, if we adopt and use some classes, algorithms and functional modules which are not totally developed by ourselves, we are required to _______________.
A: highlight the code
B: quote the sources
C: modify the code
D: comment the code
A: highlight the code
B: quote the sources
C: modify the code
D: comment the code
举一反三
- Which of the following is not a software engineering code of ethics
- Which of the following emerged first in the history of software engineering? () A: Extreme programming B: Optimizing inspections C: Commercial OOP language D: Code repositories
- Maplesim’s code generation can not generate ()。 A: C code B: Java code C: Html code D: MATLAB code
- What preparations should we do for a job interview? A: Dress code B: Answer to some common questions C: resume D: Self introduction
- Given this method in a class: public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append(‟ buffer.append(this.name); buffer.append(‟>‟); return buffer.toString(); } Which is true?() A: This code is NOT thread-safe. B: The programmer can replace StringBuffer with StringBuilder with no other changes. C: This code will perform well and converting the code to use StringBuilder will not enhance the performance. D: This code will perform poorly. For better performance, the code should be rewritten: return “”;