Answer:
The answer is below
Explanation:
Elements of Server software that is built-in, in Windows workstations are:
1. Hard drives,
2. RAM (Random Access Memory)
3. Processors
4. Network adapters.
Windows Professional OS is not considered a server due to the following:
1. Windows Professional OS has a limit on the number of client connections it allowed.
2. Unlike Server, Professional OS uses less memory
2. In comparison to Server, Professional OS uses the CPU less efficiently
4. Professional OS is not built to process background tasks, unlike Server that is configured to perform background tasks.
Answer: a function or procedure call from one object to another object
Explanation: UML(Unified Modeling language) behavioral modeling is the depiction of the relation of the elements in a dynamic manner and the dependency on time .Message in the UML behavioral modeling is a functional call taking place from one element to another.
The interaction is the model is seen through the flow of messages.Other options are incorrect because message is not information holding data structure, does not display the relation between object rather presents the flow and is not a memory location .
Using the computer language in JAVA to write a function code that output numbers in reverse
<h3>Writting the code in JAVA:</h3>
<em>import java.util.Scanner;</em>
<em>public class LabProgram {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner scnr = new Scanner(System.in);</em>
<em> int[] userList = new int[20];</em>
<em> int numElements;</em>
<em> numElements = scnr.nextInt();</em>
<em> for (int i = 0; i < numElements; ++i) {</em>
<em> userList[i] = scnr.nextInt();</em>
<em> }</em>
<em> for (int i = numElements - 1; i >= 0; --i) {</em>
<em> System.out.print(userList[i] + " ");</em>
<em> }</em>
<em> System.out.println();</em>
<em> }</em>
<em>}</em>
See more about JAVA at brainly.com/question/12975450
#SPJ1
Man i do not speak spanish L