Which access modifier allows you to access method calls in libraries not created in Java?
C.
The native modifier is an indicator to the Java Virtual Machine that the method actually lives in a library outside of Java.
The System.loadLibrary()
method is required to indicate which library contains the method.