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();

c. List list = new ArrayList<>();

Computer Science & Information Technology

You might also like to view...

Which numbering system uses letters to represent some digits?

A) Binary B) Decimal C) Hexadecimal D) Octal

Computer Science & Information Technology

In Windows 7 and later, what starts automatically if your system detects a boot problem?

What will be an ideal response?

Computer Science & Information Technology