问题
单项选择题
43.The following suggestions increase "Programs" (1) and make them easier to (2) : 1.Use a standard indention technique, blank lines, form feeds, and spaces. 2.Insert plenty of comments into your code. |
(2)
A.execute
B.interrupt
C.compile
D.maintain
答案
参考答案:D
解析:
1.使用标准缩进技术、空行、换页以及空格。2.在代码中插入足够的注释信息。本题的答案,需要通过后续建议内容来填写。两条建议都是提高代码可读性的手段,所以应当选择可读性,而改进可读性,也就使得程序易于维护。
对于第1空,选项A、B、C、D的含义分别是可靠性、安全性、可读性、可用性。选项C符合题意,为所选。
对于第2空,选项A、B、C、D的含义分别是执行,中断、编译、维护。选项D
符合题意,为所选。注意,调整代码缩进等方式,对代码的执行、中断、编译都没有影响。