The answer is (A)
TwiceFormat painter is that icon tool that looks like
a paintbrush that is used to pick up formatting of an existing text and then
paints it on the next text you select. If you wish to apply the formatting to
more than one element, you should double-click the format painter and press esc
key to deactivate.
C. Data structures
---------------------------------
No it's actually the opposite. so False.
Answer:
a.
++score = score + 1
Explanation:
First you have to understand the increment operator;
There are three possible ways to increment the value of variable by 1.
1. <u>post increment</u>
syntax:
name++
it using in expression first then increase the value by 1.
2. <u>Pre increment</u><u> </u>
syntax:
++name
it increase the value by 1 before it using in expression.
3. simple method
name = name +1
In the question,
option 1: ++score = score + 1
it increase the value of score by 2 because their are two increment is used first for (score + 1) and second ++score.
Therefore, the correct option is a.
Its not c or b. I think it's a. Im not sure tho..