A input
beacuse they input data to the computer
Answer:
The answer is "Title page".
Explanation:
Don uses the title page to create it's designed because this page contains basic information like names, dates, titles, and the names of the author. On this heading tab, it does not have a paper summary, and wrong choices can be described as follows:
- The Blank Page is the wrong choice because it doesn't contain any layout.
- The Bibliography is also a wrong choice because it describes the source of the information.
- The Cover Page is also a wrong choice because it is also known as the main page it describes the name, the title of the document but it can't contain the date.
Answer:
commutative
Explanation:
The commutative property states that the numbers on which we operate can be moved or swapped from their position without making any difference to the answer.
Answer:
Optional
Explanation:
Variable declaration means when you declaring a variable in the code,whenever you want to use a variable you should declare it or define the variable with come constant.
<u>Example</u>
var name ;
The variable has no value after the statement (technically it has undefined value). Declaring a variable without var keyword is not recommended. An current global variable may accidentally be overwritten.
<u>Example</u>
a=2;
The range of variables declared without var keywords becomes global regardless of where they are declared