Answer:
d. subscript
Explanation:
Although I believe "index" is a better term. The question already says it!
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
For step 4, choose the task from the drop-down menu
I believe your answer would be D.
I hope this helped.
To be honest I'm not sure but I'd say B,C
num1 = some value
num2 = some value
if num1 == num2:
print("equal")
You just need to provide the values for the numbers. I hope this helps!