string indexers treat strings as:

a) binary code
b) ASCII code
c) arrays of characters
d) a character


c) arrays of characters

Computer Science & Information Technology

You might also like to view...

Today’s ________ computers, smartphones and tablets enable computers to perform tasks truly concurrently.

a) large memory b) multiscreen c) soft keyboard d) multicore

Computer Science & Information Technology

5. What is displayed by the following program after the call to execl?

#include #include int main() { if (fork() == 0) execl("prog.exe", "prog.exe", NULL); cout << "After execl" << endl; return 0; } a. The parent process will display "After execl" b. The child process will display "After execl" c. Neither the parent process nor the child process will display "After execl" d. The program does not create a child process e. Both the parent process and child process will display "After execl"

Computer Science & Information Technology

In a UMA multiprocessor, __________.

a) shared virtual memory presents the illusion of shared physical memory, although physical memory is not shared. b) memory access time for a given processor varies depending on which memory module contains the requested data item. c) memory is viewed as a cache so that data can be migrated at the granularity of a memory line, causing a lower percentage of cache misses to be serviced remotely. d) memory access time is nearly the same for all requested data items in main memory.

Computer Science & Information Technology

In a behavior, the ____ is usually something a visitor does, such as scrolling, clicking, resizing a window, or submitting a form.

A. action B. event C. attribute D. control

Computer Science & Information Technology