Consider the following recursive code.public static boolean startsWith(String s, String p){/*answer whether String s starts with the characters of String p.That is, answer whether p is a prefix of s*///Basis Casesif(p.length() == 0 ) return true;if(p.length() > s.length()) return false;if(p.charAt(0) != s.charAt(0)) return false;//Recursionreturn ________________________________________________;}Computer Science Engineering & Technology Java Programming COMP 1406A

Order your essay today and save 20% with the discount code ESSAYHELP