Given the code fragments:
class TechName {
String techName;
TechName (String techName) {
this.techName=techName;
}
}
and
List
new TechName("Java-"),
new TechName("Oracle DB-"),
new TechName("J2EE-")
);
Stream
//line n1
Which should be inserted at line n1 to print Java-Oracle DB-J2EE-?