A _______ for an invention is the grant of a property right to the inventor.
A. patent B. copyright
C. trademark D. claim
A. patent
You might also like to view...
A(n) ____ specifies a relationship between tables and the properties of that relationship.
A. link B. join C. hyperlink D. object
In the following code that uses recursion to find the greatest common divisor of a number, what is the base case?
``` public static int gcd(int x, int y) { if (x % y == 0) return y; else return gcd(y, x % y); } ``` a. gcd(int x, int y) b. if (x % y == 0) return y; c. else return gcd(y, x % y); d. Cannot tell from this code
Case-Based Critical Thinking QuestionsCase 7-1Max wants to save a worksheet as a Web page. What should he do?In the Save As dialog box, Max should save his Excel file as a(n) _____ file type.
A. HTTP B. HTML C. XML D. JS
A ________ is a dispatchable unit of work within a process that includes a processor context and its own data area for a stack.
A. process B. process switch C. thread D. thread switch