Which filename extension identifies a file as a template file in Word 2016?
A. .docx
B. .dot
C. .dotx
D. .doxz
Answer: C
You might also like to view...
Show the output of the following code:
``` public class Test { public static void main(String[] args) { int[] x = {1, 2, 3, 4, 5}; increase(x); int[] y = {1, 2, 3, 4, 5}; increase(y[0]); System.out.println(x[0] + " " + y[0]); } public static void increase(int[] x) { for (int i = 0; i < x.length; i++) x[i]++; } public static void increase(int y) { y++; } }``` a. 0 0 b. 1 1 c. 2 2 d. 2 1 e. 1 2
You can use a(n) ________ query to delete data in one or more fields in a database. However, to delete entire records, including the primary key value that makes the record unique, you can use a(n) ________ query
A) update, delete B) append, delete C) update, append D) delete, update
If others have commented on a pin, their comments appear ________ the pinned image
A) to the right of B) beneath C) above D) to the left of
________ queries are the same type of query as those that perform aggregate functions
A) Join B) Union C) Order by D) Crosstab