Which two of these statements will remove the last five characters of the name variable?

name.Remove (6);name.Remove (5, 5);name.Remove (5);name.Remove (5, 6);

Excellent! There are two ways to use Remove (). With a single argument, passing an index or with two arguments: a start and a number of characters.

Close! There are two ways to use Remove (). With a single argument, passing an index or with two arguments: a start and a number of characters.