Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
Shannon Anderson-Rush
Quiz por , criado more than 1 year ago

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

1203
0
0
Shannon Anderson-Rush
Criado por Shannon Anderson-Rush mais de 4 anos atrás
Avalie este recurso clicando nas estrelas abaixo:
1 2 3 4 5 (0)
Classificação (0)
0
0
0
0
0

0 comentários

There are no comments, be the first and leave one below:

Fechar

String Method Review

Questão 1 de 2 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

  • Home Hello

  • Welcome Hello

Explicação

Questão 2 de 2 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(str.length()-1);

  • str.substring(length(str));

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

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

Explicação