diff --git a/data/part-1/5-calculating.md b/data/part-1/5-calculating.md
index 1b5c1b9d1..a2b2a666c 100644
--- a/data/part-1/5-calculating.md
+++ b/data/part-1/5-calculating.md
@@ -18,7 +18,7 @@ hidden: false
-The basic mathematical operations are both familiar and straightforward: addition `+`, subtraction `-`, multiplication `*`, and division`/`. The precedence is also familiar: operations are performed from left to right with the parentheses taken into account. Expressions involving `*` and `/` are calculated before those involving `+` and `-`, as is customary in elementary school mathematics.
+The basic mathematical operations are both familiar and straightforward: addition `+`, subtraction `-`, multiplication `*`, and division `/`. The precedence is also familiar: operations are performed from left to right with the parentheses taken into account. Expressions involving `*` and `/` are calculated before those involving `+` and `-`, as is customary in elementary school mathematics.
-The command `System.out.println` prints the value of a variable. The string literal to be printed, which is marked by quotation marks, can be appended with the operation `+`.
+The command `System.out.println` prints the value of a variable. The string literal to be printed, which is marked by quotation marks, can be appended with other content by using the operation `+`.
-Once you have completed the previous exercise, try finding out the greatest possible multiplication that you can calculate. The reason behind the phenomenon you've observed is that the value of an integer value is capped at the maximum of 231-1 (i.e. 2147483647). This is because integer variables are represented with 32 bits in the computer's memory. Variable representation is covered in more detail on the Computer Organization course.
+Once you have completed the previous exercise, try finding out the greatest possible multiplication that you can calculate. The reason behind the phenomenon you'll observe is that the value of an integer value is capped at the maximum of 231-1 (i.e. 2147483647). This is because integer variables are represented with 32 bits in the computer's memory. Variable representation is covered in more detail on the Computer Organization course.
@@ -843,7 +843,7 @@ An average refers to the sum of numbers divided by their count. For instance, th
-In the context of programming, there are a few things to keep in mind. Firstly, dividing by zero is typically not permitted. This implies that calculating the average of the number zero is impossible. Secondly, if the program handles both the sum of the numbers and their total count as integers, one (or both) of the variables should be casted to a floating-point number by multiplying it by 1.0 before the division.
+In the context of programming, there are a few things to keep in mind. Firstly, dividing by zero is typically not permitted. This implies that calculating the average of zero numbers is impossible. Secondly, if the program handles both the sum of the numbers and their total count as integers, one (or both) of the variables should be casted to a floating-point number by multiplying it by 1.0 before the division.
@@ -1011,11 +1011,11 @@ It's crucial for a programmer to understand that assigning a value to a variable
-Here's three common misunderstanding related to assigning a value to a variable:
+Here's three common misunderstandings related to assigning a value to a variable:
-* Viewing value assignment as a transfer instead of a copy operation: once `first = second` has been executed, it's often assumed that the value of the variable `second` has been moved to the value of the variable `first`, and that the variable `second` no longer holds a value, or that its value is 0, for instance. This is incorrect, as executing `first = second` means that the value in the position specified by `second` is merely copied to the place specified by the variable `first`. Hence, the variable `second` is not modified.
+* Viewing value assignment as a transfer instead of a copy operation: once `first = second` has been executed, it's often assumed that the value of the variable `second` has been moved to the value of the variable `first`, and that the variable `second` no longer holds a value, or that its value is 0, for instance. This is incorrect, as executing `first = second` means that the value in the position specified by `second` is merely copied to the place specified by the variable `first`. Hence, the variable `second` is not modified.
@@ -1023,7 +1023,7 @@ Here's three common misunderstanding related to assigning a value to a variable:
-* The third misunderstanding concerns the direction of copying: it's often thought that in executing `first = second` the value of the variable `first` is set as the value of the variable `second`. The confusion also manifests itself in situations where the programmer accidentally writes e.g. `42 = value -- fortunately, IDEs provide support on this issue too.
+* The third misunderstanding concerns the direction of copying: it's often thought that in executing `first = second` the value of the variable `first` is set as the value of the variable `second`. The confusion also manifests itself in situations where the programmer accidentally writes e.g. `42 = value` -- fortunately, IDEs provide support on this issue too.
@@ -1042,15 +1042,15 @@ rivi 9: System.out.println(kolmas);
``` -->
```java
-row 1: int first = (1 + 1);
-row 2: int second = first + 3 * (2 + 5);
-row 3:
-row 4: first = 5;
-row 5:
-row 6: int third = first + second;
-row 7: System.out.println(first);
-row 8: System.out.println(second);
-row 9: System.out.println(third);
+line 1: int first = (1 + 1);
+line 2: int second = first + 3 * (2 + 5);
+line 3:
+line 4: first = 5;
+line 5:
+line 6: int third = first + second;
+line 7: System.out.println(first);
+line 8: System.out.println(second);
+line 9: System.out.println(third);
```
@@ -1096,38 +1096,38 @@ rivi 9: tulostetaan arvo 28
-row 1: initiate a variable first
-row 1: copy the result of the calculation 1 + 1 as the value of the variable first
-row 1: the value of the variable first is 2
-row 2: create the variable second
-row 2: calculate 2 + 5, 2 + 5 -> 7
-row 2: calculate 3 * 7, 3 * 7 -> 21
-row 2: calculate first + 21
-row 2: copy the value of the variable first into the calculation, its value is 2
-row 2: calculate 2 + 21, 2 + 21 -> 23
-row 2: copy 23 to the value of the variable second
-row 2: the value of the variable second is 23
-row 3: (empty, do nothing)
-row 4: copy 5 to the value of the variable first
-row 4: the value of the variable first is 5
-row 5: (empty, do nothing)
-row 6: create variable third
-row 6: calculate first + second
-row 6: copy the value of the variable first into the calculation, its value is 5
-row 6: calculate 5 + second
-row 6: copy the value of the variable second into the calculation, its value is 23
-row 6: calculate 5 + 23 -> 28
-row 6: copy 28 to the value of the variable third
-row 6: the value of the variable third is 28
-row 7: print the variable first
-row 7: copy the value of the variable first for the print operation, its value is 5
-row 7: print the value 5
-row 8: print the variable second
-row 8: copy the value of the variable second for the print operation, its value is 23
-row 8: print the value 23
-row 9: print the variable third
-row 9: copy the value of the variable third for the print operation, its value is 28
-row 9: we print the value 28
+line 1: initiate a variable first
+line 1: copy the result of the calculation 1 + 1 as the value of the variable first
+line 1: the value of the variable first is 2
+line 2: create the variable second
+line 2: calculate 2 + 5, 2 + 5 -> 7
+line 2: calculate 3 * 7, 3 * 7 -> 21
+line 2: calculate first + 21
+line 2: copy the value of the variable first into the calculation, its value is 2
+line 2: calculate 2 + 21, 2 + 21 -> 23
+line 2: copy 23 to the value of the variable second
+line 2: the value of the variable second is 23
+line 3: (empty, do nothing)
+line 4: copy 5 to the value of the variable first
+line 4: the value of the variable first is 5
+line 5: (empty, do nothing)
+line 6: create variable third
+line 6: calculate first + second
+line 6: copy the value of the variable first into the calculation, its value is 5
+line 6: calculate 5 + second
+line 6: copy the value of the variable second into the calculation, its value is 23
+line 6: calculate 5 + 23 -> 28
+line 6: copy 28 to the value of the variable third
+line 6: the value of the variable third is 28
+line 7: print the variable first
+line 7: copy the value of the variable first for the print operation, its value is 5
+line 7: print the value 5
+line 8: print the variable second
+line 8: copy the value of the variable second for the print operation, its value is 23
+line 8: print the value 23
+line 9: print the variable third
+line 9: copy the value of the variable third for the print operation, its value is 28
+line 9: we print the value 28