Skip to content

Commit

Permalink
Fixes (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
appenmaier authored Jan 5, 2025
1 parent 2d667b8 commit 8c894d1
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 188 deletions.
6 changes: 2 additions & 4 deletions docs/additional-material/daniel/java1/sample-exam.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ tags: []
- Pakete und Klassenimporte müssen nicht angegeben werden
- Es kann davon ausgegangen werden, dass sämtliche Klassen entsprechende
Implementierungen der Object-Methoden besitzen
- Der Stereotyp `enumeration` impliziert, dass die Aufzählung einen passenden
Konstruktor sowie gegebenenfalls passende Getter für alle Attribute besitzt
- So nicht anders angegeben sollen Konstruktoren, Setter, Getter sowie die
Object-Methoden wie in der Vorlesung gezeigt implementiert werden
- Die Konsolenausgaben-Methoden der Klasse `PrintStream` dürfen sinnvoll gekürzt
Expand Down Expand Up @@ -154,7 +152,7 @@ public class Class { // 0,5

public String toString() { // 0,5
return "Class [description=" + description + ", courseOfStudies=" + courseOfStudies.description()
+ ", lectures=" + lectures + ", students=" + students + "]"; // 1,5
+ ", lectures=" + lectures + ", students=" + students + "]"; // 1,5
} // 2

}
Expand All @@ -173,7 +171,7 @@ public class ExamTask01 { // 0,5

System.out.println(wwibe224); // 1
System.out.println("Vorlesung mit den meisten ECTS-Punkten: "
+ wwibe224.getLectureWithMostCreditPoints()); // 1
+ wwibe224.getLectureWithMostCreditPoints()); // 1

} // 7,5

Expand Down
Loading

0 comments on commit 8c894d1

Please sign in to comment.