This topic contains a solution. Click here to go to the answer

Author Question: Analyze the following code:public class Test { public static void main(String[] args) {int[] x = {1, ... (Read 28 times)

vinney12

  • Hero Member
  • *****
  • Posts: 586

Question 1

Fill in the code to complete the following method for checking whether a string is a palindrome.

public static boolean isPalindrome(String s) {
if (s.length() <= 1) // Base case
return true;
else if ________
return false;
else
return isPalindrome(s.substring(1, s.length() - 1));
}

◦ (s.charAt(0) != s.charAt(s.length())) // Base case
◦ (s.charAt(1) != s.charAt(s.length() - 1)) // Base case
◦ (s.charAt(0) != s.charAt(s.length() - 1)) // Base case
◦ (s.charAt(1) != s.charAt(s.length())) // Base case

Question 2

Analyze the following code:

public class Test {
public static void main(String[] args) {
int[] x = {1, 2, 3, 4, 5};
xMethod(x, 5);
}

public static void xMethod(int[] x, int length) {
System.out.print(" " + x[length - 1]);
xMethod(x, length - 1);
}
}

◦ The program displays 5 4 3 2 1 and then raises an ArrayIndexOutOfBoundsException.
◦ The program displays 5 4 3 2 1.
◦ The program displays 1 2 3 4 6.
◦ The program displays 1 2 3 4 5 and then raises an ArrayIndexOutOfBoundsException.


Related Topics

Need homework help now?

Ask unlimited questions for free

Ask a Question
Marked as best answer by vinney12 on May 6, 2020

matt95

  • Sr. Member
  • ****
  • Posts: 317
Lorsum iprem. Lorsus sur ipci. Lorsem sur iprem. Lorsum sur ipdi, lorsem sur ipci. Lorsum sur iprium, valum sur ipci et, vala sur ipci. Lorsem sur ipci, lorsa sur iprem. Valus sur ipdi. Lorsus sur iprium nunc, valem sur iprium. Valem sur ipdi. Lorsa sur iprium. Lorsum sur iprium. Valem sur ipdi. Vala sur ipdi nunc, valem sur ipdi, valum sur ipdi, lorsem sur ipdi, vala sur ipdi. Valem sur iprem nunc, lorsa sur iprium. Valum sur ipdi et, lorsus sur ipci. Valem sur iprem. Valem sur ipci. Lorsa sur iprium. Lorsem sur ipci, valus sur iprem. Lorsem sur iprem nunc, valus sur iprium.
Answer Preview
Only 25% of students answer this correctly




vinney12

  • Member
  • Posts: 586
Reply 2 on: May 6, 2020
:D TYSM


scottmt

  • Member
  • Posts: 322
Reply 3 on: Yesterday
Gracias!

 

Did you know?

In most climates, 8 to 10 glasses of water per day is recommended for adults. The best indicator for adequate fluid intake is frequent, clear urination.

Did you know?

An identified risk factor for osteoporosis is the intake of excessive amounts of vitamin A. Dietary intake of approximately double the recommended daily amount of vitamin A, by women, has been shown to reduce bone mineral density and increase the chances for hip fractures compared with women who consumed the recommended daily amount (or less) of vitamin A.

Did you know?

The U.S. Preventive Services Task Force recommends that all women age 65 years of age or older should be screened with bone densitometry.

Did you know?

The tallest man ever known was Robert Wadlow, an American, who reached the height of 8 feet 11 inches. He died at age 26 years from an infection caused by the immense weight of his body (491 pounds) and the stress on his leg bones and muscles.

Did you know?

It is believed that humans initially contracted crabs from gorillas about 3 million years ago from either sleeping in gorilla nests or eating the apes.

For a complete list of videos, visit our video library