Prior to Java SE 8, Java supported three programming paradigms. Java SE 8 added ________.

a. procedural programming
b. object-oriented programming
c. generic programming
d. functional programming.


d. functional programming.

Computer Science & Information Technology

You might also like to view...

Which of the following is an example of a session hacking attack?

A) Man-in-the-middle attack B) Smurf attack C) Ping of Death attack D) IP spoofing attack

Computer Science & Information Technology

Variables declared with the Integer, Decimal, and Double data types can store numbers only.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What is the output of the following code?

``` ArrayList list = new ArrayList(); java.util.Date d = new java.util.Date(); list.add(d); list.add(d); System.out.println((list.get(0) == list.get(1)) + " " + (list.get(0)).equals(list.get(1))); ``` a. true false b. false true c. true true d. false false

Computer Science & Information Technology

Because each node of a linked list has two components, we need to declare each node as a(n) ____.

A. reference and string B. int and object C. index and element D. class or struct

Computer Science & Information Technology