// "Replace with 'String.repeat()'" "false" class Test { String hundredSpaces() { StringBuilder sb = new StringBuilder(); for(int i=0; i<100; i++) { sb.append("a" + "* } return sb.toString(); } }