an OS systems security is at a high risk to hackers so the company can update the OS to improve security
Answer:
The method in C++ is as follows:
double average(int v, int w, int x, int y, int y){
double ave = (v+w+x+y+z)/5.0;
return ave;
}
Explanation:
This defines the average method with 5 parameters
double average(int v, int w, int x, int y, int y){
This calculates the average
double ave = (v+w+x+y+z)/5.0;
This returns the calculated average
return ave;
}
To call the method from the program's main, use:
<em>int main(){</em>
<em> cout<<average(1,5,7,4,10);</em>
<em> return 0;</em>
<em>}</em>
<em />
Complete Question:
LDAP is an industry standard employed by Microsoft, which enables IT departments to use a(n) __________ structure when creating user accounts and user groups.
(a)directory tree
(b)Organizational Unit (OU)
(c)forest
(d)file system
Answer:
(a) directory tree structure
Explanation:
Lightweight Directory Access Protocol (LDAP) is a special type of Directory Access Protocol (DAP) and it is a software protocol that allows the storage and retrieval of data objects (such as user accounts and user groups) that are arranged in an hierarchical directory structure. This hierarchical directory structure is called directory tree or directory information tree.
LDAP stores users and resources information of an organization. These information include usernames, passwords, email, human resource data e.t.c
Answer:
num
Explanation:
In java reserved words are also known as keywords, keywords are reserve words for a language that can't be used as an identifier(name of a class, name of a variable, name of an array etc.) int, public static, are reserve words.
In given question num is not a reserved word.