Which statement will emoty the contents of a StringBuilder variable named sb?

Which statement will emoty the contents of a StringBuilder variable named sb?

Which statement will emoty the contents of a StringBuilder variable named sb?

A.
sb.deleteAll();

B.
sb.delete(0, sb.size());

C.
sb.delete(0, sb.length());

D.
sb.removeAll();



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Sandeep

Sandeep

Spelling of empty are wrong in question.

Hans

Hans

C will empty the StringBuilder.