Answer:
a. You are eligible to vote.
Explanation:
If Age >= 18 Then
Write "You are eligible to vote."
Else
Set - Age
Write "You can vote in " + Years + " years."
End If
The above code block is an example of if-else code block. The if-else code block follow a pattern of:
If (expression) then
else
(expression)
end if
Based on the if Age>= 18 condition, the output will be "You are eligible to vote."
Answer:
The domain suffix/TLD .edu is reserved for colleges and universities
Examples:
harvard.edu
stanford.edu
juilliard.edu
Answer:
You can send f e e d b a c k to g o o g l e fe e d back
Explanation:
i Hope this helps
Answer: Adjustment layer
Explanation:
The image editing tool or technique that should be used by Carter use is an adjustment layer.
The adjustment layer that can be seen in Photoshop refers to an editing tool that's non-destructive image which can be used in adding color and tonal adjustments to a particular image without the pixels changing permanently.
By using the adjustment layers, one can be able to edit and then discard the adjustments. One can also be bake to restore the original image anytime that the person wants.
Answer:
Reduces the overall complexity of your program
Allows you to easily call a function from different parts of your program after defining it.
Helps break a problem into logical chunks
Explanation: