Answer:Title
Explanation: Title is basically considered as the "heading" or the "topic" that is used for giving the hint about the content or visual. In context with the visual ,which is the piece of display where title determines about the reason of visual and also hints about the content .It also gives the reference number that a person assign to the visual.
Huh we’re, we’re is the computer screen shot
Answer:
I said CLI.
Explanation:
''A command-line interface (CLI) processes commands to a computer program in the form of lines of text.''- Wikipedia
Answer:
Both codes are correct.The value of even is true when the number is even.
Explanation:
Code 1:
number %2 ==0 means that when dividing number by 2 is the remainder coming out is zero.If it is true then even becomes is true if it is false then else statement is executes in which even becomes false.Means the number is odd.This code is simple and easy to understand.
Code 2:-
This code is a bit tricky and takes time to understand.even becomes true
when the number is divisible by 0 and false when it is not.