The ____ contains a list of technical specifications for equipment, software, and services needed for a new system, as determined during the system design phase, and requests that vendors propose products that meet those specifications.

A. benchmark test
B. request for proposal (RFP)
C. request for quotation (RFQ)
D. data dictionary


Answer: B

Computer Science & Information Technology

You might also like to view...

Which MouseEvent method can be used to determine if the Alt key is pressed?

a. isAltPressed. b. isAltDown. c. getClickCount. d. AltPressed.

Computer Science & Information Technology

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

1. When you divide an integer by an integer in C#, the result is always an integer. 2. Any data the user enters into a Text Box control is stored in the control’s Text property as a string, even if it is a number. 3. You can use a cast operator to convert a string to a numeric type. 4. The using System; directive is required for any program that uses the Parse methods.

Computer Science & Information Technology

Which of the following will check to see if a password contains a # sign, given that the character code for "#" is 37? The password is 8 characters long and is stored in a variable named pword.

a. ``` var check = false; for (j = 1; j < 7; j++) { if (pword.charCodeAt[j] == 37); check = true; } ``` b. ``` var check = false; for (j = 0; j < 8; j++) { if (pword.charCodeAt(j) == 37) check = true; } ``` c. ``` var check = false; for (j = 0; j <= 8; j++) { if (pword.charCodeAt()== 37) check = true; } ``` d. ``` var check = true; for (j = 1; j < 9; j++) { if (pword.charCodeAt(37)== "#") check = true; } ```

Computer Science & Information Technology

Customizing the errors flagged by the Spelling and Grammar checker is done in the ________ dialog box

Fill in the blank(s) with correct word

Computer Science & Information Technology