A(n) __________ indicates a record’s position relative to the beginning of a file.

a. directory
b. relative record number
c. index
d. pointer


b. relative record number

Computer Science & Information Technology

You might also like to view...

What tool on the Design tab is used to add an object from another application such as a Microsoft Excel spreadsheet?

A. Subform/Subreport B. Unbound Object Frame C. Bound Object Frame D. Combo Box

Computer Science & Information Technology

Which of the following statements is true?

a. Methods and instance variables can both be either public or private. b. Information hiding is achieved by restricting access to class members via keyword public. c. The private members of a class are directly accessible to the clients of a class. d. None of the above is true.

Computer Science & Information Technology

A(n) ____ consists of programs designed to make users more productive and/or assist them with personal tasks.

A. Start screen B. app C. operating system D. log-in account

Computer Science & Information Technology

What is displayed on the console when running the following program?

``` public class Test { public static void main(String[] args) { try { System.out.println("Welcome to Java"); int i = 0; int y = 2/i; System.out.println("Welcome to Java"); } catch (RuntimeException ex) { System.out.println("Welcome to Java"); } finally { System.out.println("End of the block"); } System.out.println("End of the block"); } } ``` a. The program displays Welcome to Java three times followed by End of the block. b. The program displays Welcome to Java two times followed by End of the block. c. The program displays Welcome to Java two times followed by End of the block two times. d. You cannot catch RuntimeException errors.

Computer Science & Information Technology