Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Returns: a String Name: makeThreeSubstr Parameters: - a String called word - an integer called startIndex - an integer called endIndex Then, starting on line

Returns: a String

Name: makeThreeSubstr

Parameters:

- a String called "word" - an integer called "startIndex" - an integer called "endIndex"

Then, starting on line 5, write code that will return 3x the substring (no spaces) from "startIndex" to "endIndex"

Examples:

- makeThreeSubstr("hello",0,2) ==> "hehehe" - makeThreeSubstr("shenanigans",3,7) ==> "naninaninani"

-----------------------------------------------------------------------------------------

1.class Main { 2. public static String makeThreeSubstr ()

3.

4. 5.{

}

//test case below (dont change): public static void main(String[] args) { System.out.println(makeThreeSubstr("hello", 0, 2)); //should be hehehe System.out.println(makeThreeSubstr("shenanigans", 3, 7)); //should be naninaninani } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

More Books

Students also viewed these Databases questions