Question: Java Z. Write a function that takes a string and two integers as parameters/arguments: s intStoplndex. The function should return a Java substring from strSource
Z. Write a function that takes a string and two integers as parameters/arguments: s intStoplndex. The function should return a Java substring from strSource starting at intStartindex and going up to but not including intStoplndex. Be sure to boundary check intStartindex and intStopindex. For example: intStartindex, // Problem #7-Java SubString strBuffer = JavaSubString ( "I Love Java", 2,6 ); System.out.printin( "Java SubString "+ strBuffer) // Should returnLove" Write a function that takes a two strings parameters/arguments: strLeft, strRight. The function should compare the two strings and return true if they are the same and false if they are different. For example: 8. // Problem #8-Java Compare String strSource = "I Love Java", it comparestrings( strSource, new String( "I Love Java" ) ) = true ) ll Should return true System.out,printin( "Same"); else System.out.printin( "Different); hou many words are
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
