Hi!
I have chosen Scenarios A, B and C.
For Scenario A, it DOES make sense to use a template. This is because you will be mass sending thank you letters to your purchasers.
For Scenario B, it DOESN’T make sense to use a template. This is because the letter you are writing will probably just be a one-off letter, and you won’t need to write another one.
For Scenario C, it DOESN’T make sense to use a template. As mentioned above, the report will probably just be a one-off report, so it doesn’t make sense to use a template.
I hope that this helps you out!
Answer C in the paragraph group on the home tab
Incandescent test lamps are used to check for Alternating Current Voltage and Direct Current Voltage.
The answer is AC Voltage and DC Voltage.
Answer:
- public class Square {
- public static boolean isPerfectSquare(int n){
- int sqrt_n = (int) Math.sqrt(n);
- if(sqrt_n * sqrt_n == n ){
- return true;
- }else{
- return false;
- }
- }
- }
Explanation:
Firstly, use sqrt method from Math package to calculate the square root of input n (Line 3). Cast the result to integer and assign it to sqrt_n variable.
Next, square the sqrt_n and check if it is equal to input n (Line 4). If so, return true, if not, return false (Line 4-8).
Answer:
True
Explanation:
hope this helps if not sorry :(