External Assessment - Coding Practice

Score: 0 / 10.0

Enter the following answer: public String helloName(String name)

{

    String test = "Hello " + name + "!";

    return test;

}







Exercises

0 / 10.0

Write a function in Java that implements the following logic: Given an argument name, it should return a greeting of the form "Hello...