A ________ is a "document established by consensus and approved by a recognized body that provides, for common and repeated use, rules, guidelines, or characteristics for activities or their results, aimed at the achievement of the optimum degree of order in a given context."

A. regulation
B. standard
C. data file
D. law


Answer: B. standard

Computer Science & Information Technology

You might also like to view...

Rewrite the following while loops as for loops:

a) int i = 1; while(i<=10) { if (i<5 && i !=2) cout << 'X'; i++; } b) int i =1; while(i<=10) { cout << 'X'; i = i + 3; } c) int n = 100; do { cout << 'X'; n = n + 100; }while(n < 1000);

Computer Science & Information Technology

The command to add the numbers 1 and 10 is

a: add 1+10 b: a 1 + 10 c: expr 1+10 d: expr 1 + 10 e: expr -a 1 10

Computer Science & Information Technology

Text aligned evenly at both the left and right margins is ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

A user wants to adjust the number of horizontal and vertical pixels displayed on a monitor screen.   What display setting will the user adjust?

A. Multiple displays B. Color depth C. Refresh rate D. Resolution

Computer Science & Information Technology