The degree in which the question measures what the analyst intends to measure is called:
A) external consistency.
B) internal consistency.
C) factoring.
D) validity.
D) validity.
You might also like to view...
Which of the following is the syntax to define a cursor in JavaScript?
A. object.cursorTypes = cursor.style; B. object.style = cursorTypes; C. object.style.cursor = cursorTypes; D. object.style.cursorTypes = cursor;
What is wrong in the following program?
``` public class Test { public static void main (String[] args) { try { System.out.println("Welcome to Java"); } } }``` a. You cannot have a try block without a catch block. b. You cannot have a try block without a catch block or a finally block. c. A method call that does not declare exceptions cannot be placed inside a try block. d. Nothing is wrong.