The JVM stores the array in an area of memory, called _______, which is used for dynamic memory allocation where blocks of memory are allocated and freed in an arbitrary order.

a. stack
b. heap
c. memory block
d. dynamic memory


b

Computer Science & Information Technology

You might also like to view...

Which of the following is not an advantage of a high level language?

a. It is easier to use than machine language. b. Its statements resemble English. c. It is portable. d. Memory can be referenced symbolically. e. It is easy for the machine to understand.

Computer Science & Information Technology

What is the value of intTotal after the following code executes?

``` Dim intNumber1 As Integer = 2 Dim intNumber2 As Integer = 3 Dim intTotal As Integer intTotal = AddSquares(intNumber1, intNumber2) Function AddSquares(ByVal intA As Integer, ByVal intB As Integer) As Integer intA = intA * intA intB = intB * intB Return intA + intB intA = 0 intB = 0 End Function ``` a. 0 b. 5 c. 10 d. 13

Computer Science & Information Technology

Match each item with a statement below.

A. An authoritative name server that stores the primary copies of zone records. B. Enables you to create an alias for a host. C. A resource record containing basic information about a zone. D. Servers that enable you to forward unresolved queries to an offsite DNS server and then cache the results on your local DNS server. E. Identifies mail servers (mail exchangers) for a zone. F. Maintains a copy of the master zone file that's used as a backup. G. Used to resolve a hostname to an IPv4 address for locating a resource. H. Control the Internet's top-level domains (TLDs). I. Used to resolve an IPv4 address to its hostname.

Computer Science & Information Technology

What is the minimum charge for the data transferred between Amazon RDS and Amazon EC2 Instances in the same Availability Zone?

A. USD 0.10 per GB B. No charge. It is free. C. USD 0.02 per GB D. USD 0.01 per GB

Computer Science & Information Technology