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 30 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


dantucker

  • Member
  • Posts: 346
Reply 3 on: Yesterday
YES! Correct, THANKS for helping me on my review

 

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?

Bacteria have been found alive in a lake buried one half mile under ice in Antarctica.

Did you know?

People with high total cholesterol have about two times the risk for heart disease as people with ideal levels.

Did you know?

In 2012, nearly 24 milliion Americans, aged 12 and older, had abused an illicit drug, according to the National Institute on Drug Abuse (NIDA).

Did you know?

The most common childhood diseases include croup, chickenpox, ear infections, flu, pneumonia, ringworm, respiratory syncytial virus, scabies, head lice, and asthma.

For a complete list of videos, visit our video library