An outline is most like a map.
You read it aloud to whilst looking at the word, then it when you are confident enough you cover up the word and repeat saying it aloud
Answer:
public static boolean isDivisibleBy5(int number) {
boolean isTrue = true;
if (number % 5 == 0)
isTrue = true;
else
isTrue = false;
return isTrue;
}
Explanation:
- Create a method called <em>isDivisibleBy5</em> that takes one parameter, an integer number
- Inside the method, create a boolean variable, <em>isTrue</em>, that will be used to store the result
- Check if the number is divisible by 5, using the module operator. If it is, set the isTrue as true. Otherwise, set the isTrue as false
- Return the isTrue
1 - Cropping
2 - Filter
3 - High Resolution
4 - Opaque
Thank you!
Answer:
Line graphs allow us to see overall trends such as an increase or decrease in data over time. Bar graphs are used to compare facts.