Answer: 1. Project Manager
2. Web designer
3. Graphic Designer
4. Web developer
Explanation:
I hope you understand
Answer:
treeHeight = tangent of angleElevation * treeDistance
In java, we could write it as:
double treeHeight = (Math.tan(angleElevation) * treeDistance);
Math.tan(angleElevation) is an inbuilt java mathematical function used to calculate the tangent of a value and the return value is always double.
Explanation:
formula:
tangent of angleElevation = treeHeight/treeDistance
We want to assign treeHeight, so we cross-multiply and we get:
treeHeight = tangent of angleElevation * treeDistance
Off course, the treeHeight will be in feet also.
Answer:
Following are the logical statement
if( ( satScore >=1100 ) && ( gpa>2.5 ) && ( age>15 ) ) // check all condition
{
isCandidate=true;// assign True to the boolean variable isCandidate
}
else
{
isCandidate=false; // assign false to the boolean variable isCandidate
}
Explanation:
In this code we Check the condition in the if block that is " checking satScore variable > = 1100, gpa > 2.5 and age>15 if all the condition are true then it assigning the "true" to the boolean variable "isCandidate" otherwise assign "false" in the boolean variable "isCandidate".