False.
The different between break and continue instruction is that with break you exit the loop, and with continue you skip to the next iteration.
So, for example, a loop like
for(i = 1; i <= 10; i++){
if(i <= 5){
print(i);
} else {
break;
}
}
will print 1,2,3,4,5, because when i=6 you will enter the else branch and you will exit the loop because of the break instruction.
On the other hand, a loop like
for(i = 1; i <= 10; i++){
if(i % 2 == 0){
print(i);
} else {
continue;
}
}
Will print 2,4,6,8,10, because if i is even you print it, and if i is odd you will simply skip to the next iteration.
Was this in reference to literal audio archives? If so, I don't see any cons beside possible copyright infringement.
If you're talking about the codecs themselves, then I can do that.
<span>Pros:
</span>- Widespread acceptance. Supported in nearly all hardware devices, and continually adopted by newer ones.
- Faster decoding. Much more so than FLAC, Vorbis, etc.
- Relaxed licensing schedule.
<span>Cons:
</span><span>
</span>- Lower quality and efficiency than most modern codecs. (To be fair, never really noticed this one).
- Sometimes the maximum bitrate isn't enough.
- Pretty much void/unusable for high definition audio (higher than <span>48kHz).</span>
B. False
Explanation
TCP provides reliable, ordered, and error-checked delivery of a stream of octets (bytes) between applications running on hosts communicating via an IP network.