List four general criteria used to evaluate a support website and briefly explain the purpose of each criteria.

What will be an ideal response?


Content - information is relevant, accurate and up-to-date
Organization - information is well-organized, easy-to-find, with ability to find related information
Format - information in small units, uses effective navigation links, fonts and menus are consistent
Mechanics - information spelled correctly and grammatically correct.

Computer Science & Information Technology

You might also like to view...

A step-by-step method for solving a problem in a computer program is a(n) __________.

Fill in the blank(s) with correct word

Computer Science & Information Technology

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

1. In C++ you can assign an expression of type double to a variable of type int with no problem. 2. To put a character into a cstring constant that causes the output to continue on the next line, insert the escape sequence \t into the string constant. 3. If we execute this code in an otherwise correct and complete program: ``` n = 1; n = (n++) + (n++); ``` the value of n is guaranteed to be 3 after the second line executes. 4. If we execute the code fragment in an otherwise complete, correct program: ``` n = 1; cout << n++ << " " << n++ << " " << n++ << endl; ``` the output is guaranteed to be 1 2 3. 5. C++ uses only /* */ for comments.

Computer Science & Information Technology

A ________ group can include users and groups from any domain in the AD DS forest and can be employed to grant permissions to any resource in the forest

Fill in the blank(s) with correct word

Computer Science & Information Technology

Which of the following terms refers to interfaces that allow you to choose from lists of choices or fill in blanks to customize pre-designed content?

A. Wizards B. Blogs C. HTML D. PHP

Computer Science & Information Technology