Shannon Anderson-Rush
Quiz por , criado more than 1 year ago

Quiz sobre String Method Review, criado por Shannon Anderson-Rush em 05-10-2020.

1185
0
0
Shannon Anderson-Rush
Criado por Shannon Anderson-Rush mais de 3 anos atrás
Fechar

String Method Review

Questão 1 de 2

1

Consider the following code segment:
String newString = "Welcome";
String anotherString = "Home";
newString = anotherString + "Hello";
What is the value of newString?

Selecione uma das seguintes:

  • HomeHello

  • HelloHello

  • WelcomeHello

  • Welcome Hello

  • Home Hello

Explicação

Questão 2 de 2

1

Which of the following returns the last character of the string str?

Selecione uma das seguintes:

  • str.substring(0);

  • str.substring(0, str.length());

  • str.substring(length(str));

  • str.substring(str.length()-1);

  • str.substring(str.length());

Explicação