ENFORCEMENT TRAINING FOR THE STATE OF IL
TEST 1) SOLVED CORRECTLY TO SCORE A+
.NET Framework - ANSWER-A collection of classes and other codes that can be used to create
programs for Windows operating system. C# is a language supported by the framework, controls
are defined by specialized classes provided by the framework. You can also write your own class
to perform a special task.
"fetch-decode-execute" cycle - ANSWER-Fetch: Reads instructions from memory. Decode:
Decodes the instructions that were just read to determine how to perform operations. Execute:
Actually performs the operations.
AND operator - ANSWER-Both sub-expression must be true for the compound expression to be
true.
Append-text - ANSWER-Used when there is a need not to erase the contents of an existing file.
application software - ANSWER-Programs that perform special tasks
assembly languages - ANSWER-use short words known as
mnemonics to write the program. It must be translated by assembler. It is still considered
low-level languages.
autos window - ANSWER-Displays a list of the variables appearing in the current statement, the
three statements before, and the three statements after the current statement. The current
value and the data type of each variable are also displayed.
, binary file - ANSWER-contains data that has not been converted to text. You cannot view the
contents of binary files with a text editor.
bit - ANSWER-All data stored in a computer is converted to sequence of 0s and 1s; each
sequence is called a bit. Combinations of bits are used to represent characters.
break mode - ANSWER-The application pauses and enters break-mode when it is running and
reaches a break point.
break-point - ANSWER-A line that is selected in source code.
bytes - ANSWER-Eight bits make a byte. Byte's are tiny storage locations where a computer
stores its memory.
catch block - ANSWER-Where statements respond to the exception when it happens are placed.
central processing unit - ANSWER-The part of the computer that actually runs programs. It is the
most important part of the computer and are microprocessor.
check boxes - ANSWER-Allows users to select multiple options
class - ANSWER-A container that holds methods.
comments - ANSWER-Brief notes that are placed in a program's source code to explain how
parts of the program work.
compilation - ANSWER-translates a text-based source code to binary codes.