Ask Question
16 April, 05:02

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?".

+5
Answers (1)
  1. 16 April, 08:25
    0
    String makeSubjectLine (String line) {

    return "Subject: " + line;

    }
Know the Answer?
Not Sure About the Answer?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers