Multiple choice technology security

Select the primary goals in the creation of Java Language

  1. architecture neutral and portable

  2. interpreted, threaded, and static

  3. robust and secure

  4. simple, object oriented, and familiar

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

Java was designed to be architecture-neutral (write once, run anywhere), simple and object-oriented for easier adoption, and robust/secure for reliable applications. These were among the primary design goals stated by Java's creators to improve upon C++.

AI explanation

Java's original design goals (from the Java White Paper) were to be simple, object-oriented, and familiar; robust and secure; and architecture-neutral and portable, so code could run unmodified on any platform. The distractor option swaps in "static" where the real goal was "dynamic" — Java was designed to be interpreted, threaded, and dynamic, not statically bound, so that option doesn't match the actual stated goals.