Question: Modify the method below. The method below, myMethod, will be called from a testing function in VPL. Write one line of Java code inside the

Modify the method below. The method below, myMethod, will be called from a testing function in VPL. Write one line of Java code inside the method that adds one String to another. It will look something like this Assume that 1. String theInput is George 2. String myString is Hello, my name is We want to update myString so that it is Hello, my name is George Requested files Utils.java 1 - public class Utils { * Modify the method below. * The method below, myMethod, will be called from a testing function in VPL. * Write one line of Java code inside the method that adds one string * to another. It will look something like this: * Assume that 1. String the Input is George 2. String mystring is Hello, my name is * We want to update mystring so that it is Hello, my name is George */ 2 3- 4 5 6 7 8 9 1e 11 12 13 14 15 16 17 18 19 20- 21 22 23 24 25 26 27 28 29 3e 31 32 33 34 35 36 37 38 39 public static string myMethod (String theInput) { system.out.println("This method combines two strings."); string myString = "Hello, my name is "; // Update the "myString" object. // Do this by "adding" myString and the input together. // How do you add two strings together? Use the "plus" sign, like this: 11 firststring = firststring + secondstring myString = ; 11
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
