Answer:
sorry for the wait but the answer is b
Explanation:
Answer:
A string containing all lowercase letters and numerals and ending with a- Or D
Object-oriented programming (OOP) is a computer programming model that organizes software design around data, or objects, rather than functions and logic.
Pie graph but idk if thats the answer
Answer:
public class newass {
/*
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?".
*/
public static void main(String[] args) {
System.out.println(makeSubjectLine("Are you going to the show?"));
}
public static String makeSubjectLine(String subj){
return "Subject: "+subj;
}
}
Explanation:
The solution in Java Programming Language