List of Exercises

Table 2. Exercises in 113105 Software development 1
Chapter Exercise
No. Title Status of completion
Getting started 1 Extending class HelloWorld
2 Working with variables
3 A conditional
4 A loop
Language Fundamentals 5 Hotel key cards
6 Literal samples
7 Literals of type int
8 Integer overflow
9 Strange sum result
10 The sum of two values
11 Legal variable names
12 Benefits of final
13 «C» vs. Java.
14 Assignment and type safety
15 An int's minimum and maximum value
16 Pretty may not be pretty
17 Strange output
18 Poor mans ASCII table
19 Integer value hexadecimal representation
20 Binary literals
21 Testing the limits (Difficult)
22 Why using braces in System.out.println(...) ?
23 Composing strings of literals and variables
24 Escaping double quotes
25 Supplementary string exercises
26 int and char
27 float vs. double
28 int to char narrowing problems
29 Get a byte from 139
30 Calculating a circle's area
31 Dividing values
32 Strange things with operator ++
33 Adding values
34 Representational float and double miracles
35 Expressions involving infinity
36 int to short assignment
37 int to short assignment using final
38 Turning weeks into seconds
39 Turning seconds into weeks
40 Converting temperature values
41 Time unit conversion
42 Interest calculation
43 Summing short and char
44 Operator & vs. &&
45 Strange addition
46 Understanding +=
47 Three ways expressing the same
48 Guessing results
49 Cleaning up the mess
50 Evaluating a sum
Statements 51 Blocks and variable glitches
52 Cyclic variable permutation
53 Providing better display
54 Comparing for equality
55 Replacing else if (...){...} by nested if ... else statements
56 Post modifying an exam's marking
57 At the bar
58 Roman numerals
59 Leap years
60 Why break?
61 Extending to month days
62 Converting day's names to numbers.
63 Day categories.
64 Roman numerals, using switch
65 Generating square numbers
66 Calculating factorial
67 Even or odd?
68 Square root approximation
69 Printing numbers
70 Printing just even numbers
71 Merry Xmas
72 More fun with Xmas trees
73 A basic square number table
74 Tidy up the mess!
75 HTML-ify me
76 Auxiliary Example, part 1: A multiplication table
77 Auxiliary Example, part 2: Avoiding redundant entries
78 Creating a real square table
79 Creating a sophisticated HTML version of your square table
80 Display all summands
81 Playing lottery
82 Guessing numbers
83 Smallest multiple
84 Smallest multiple, purely algebraic solution
85 Pythagorean triples
86 Avoiding duplicates and gaining performance
Objects and Classes 87 Defining methods
88 Defining methods
89 Compile time error
90 An Address class
91 Understanding access control
92 Explaining times
93 Implementing getter methods
94 Method signature variants
95 Will a match be found?
96 Modeling geometry objects: Rectangles
97 Modeling circles
98 Adding translations and SVG export.
99 Extending the employee example.
100 Refining access to an employee's attributes
101 File system representation
102 Your personal String class
103 Constructors variable names and this.
104 Class vs. instance
105 Distinguishing leap- and non-leap years
106 A method for printing square numbers using for, while and do ... while
107 Nicely formatting sine values.
108 Extending our interest calculator
109 Integer value considerations.
110 Programmer's favourite expression
111 Lotteries revisited
112 Finding the greatest common divisor of two integer values
113 Dealing with IBAN numbers
114 Cancelling fractions
115 Dealing with local Maven dependencies
116 DNS inflicted groupId / package names clashes
117 Details on execution
118 Maximum and absolute value
119 Factorial, the direct way
120 Factorial, the recursive way
121 Binomials, the recursive way
122 The exponential f x = e x
123 Implementing sin ( x ) .
124 Summing up in a different order.
125 Summing up integers to a given limit
126 Summing up, the better way
127 Turning seconds into weeks, part 2
128 Example: A class representing fractions
129 Compass directions
130 Compass direction neighbours
131 Former zodiac examination task
132 git local, DIY
133 git distributed, DIY
Core Classes 134 Choosing a good hashCode() method
135 String and good hashCode() implementations.
136 Common pitfall using trigonometric functions
137 Strings on CodingBat
138 Masking strings
139 Analyzing strings
140 Pitfalls using ==: Equality of String instances
141 Weird, weirder, weirdest!
142 Analyzing file pathnames
Arrays 143 Assignment to final variable?
144 Converting string arrays to HTML.
145 Route navigation
146 Examinations and mark frequencies
147 Pangram checker
148 Reconsidering System.out.format().
149 Understanding search results
150 Implementing append directly
151 Purge duplicates
152 A container of fixed capacity holding integer values
153 Allow for variable capacity holding integer values
154 Reading console input
155 Prettifying output representation
156 2-dimensional arrays and .length
157 External array and string exercises
158 Tic-tac-toe using a two-dimensional array
159 Changing the game's internal representation
160 Tic-tac-toe, Computer vs. human
161 Adding support to retrieve statistical data.
162 Testing an implementation
163 Improving prime number calculation performance
164 Calculating the median
165 A simple character based plotting application
Inheritance 166 Let me pass, please!
167 Why is == correctly comparing enum instances?
168 String vs. StringBuffer
169 Alternate implementation of opposite directions
170 Defining a Shape class hierarchy
171 Scaling shapes
172 Providing toString() methods
173 protected vs. package private
174 protected access involving different instances
Error Handling 175 Mind your prey
176 Expected exception test failure
Working with Numbers 177 Auto boxing int to Double?
178 Why using String userInput = null?
179 Parsing short values
180 Parsing short values in hexadecimal representation
181 Locale definitions
182 Formatting int, double and LocaleDate
183 Chaining subtract method calls
interface definitions and abstract Classes 184 Understanding Arrays.sort()
185 Sorting Rectangle instances by width
186 Sorting Rectangle instances by width and height
187 Adding flexibility in sorting rectangles
188 A nonsense generator
189 An interface based plotter
Application deployment I 190 Various integer array algorithms
191 A command line version computing a sample's average and median
Reading character streams 192 Adding line numbers to text files
193 A partial implementation of GNU UNIX wc
Collections 194 Inserting strings into a Set.
195 Inserting strings into a List.
196 Representing integer coordinate values
197 Inserting Coordinate instances into a Set.
198 Getting a text's set of words.
199 A text's set of words in alphabetic order
200 Implementing unusual string sorting.
201 Words and corresponding frequencies
202 Formatting an address list
203 Implementing a set of strings
204 Implementing word frequencies by Map<String, Integer> instances.
205 Regain sorting capabilities.
206 Creating an overview of grades showing frequencies
207 Creating an overview of grades showing individual names