How many different values can a bit have?
16
2
4.
8
Answer:
A bit can only have 2 values
Look at the following assignment statements:
word1 = "rain"
word2 = "bow"
What is the correct way to concatenate the strings?
1 newWord = word1 == word2
2 newWord = word1 + word2
3 newWord = word1 * word2
4 newWord = word1 - word2
Answer: number 2 is the correct way to do it
Explanation:
Answer:
2 newWord = word1 + word2
Explanation:
In cell 14, calculate
the profit by
subtracting the
donation from the
streaming revenues.
Answer:
See Explanation
Explanation:
The question is incomplete as the cells that contains donation and streaming revenues are not given
So, I will make the following assumption:
H4 = Donations
G4 = Streaming Revenues
So, the profit will be:
Enter the following formula in cell I4
=(G4 - H4)
To get the actual solution in your case, replace G4 and H4 with the proper cell names