What process involves the changing of a program's internal structure without changing the way the program works?

A. Editing
B. Code generation
C. Code modification
D. Code refactoring


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following code examples is a function that will accept three integer parameters, calculate their average, and return the result?

a. ```Function Average(ByVal intX As Integer, ByVal intY As Integer, _ ByVal intZ As Integer) As Single Average = (intX + intY + intZ) / 3 End Function ``` b. ```Function Average(ByVal intX As Integer, ByVal intY as Integer, _ ByVal intZ As Integer) As Single Average = intX + intY + intZ / 3 Return Average End Function ``` c. ```Function Average(ByRef intX As Integer, ByRef intY as Integer, _ ByRef intZ As Integer, ByRef Average As Double) Average = (intX + intY + intZ) / 3 End Function ``` d. ```Function Average(ByVal intX As Integer, ByVal IntY as Integer, _ ByVal intZ As Integer) As Single Return (intX + intY + intZ) / 3 End Function ```

Computer Science & Information Technology

Evaluate the performance of different systems hardware including the following:

What will be an ideal response?

Computer Science & Information Technology

The rule that packets not originating from inside your LAN should not be forwarded relates to ___________

a. Servers b. Workstations c. Routers d. Web servers

Computer Science & Information Technology

With AD FS preauthentication, client requests for the application are sent via a proxy server to the application server.

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

Computer Science & Information Technology