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


momolu

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

 

Did you know?

Malaria mortality rates are falling. Increased malaria prevention and control measures have greatly improved these rates. Since 2000, malaria mortality rates have fallen globally by 60% among all age groups, and by 65% among children under age 5.

Did you know?

A seasonal flu vaccine is the best way to reduce the chances you will get seasonal influenza and spread it to others.

Did you know?

HIV testing reach is still limited. An estimated 40% of people with HIV (more than 14 million) remain undiagnosed and do not know their infection status.

Did you know?

In ancient Rome, many of the richer people in the population had lead-induced gout. The reason for this is unclear. Lead poisoning has also been linked to madness.

Did you know?

The ratio of hydrogen atoms to oxygen in water (H2O) is 2:1.

For a complete list of videos, visit our video library