After defining the ________, you will need to define the ________

A) page size, fields B) data types, field names
C) records, descriptions D) field names, index

D

Computer Science & Information Technology

You might also like to view...

In a table, a ________ is used for each single piece of information for every record, such as a first or last name

A) record B) foreign key C) primary key D) field

Computer Science & Information Technology

Which of the following will be true after these lines are executed?

Consider the following snippet of code: ``` Random generator = new Random(); int randNum = generator.nextInt(20) + 1; ``` a) randNum will hold a number between 1 and 20 inclusive. b) randNum will hold a number between 0 and 20 inclusive. c) randNum will hold a number between 1 and 21 inclusive. d) these lines will not be executed because a compiler error will result. e) none of the above

Computer Science & Information Technology