Using a reference to access the value of a variable without the need for explicitly using the indirection operator symbol(*) is referred to as a(n) ____.

A. automatic access
B. quick lookup
C. variable access
D. automatic dereference


Answer: D

Computer Science & Information Technology

You might also like to view...

____________________ view allows you to see how many appointments are scheduled for a given week, including weekends.

Fill in the blank(s) with the appropriate word(s).

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

To add a row to the bottom of a table, place the insertion point in the last cell and tap the __________ key.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

An audio file's properties include _____ as shown in the Preview/Properties dialog box.

A. keywords B. file type C. file name D. all of the above

Computer Science & Information Technology