A pointer is a variable which stores ........
address
value
both A & B
index only
........ is called dereference operator.
*
&
^
~
The ........ operator is used to allocate memory dynamically.
new
delete
alloc
create
..... allocation allows us to allocate memory at a run time.
static
dynamic
buffer
queue
Array is also called .....
tag
tuple
index
subscripted variable
The ........ operator is used to deallocate memory allocated dynamically.
flush
remove
drop
A pointer refers to ........
location of variable in memory
value of variable in memory
none of the above
If a variable int i = 7 is declared and is stored at memory location 70001 then the value of &i is ......
7
70001
70003
Both A & B
C++ uses ....... as the address operator
#
::