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 20 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
Excellent


sailorcrescent

  • Member
  • Posts: 334
Reply 3 on: Yesterday
:D TYSM

 

Did you know?

Since 1988, the CDC has reported a 99% reduction in bacterial meningitis caused by Haemophilus influenzae, due to the introduction of the vaccine against it.

Did you know?

People about to have surgery must tell their health care providers about all supplements they take.

Did you know?

Drugs are in development that may cure asthma and hay fever once and for all. They target leukotrienes, which are known to cause tightening of the air passages in the lungs and increase mucus productions in nasal passages.

Did you know?

Only one in 10 cancer deaths is caused by the primary tumor. The vast majority of cancer mortality is caused by cells breaking away from the main tumor and metastasizing to other parts of the body, such as the brain, bones, or liver.

Did you know?

Your heart beats over 36 million times a year.

For a complete list of videos, visit our video library