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

1. Dynamically created variables have no name.
2. If p1 and p2 are both pointers that point to integers in memory, the condition p1==p2 will be true if the values that are in those memory locations are the same.
3. Even though pointers point to addresses which are integers, you can not assign an integer to a pointer variable.
4. In the following statement, all the variables are pointers.
int* p1, p2;
5. A pointer can be stored in an integer variable.


1. TRUE
2. FALSE
3. TRUE
4. FALSE
5. FALSE

Computer Science & Information Technology

You might also like to view...

Indicate whether statement is valid, refer to the declarations and initializations below. If the statement is valid, indicate what value is displayed or assigned. If the statement is invalid, explain why.

``` double x[8] = {16.0, 12.0, 6.0, 8.0, 2.5, 12.0, 14.0, -54.5}; int j = 5; ``` printf("%.2f\n", x[j + 1]);

Computer Science & Information Technology

The database object called Macro displays data from one or more tables or queries in a format that might be similar in appearance to a paper form.

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

Computer Science & Information Technology

What tool can help discover and report computer errors and conflicts that occur when you first turn on a computer and before the operating system is launched.

A. POST card B. OS diagnostic programs C. Power supply tester D. Service manualĀ 

Computer Science & Information Technology

A route is a sequence of vertices in which each vertex is adjacent to the next one.

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

Computer Science & Information Technology