Without more information for what the programming language is I cannot give a full answer, so I listed a potential method for calculating salary.
To calculate the salary (Java):
public static double getSalary(double salary) {
if (salary < 40000) {
return salary + (salary * 0.05);
}
return 2000 + ((0.02 * salary) + salary);
}
To calculate the salary (VB .Net):
Function getSalary(ByVal salary As Double) As Double
If salary < 40000 Then
salary = salary + (salary * 0.05)
Else
salary = 2000 + ((0.02 * salary) + salary)
End If
Return salary
End Function
Answer:
1,D. identify target employers, select an open position, prepare and submit
application materials
2,B. A person may have traits similar to other successful employees.
Explanation:
Hope It Helps :3
Answer:
layout,image,font,background color,
Explanation: i just did it on edge
Corrected or Complet Question
The ____ operator executes one of two expressions based on the results of a conditional expression.
a. .
b. ( )
c. ,
d. ?:
Answer:
(d) ? :
Explanation:
The ternary operator (? :) is an operator that executes one out of two expressions based on the results of a conditional expression. It is a faster or shorthand way of writing an if ... else statement. The operator checks the conditional expression and depending on whether it is true or false, one of its two statements will be executed. For example:
String correct = (4 < 5) ? "yes" : "no" ;
In the code above,
i. the conditional statement is (4 < 5) and this will be tested for to return true or false.
ii. the first expression (the one after the ?) is "yes" which will be executed if the conditional statement returns true.
iii. and the second expression (the one after the : ) is "no" which will be executed if the conditional statement returns false.
Therefore, since the conditional expression returns true for 4 < 5, the first expression will be executed. i.e "yes". This means that the String variable <em>correct </em> will have a value of "yes".
Answer
An Access point can completely stop broadcasts from being passed on across the network.
Explanation.
An Access point is a hardware type that is part of local area network which has capability of allowing wireless communication from devices through a wireless stand,which connects in between devices and the network. A good example of these devices are routers that allows wireless devices to connect to a wireless network.So when it is passed on across a network an Access point can completely stop.