List five questions you should ask yourself while debugging?

What will be an ideal response?


Many possible answers. Three possibilities: “Is there a wrong assumption?”, “Did I misunderstand the data?” “Did I make a wrong deduction?”

Computer Science & Information Technology

You might also like to view...

________, ________ and ________ are application-layer protocols supported by Windows XP.

a) WinINET; WinHTTP; CIFS b) WinINET; NBT; NetBIOS c) WinHTTP; NetBIOS; CIFS d) NBT; NetBIOS; CIFS

Computer Science & Information Technology

What are guidelines for social media design are:

What will be an ideal response?

Computer Science & Information Technology

What happened to the text file? Explain.

Redirect Outputs. a. Use the cd command to change to the /home/analyst/ (~) directory:

[analyst@secOps /]$ cd /home/analyst/
[analyst@secOps ~]$
b. Use the echo command to echo a message. Because no output was defined, echo will output to the current terminal window:
analyst@secOps ~]$ echo This is a message echoed to the terminal by echo.
This is a message echoed to the terminal by echo.
c. Use the > operator to redirect the output of echo to a text file instead of to the screen:
analyst@secOps ~]$ echo This is a message echoed to the terminal by echo. >
some_text_file.txt
d. Notice that even though the some_text_file.txt file did not exist, it was automatically created to receive the output generated by echo. Use the ls -l command to verify if the file was really created:
[analyst@secOps ~]$ ls –l some_text_file.txt
-rw-r--r-- 1 analyst analyst 50 Feb 24 16:11 some_text_file.txt
e. Use the cat command to display the contents of the some_text_file.txt text file:
[analyst@secOps ~]$ cat some_text_file.txt
This is a message echoed to the terminal by echo.
f. Use the > operator again to redirect a different echo output of echo to the some_text_file.txt text file:
analyst@secOps ~]$ echo This is a DIFFERENT message, once again echoed to the
terminal by echo. > some_text_file.txt
g. Once again, use the cat command to display the contents of the some_text_file.txt text file:
[analyst@secOps ~]$ cat some_text_file.txt
This is a DIFFERENT message, once again echoed to the terminal by echo.

Computer Science & Information Technology

Match each of the following with the correct definition or statement.

A. A field of data that is created based on values of other fields B. A combination of field names, operators and functions C. A predefined Access formula that returns a value such as a subtotal or count D. A statistic such as a subtotal or count is determined on a given field in a group of records E. A datasheet's records are placed in a determined order F. An asterisk or question mark used in a query

Computer Science & Information Technology