Shannon Anderson-Rush
Quiz by , created more than 1 year ago

Quiz on String Method Review, created by Shannon Anderson-Rush on 05/10/2020.

1185
0
0
Shannon Anderson-Rush
Created by Shannon Anderson-Rush over 3 years ago
Close

String Method Review

Question 1 of 2

1

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

Select one of the following:

  • HomeHello

  • HelloHello

  • WelcomeHello

  • Welcome Hello

  • Home Hello

Explanation

Question 2 of 2

1

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

Select one of the following:

  • str.substring(0);

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

  • str.substring(length(str));

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

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

Explanation