Answer:
call
Explanation:
call is a way for a person to draw attention to the way a person conveys information to someone he wants.
Answer:
Extranet
Explanation:
An extranet is a private network which uses Internet technology to privately share part of a company's information with clients. An extranet allows access to partners, customers, vendors and suppliers or an authorized clients by using the internet for private collaboration and information sharing among the team members, as well as the company's clients.
Therefore Jordan, a software engineer, is responsible for maintaining the private piece of his company's internet network that is accessible to clients by means of a unique password is called ENTRANET private network.
Answer:
The correct answer to this question is "if".
Explanation:
The answer is if because selection statement selects among a set of statements depending on the value of a regulating expression. In the selection statement there we use two conditional statements that can be given as
1) If statement.
2) Switch statement.
If statement:
it is used to execute a block of code. If the expression is evaluated to true it executes. In that else statement is optional.
Syntax:
if(condition)
{
//code;
}
else //(optional)
{
//code;
}
The if statement single-selection statement. because it always execute true value.So the correct answer is if.