Academia.eduAcademia.edu

Abstract

These lecture notes are designed for use in the first year Computer Science modules at the University of KwaZulu-Natal. They provide an introduction to problem solving, programming, and the Java language. They are not intended to be complete in themselves but serve as a complement to the formal lectures, and students are urged to make use of the books referenced in addition to these notes.

Key takeaways

  • Everything in a Java program must be part of a class, and the statement public class Hello defines a class called Hello.
  • A simple program that uses this class is shown here.
  • 12.5 Write a class, Marks, which has as data member an array of student numbers and of marks (%) and write methods to input the arrays; output only those that are above average (3.2); determine the pass mark for a 75% pass rate (3.3), and assign letter grade to the marks (3.4) 12.6 Write a method that will sort the student number array into ascending numeric order, and order the mark array in the same way (so that the first student number corresponds to the first mark etc) 12.7 Write a method that will determine the median mark and output the median mark and the student who achieved it.
  • In Java, String is a class, so strings are objects and not variables.
  • An inner class can be defined to represent a student with suitable attributes, and the course class can have an array of such student objects as attribute.