Multiple choice The new operator returns a pointer to a variable creates a variable called new variable clears memory for a new variable tells how much memory is available Reveal answer Fill a bubble to check yourself A Correct answer Explanation The 'new' operator in C++ allocates memory dynamically on the heap and returns the address of the allocated memory, which is stored in a pointer variable.