This function returns the length of a string.

a. length
b. size
c. len
d. lengthof


Answer: c. len

Computer Science & Information Technology

You might also like to view...

What is the time complexity of the following program?

double a = 0; for (int x = 0; x <= 100; x++ ) { a += Math.random(); } a. O(1) b. O(100) c. O(N) d. This cannot be determined

Computer Science & Information Technology

The process to ____ software removes programs from the hard drive, removes program names from the All Programs menu, and updates the Registry.

A. remove B. delete C. reinstall D. uninstall

Computer Science & Information Technology

____ processes refer to child processes that have spawned while the server is running.

A. Forked B. Run away C. Orphaned D. Shattered

Computer Science & Information Technology

An argument in a calling statement can be literal, a named constant, a keyword, or a variable.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology