Answer:
A
Explanation:
If they are connected via bluetooth, you can share unlimited amounts of anything.
Answer:
True.
The code skips the else command
Explanation:
I will answer this question with the following code segment
<em>n = 1</em>
<em>If n > 0:</em>
<em> Print("greater than 0")</em>
<em>else:</em>
<em> Print("not greater than 0")</em>
<em />
From the code segment above
<em>Print("greater than 0")</em> will be executed because the condition <em>If n > 0 </em>is true
Since the if condition is true, the else condition will not be executed