public class Exercise {
public static void main(String[] args)
{
String str1 = "Python Exercises";
String str2 = "Python Exercise";
// The String to check the above two Strings to see
// if they end with this value (se).
String end_str = "se";
// Check first two Strings end with end_str
boolean ends1 = str1.endsWith(end_str);
boolean ends2 = str2.endsWith(end_str);
// Display the results of the endsWith calls.
System.out.println("\"" + str1 + "\" ends with " +
"\"" + end_str + "\"? " + ends1);
System.out.println("\"" + str2 + "\" ends with " +
"\"" + end_str + "\"? " + ends2);
}
}
"Python Exercises" ends with "se"? false
"Python Exercise" ends with "se"? true
Press any key to continue . . .
First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.
Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.