A(n) _________________ data type is quite similar to the structure of a row in database tables.

a. variable
b. attribute
c. collection
d. record
e. None of the above


d. record

Computer Science & Information Technology

You might also like to view...

Use the readonly (Sobell, page 315) builtin to make the myname variable you created in the previous step a readonly variable and then assign a new value to it. What happens?

What will be an ideal response?

Computer Science & Information Technology

Write a separate expression that accesses the structure members in each of the following parts:

Consider the following structure definitions and variable declarations:

struct Customer {
char lastName[ 15 ];
char firstName[ 15 ];
int customerNumber;
struct {
char phoneNumber[ 11 ];
char address[ 50 ];
char city[ 15 ];
char state[ 3 ];
char zipCode[ 6 ];
} personal; // end struct
} customerRecord, *customerPtr; // end struct Customer
customerPtr = &customerRecord;
a) Member lastName of structure customerRecord. b) Member lastName of the structure pointed to by customerPtr. c) Member firstName of structure customerRecord. d) Member firstName of the structure pointed to by customerPtr. e) Member customerNumber of structure customerRecord. f) Member customerNumber of the structure pointed to by customerPtr. g) Member phoneNumber of member personal of structure customerRecord. h) Member phoneNumber of member personal of the structure pointed to by customerPtr. i) Member address of member personal of structure customerRecord. j) Member address of member personal of the structure pointed to by customerPtr. k) Member city of member personal of structure customerRecord. l) Member city of member personal of the structure pointed to by customerPtr. m) Member state of member personal of structure customerRecord. n) Member state of member personal of the structure pointed to by customerPtr. o) Member zipCode of member personal of structure customerRecord. p) Member zipCode of member personal of the structure pointed to by customerPtr.

Computer Science & Information Technology

An argument that is passed ____ will send only the value of the passed argument.

A. ByRef B. ByHand C. ByVal D. ByVar

Computer Science & Information Technology

PHP allows you to store cookie values in indexed or associative ____.

A. functions B. text files C. arrays D. scripts

Computer Science & Information Technology