Answer:
If you know how many passes you'll be making, a for loop is most suitable.
If you do not know ahead of time, the while loop is better, since the while condition will decide if you're going to make another round.
Answer:
a,b,c,d,f,g are true only e is false
Answer:
WORM (Write Once, Read Many)
Explanation:
The full meaning which means Write Once, Read Many implies that data can only be entered (or better put, written) once. Once the data has been written, the data can not be updated or deleted. However, the data being stored on WORM can be read as many times, as possible.
Hence, WORM answers the question.
Wireless connectivity is recommended for use with laptops or mobile devices, especially as newer devices are less likely to have ethernet connectivity built in. In either case, use of wireless technology make it easier for users to move around without having to worry about being plugged in. Wired connections are still recommended for anything that doesn't need to be able to move as it is generally more reliable, and depending on the devices involved, could offer a faster connection.
Pointer: A pointer is a variable which holds the address of other variable of the specified data type(like int,float,char). In programming we basically use pointers to store the other variable's address.