Which two statements apply to unsigned applets?
A.
They can access the client file system.
B.
They can connect to third-party servers.
C.
They can connect to the originating host.
D.
They can invoke public methods of applets on a page.
E.
They can load native libraries.
CD
CD
C y D
By default untrusted are not allowed to:
filesystem —> SO A IS FALSE
network (only to download host) –> SO B is False and C is TRUE
starting other programs
loading libraries — > So E is False
making native calls
Local and signed applets are considered trusted(execution is not in the sandbox)
D is true. And Applet has public methods, so obviusly invoking them are alowed, oyherwise Applet does not mak any sense.
CD