Match each term with the correct statement below.

A. Takes a String argument and returns its double value
B. Returns the lowercase equivalent of the argument
C. Takes two integer arguments: a start position and an end position
D. A named object of the String class
E. Add characters to the end of a StringBuilder object
F. A memory block
G. Change the length of a string in a StringBuilder object
H. Determines whether a specific character occurs within a String
I. Add characters at a specific location within a StringBuilder object
J. An unnamed object
K. Object that can't be changed
L. Appending strings
M. Class or object that wraps around a simpler element
N. Memory block
O. Length of a buffer


A. parseDouble()
B. toLowerCase()
C. substring()
D. String variable
E. append()
F. buffer
G. setLength()
H. indexOf()
I. insert()
J. anonymous object
K. immutable
L. concatenation
M. wrapper
N. buffer
O. capacity

Computer Science & Information Technology

You might also like to view...

The shell notation to obtain the value of a variable is

A. $variablename B.

Computer Science & Information Technology

Which of the following statements is false?

a. The built-in function any returns True if any item in its iterable argument is True. b. The built-in function all returns True if all items in its iterable argument are True. c. Non-empty iterable objects also evaluate to True, whereas any empty iterable evaluates to False. d. Functions any and all are examples of external iteration in functional-style programming.

Computer Science & Information Technology

Write a stub for the following function prototype:

``` double root( double a, double b, double c, int i); // Precondition: a != 0 and a, b, c are coefficients of // a quadratic equation a*x*x + b*x + c = 0 The value // of i is either +1 or -1 to choose which root. // Postcondition: return value, x, satisfies the // equation a*x*x + b*x + c = 0 ```

Computer Science & Information Technology

____ password policies mean that you can now create more than one set of account policies within a domain.

A. Fine-grained B. Global C. Unrestricted D. Multiple

Computer Science & Information Technology