If cell A1 contained 10, cell A2 contained 2 and cell A3 contained =A1^A2, what would cell A3 show on the worksheet?
A. =A1^A2
B. 20
C. 10^2
D. 100
Answer: D
You might also like to view...
Suppose a small business is using the hosted model for its enterprise software. Which of the following will not be an issue they will he worried about?
A. promoting and selling their products and services B. managing the hiring processes C. employing full-time IT professionals to manage its resources D. designing of their products and services
What is the output of the following program?
``` import java.util.Date; public class Test { public static void main(String[] args) { Date date = new Date(1234567); m1(date); System.out.print(date.getTime() + " "); m2(date); System.out.println(date.getTime()); } public static void m1(Date date) { date = new Date(7654321); } public static void m2(Date date) { date.setTime(7654321); } }``` a. 1234567 1234567 b. 1234567 7654321 c. 7654321 1234567 d. 7654321 7654321
A macro is created using the ________
A) Office Recorder B) Process Recorder C) Basic Recorder D) Macro Recorder
The components of a class are called objects.
Answer the following statement true (T) or false (F)