Answered step by step
Verified Expert Solution
Link Copied!

Question

00
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 with AI-Powered Solutions

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

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions