Which of the following is the same as 2 ^ 3?

(A) 2 * 2 * 2
(B) 2 * 3
(C) 2 + 2 + 2
(D) 3 * 3


(A) 2 * 2 * 2

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. The Case Else part of a Select Case block is optional. 2. One may use an If block within a Select Case block. 3. One may use a Select Case block within an If block. 4. Every Select Case block can be replaced by If blocks. 5. One may use a Select Case block within another Select Case block.

Computer Science & Information Technology

Find the error in each of the following segments. If the error can be corrected, explain how.

a) int *number; cout << number << endl; b) double *realPtr; long *integerPtr; integerPtr = realPtr; c) int * x, y; x = y; d) char s[] = "this is a character array"; for ( ; *s != '\0'; s++ ) cout << *s << ' '; e) short *numPtr, result; void *genericPtr = numPtr; result = *genericPtr + 7;

Computer Science & Information Technology

The general syntax of Excel functions is _____.?

A. ?FUNCTION() B. ?FUNCTION(argument1,argument2,...) C. ?FUNCTION(text1,number1,text2,number2,...) D. ?FUNCTION(=value1)

Computer Science & Information Technology

________ Online provides the core functionality of a word processing program

A) Word B) Excel C) OneNote D) PowerPoint

Computer Science & Information Technology