The answer is C) tablet. You use the touch screen keyboard for that.
Explanation:
the right answer may be A.
Answer:
Explanation:
Let's use Python for this. We will start prompting the user for input number, until it get 0, count only if it's positive:
input_number = Input("Please input an integer")
positive_count = 0
while input_number != 0:
if input_number > 0:
positive_count += 1
input_number = Input("Please input an integer")
print(positive_count)
Answer:
B. Copyright
Explanation:
Joe needs to consider the Copyright as it is the legal means of protection of an author's work; it is the intellectual property that provides exclusiveness to the author's work, which menas that all the content and work created by the author, and protected by copyright cannot be used or published by anyone else without the consent of the author. For that reason, if the picture used by Joe has copyright it cannot be used in his project.