The answer is C to this question
Answer:
A
Explanation:
I think it would be A because i have never heard of a virus scanner
If you’re assigned the job of writing a company newsletter or producing a product brochure, it is important to learn about that document type and review examples that are considered to have a good layout and design because:
- It ensures conformity (especially if the organization already has a pattern).
- It will aid readability.
- It will help to guarantee a result that is satisfactory to the employers.
When given the job of writing a brochure, it is important to review examples that are considered standard.
This is because it will help to ensure an excellent final result that is in harmony with the company's requirements. It will also ensure conformity to standards.
Learn more about document type here:
brainly.com/question/1218796
Answer:g
public static int addOddMinusEven(int start, int end){
int odd =0;
int even = 0;
for(int i =start; i<end; i++){
if(i%2==0){
even = even+i;
}
else{
odd = odd+i;
}
}
return odd-even;
}
}
Explanation:
Using Java programming language:
- The method addOddMinusEven() is created to accept two parameters of ints start and end
- Using a for loop statement we iterate from start to end but not including end
- Using a modulos operator we check for even and odds
- The method then returns odd-even
- See below a complete method with a call to the method addOddMinusEven()
public class num13 {
public static void main(String[] args) {
int start = 2;
int stop = 10;
System.out.println(addOddMinusEven(start,stop));
}
public static int addOddMinusEven(int start, int end){
int odd =0;
int even = 0;
for(int i =start; i<end; i++){
if(i%2==0){
even = even+i;
}
else{
odd = odd+i;
}
}
return odd-even;
}
}