Answer:
hee hee 4 you are correct
Explanation:
Answer:
import java.util.Scanner;
public class num6{
static int getTestScores(){
System.out.println("Enter the Score");
Scanner in = new Scanner(System.in);
int score = in.nextInt();
return score;
}
static double calcAverage(int score1, int score2, int score3){
return (score1+score2+score3)/3;
}
static void displayAverage(double ave){
System.out.println("The Average is "+ave);
}
public static void main(String[] args) {
int num1 = getTestScores();
int num2 = getTestScores();
int num3 = getTestScores();
//Calling Calculate Average
double average = calcAverage(num1,num2,num3);
//Calling displayAverage
displayAverage(average);
}
}
Explanation:
- Using Java programming Language
- Create the four methods
- getTestScores() Uses the Scanner Class to receive an in variable and return it
- calcAverage() accepts three ints as parameter calculates their average and return it
- displayAverage() Accepts a double and prints it out with a concatenated string as message
- In the Main Method, getTestScores is called three times to obtain three numbers from the user
- calAverage is called and handed the three numbers
- printAverage is called to output the calculated average
If you install the IPAM server feature you will be prompted to install the other features are:
- Option c. Group Policy Management
- Option d. Windows Internal Database
<h3> Which server should a person install the IPAM server feature?</h3>
IPAM Server is known to be one that need to be installed on a kind of server known as the domain member computer running Windows Server.
One can also install it its later operating system. The IPAM server is said to be made as a single purpose server and it is one that need not be installed with other form of network infrastructure roles e.g. DNS.
Hence, If you install the IPAM server feature you will be prompted to install the other features are:
- Option c. Group Policy Management
- Option d. Windows Internal Database
Learn more about server from
brainly.com/question/15243924
#SPJ1
See full question below
When you install the IPAM Server feature you will be prompted to install which other features? (Choose all that apply.)
a. Control Flow Guard
b. Scale Out File Server
c. Group Policy Management
d. Windows Internal Database
c. Group Policy Management
d. Windows Internal Database
37 most likely.
No programming language is specified, and you didn't put what the function is, so assuming it's already implemented, MAX should display the highest number.