The cell ____ is the column letter and row number for the intersection of the column and row for that cell.
A. range
B. address
C. index
D. nexus
Answer: B
You might also like to view...
What happens if the file test.dat does not exist when you attempt to compile and run the following code?
``` import java.io.*; class Test { public static void main(String[] args) { try { RandomAccessFile raf = new RandomAccessFile("test.dat", "r"); int i = raf.readInt(); } catch(IOException ex) { System.out.println("IO exception"); } } }``` a. The program does not compile because raf is not created correctly. b. The program does not compile because readInt() is not implemented in RandomAccessFile. c. The program compiles, but throws IOException because the file test.dat doesn't exist. The program displays IO exception. d. The program compiles and runs fine, but nothing is displayed on the console.
Most programming languages allow you to express "greater than or equal to" by typing ____.
A. >= B. <= C. ==< D. ==>
When you insert a chart in Word, the chart is stored in an Excel worksheet
Indicate whether the statement is true or false
When you paste information from Project 2013 into Word, project information will be pasted into a ________ format
A) tabbed paragraph B) table C) SmartArt D) Gantt chart