So I have to finish modifying the main method below so that it only
prints out command-line arguments which are palindromes.  A palindrome
is a string that reads the same way forward and backward like stats or
deedFirst I need to create a static method called isPalindrome.  This method should have a String parameter and return a boolean, determining whether or not the String is a palindromeThen
modify the main method to call isPalindrome before printing a
command-line argument, and printing it on the condition that
isPalindrome returned ‘true’.For example,running “java HW1 fall mom dog dad” should print the following:momdadpublic class HW1Demo
{
public static void main(String[] args)
{
for (int i = 0; i < args.length; i++) { System.out.println(cap(args[i])); } } /** Capitalize the first letter of a given string. If the first letter is non-alphabetic, there is no change. @param word The string to be capitalized @return The capitalized word. */ public static String cap(String word) { char first = word.charAt(0); String rest = word.substring(1); return Character.toUpperCase(first) + rest; } }




Why Choose Us

  • 100% non-plagiarized Papers
  • 24/7 /365 Service Available
  • Affordable Prices
  • Any Paper, Urgency, and Subject
  • Will complete your papers in 6 hours
  • On-time Delivery
  • Money-back and Privacy guarantees
  • Unlimited Amendments upon request
  • Satisfaction guarantee

How it Works

  • Click on the “Place Order” tab at the top menu or “Order Now” icon at the bottom and a new page will appear with an order form to be filled.
  • Fill in your paper’s requirements in the "PAPER DETAILS" section.
  • Fill in your paper’s academic level, deadline, and the required number of pages from the drop-down menus.
  • Click “CREATE ACCOUNT & SIGN IN” to enter your registration details and get an account with us for record-keeping and then, click on “PROCEED TO CHECKOUT” at the bottom of the page.
  • From there, the payment sections will show, follow the guided payment process and your order will be available for our writing team to work on it.