I will master the essentials for the Microsoft application Excel. My newly formed skills will be shown through my work shown through Spreadsheets i create and how i utilize mathematical functions in Excel. I am determined to increase my skill level by 90%. I will achieve this goal by the second marking period.
QUESTION NO. 1 -
A. Cloud computing.
QUESTION NO. 2 -
C. Social networking.
QUESTION NO. 3 -
D. Task list.
QUESTION NO. 4 -
D. Powerpoint.
QUESTION NO. 5 -
B. Sandie should share the document in OneDrive and give her sister permission to edit the document.
QUESTION NO. 6 -
C. The design and arrangement of items for efficiency and safety.
Answer:
public static int maxMagnitude(int a, int b){
int max;
if (a>b){
max = a;
}
else{
max = b;
}
return max;
}
The complete program calling the method is given in the explanation section
Explanation:
import java.util.Scanner;
public class ANot {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Please Enter two numbers");
int num1= in.nextInt();
int num2 = in.nextInt();
System.out.println("The largest magnitude number is: "+maxMagnitude(num1,num2));
}
public static int maxMagnitude(int a, int b){
int max;
if (a>b){
max = a;
}
else{
max = b;
}
return max;
}
}
The maxMagnitude() method uses if/else statement to compare two ints and return the larger one
Answer:
They are the same as the clone tool.
Explanation:
The answer is a usb drive