When passing an array ByVal to a ____ procedure, the original array may be changed by the procedure.
A. Sort
B. Function
C. Sub
D. Baseline
Answer:
B. Function
C. Sub
You might also like to view...
What are the three key elements involved in the characterization of an organization's security control architecture?
Fill in the blank(s) with the appropriate word(s).
Answer the following statements true (T) or false (F)
1. An application program is a set of system software routines that sits between the operating system and the hardware. 2. A black box is a point of connection or linkage between two components. 3. The user communicates with the application program, the application program communicates with the operating system, and the operating system communicates with the hardware. 4. Most application programs access the hardware directly. 5. A service is a hardware link activated by the operating system.
What is the output of the following code?
``` public class Test { public static void main(String[] args) { new Person().printPerson(); new Student().printPerson(); } } class Student extends Person { private String getInfo() { return "Student"; } } class Person { private String getInfo() { return "Person"; } public void printPerson() { System.out.println(getInfo()); } } ``` a. Person Person b. Person Student c. Stduent Student d. Student Person
For which option below would an add-on or plug-in be helpful for extending capabilities?
A) check to see if a Web site has been deleted B) check to see which parts of a Web page might not be working or experiencing high traffic C) check to see if a Web server is off-line D) provide special display for graphics such as PDF files