Answer:
D
Explanation:
Home page will not usually be formatted the same as the contact page because each page has a different purpose
Answer: 2, 3, 6, 8
Explanation:
i must tell you something very important.
in LISTS.... the FIRST thing is marked with a 0.
[0, 1, 1, 2, 3, 6, 8, 13, 21, 34]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
do you see how these line up with each other?
the output would be 2, 3, 6, 8
Answer:
'='
Explanation:
The equal ('=') is the character that is used to assign the value in the programming.
In the programming, there is a lot of character which has different meaning and uses for a different purpose.
like '==' it is used for checking equality between the Boolean.
'+' is a character that is used for adding.
'-' is a character that is used for subtraction.
similarly, '=' used for assigning.
for example:
a = a + b;
In the programming, the program evaluates the (a + b) first and then the result assigns to the variable.