Answer:
Component services
Explanation:
In Windows, components services are integrated into the Administrative Tools and are used to configure certain COM (Component Object Model) components and applications. They are also used to ;
i. assign roles to users and groups.
ii. facilitate data sharing between applications and computers by processes such as pooling, pausing, resuming and recycling applications.
Answer:
public static int square(int num){
return num*num;
}
Explanation:
Using the Java Programming Language, we declare a function named square as stated in the question, the return type of the function is stated as integer. And the the parameter it receives is an integer number called num.
To get the square of the number we use the expression num*num, and return the the squared value. When the function is called, it will receive one argument (an integer value), it will calculate the square and return it.