Answer:
serendipitous
Explanation:
this happened by chance in a positive manner.
Answer:
- public class Main {
-
- public static void main (String [] args) {
-
- for(int i = 1; i < 10; i++){
- int num = 0;
- num += i;
- }
- System.out.println(num);
- }
- }
Explanation:
In programming each variable has its scope. For example, a variable defined within the for loop has no longer exist outside the loop body. To illustrate this we can write a short program as presented above.
Firstly, create a for loop that traverse the number 1 - 10 (Line 5 - 8). Within the loop create a variable num and initialize it with zero (Line 6) and increment it with i value for each iteration (Line 7).
Outside the loop, we try to print the num (Line 9). When we run the program this will result in an error as the num which is declared inside the for loop will no longer exist outside the loop body.
It might be an 81 because if you fail 0/100 yo grade is going DOWN
The first one is 0 (0/3=0)
The second one is 3 (3/3=1)
The third one is 2 (6/3=2)
The fourth one is 9 (9/3=3)
Hope this helps you :)
Answer:
cloudsearch.google.com
Explanation:
This is where you will be able to hopefully find what your missing.