Ask Question
8 August, 19:30

Write a method, makeSubjectLine, that gets a String argument and returns the same String but with "Subject: " in front of it. So if the argument is "Are you going to the show?" the method returns "Subject: Are you going to the show?".

+4
Answers (1)
  1. 8 August, 22:02
    0
    String makeSubjectLine (String line) {

    return "Subject: " + line;

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a method, makeSubjectLine, that gets a String argument and returns the same String but with "Subject: " in front of it. So if the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers