The asterisk (*) is called the ______________ operator.

What will be an ideal response?

indirection

Computer Science & Information Technology

You might also like to view...

Discuss the differences between the various duration estimating methods and identify advantages or disadvantages between them.

What will be an ideal response?

Computer Science & Information Technology

Kim created the following interface for Heap. Any comments?

``` public interface Heap { public void add( Comparable element ); public void setComparator( Comparator c ); public E top(); public E peek(); public void clear(); public int size(); public boolean isEmpty(); } ```

Computer Science & Information Technology