Name four input controls and describe what they test?

What will be an ideal response?


1. numeric-alphabetic checks look for the correct type of character content in a field, numbers or letters;
2. limit checks verify that values are within preset limits;
3. range checks verify the values fall with in an acceptable range
4. reasonableness check determines if a value in one field, which has already passed a limit check and a range check, is reasonable when considered along with data in other fields of the record.

PTS: 1

Computer Science & Information Technology

You might also like to view...

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

1) The following are all valid variable names: _under_bar_, m928134, t5, j7, her_sales, his_account_total, a, b, c, z, z2. 2) The statement cout << "a = 5;"; is a typical example of an assignment statement. 3) A valid arithmetic expression with no parentheses is evaluated from left to right. 4) The following are all invalid variable names: 3g, 87, 67h2, h22, 2h. 5) By convention, function names begin with a capital letter and all subsequent words in the name begin with a capital letter.

Computer Science & Information Technology

Refer to function fox below when answering Question.

``` int fox (int m, int n) { int ans; if (m < 10) if (n < 10) ans = m + n; else ans = fox (m, n-2) + n; else ans = fox (m-1, n) + n; return ans; } ``` What is the value of fox (11, 11); ? a. 18 b. 29 c. 39 d. 51 e. 0

Computer Science & Information Technology

Burning is the term used for copying files from a CD to Windows Media Player

Indicate whether the statement is true or false

Computer Science & Information Technology

You cannot use the ____________________ key to insert a row at the beginning or middle of a table; instead, you use the Insert Rows Above or Insert Rows Below command.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology