4!/0! = ____.

A. 2
B. 15
C. 24
D. 32

Answer: C

Computer Science & Information Technology

You might also like to view...

HTTP is the language used by browsers to view Web pages

Indicate whether the statement is true or false

Computer Science & Information Technology

supports type inferencing with the <> notation in statements that declare and create generic type variables and objects. For example, the following line: can be written as:

``` List list = new ArrayList(); ``` a. List<> list = new ArrayList<>(); b. List<> list = new ArrayList(); c. List list = new ArrayList<>(); d. List list = new ArrayList();

Computer Science & Information Technology