To import a text file, you begin by clicking the From Text button in the:
A) Text group on the Data tab. B) Get External Data group on the Insert tab.
C) Get External Data group on the Data tab. D) Text group on the Insert tab.
C
Computer Science & Information Technology
You might also like to view...
The ________________ component creates a functional button instance.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
if (amount > 1000) result = 1;else if (amount > 500) result = 2; else if (amount > 100) result = 3; else result = 4; Using the above code segment, what is stored in result when amount is equal to 876?
A. 1 B. 2 C. 3 D. 4
Computer Science & Information Technology