Answer: a)Purchased from a vendor and gives you the right to use the software but is not yours to own.
Explanation: Proprietary software is the software that can be used by the user but it has copyright of the vendor/holder in any case.There are some certain condition under which the user can use this software.The distribution of the software is not permitted in this case. No modification or manipulation can be done by the user.
Other options are incorrect because it is not free as its purchased from vendor ,not freely available rather guided by owner and can be used over certain period of time.Thus , the correct option is option(a).
Answer: NVRAM(Non-volatile random-access memory)
Explanation:Non-volatile random-access memory(NVRAM) is the memory that has a non-volatile nature.It is used for retaining of the data even when the system gets switched off .
This memory uses the power source from the CMOS battery for executing the functions. It is designed by using the pin configurations containing 24 pin in DIP(Dual inline package). So the situation mentioned in the question of storing the changes will appear in the NVRAM.
Answer:
TRUE
Explanation:
The array is allow to store the multiple values but with same data type.
It cannot store element with different data type.
For example:
int array[] = {1, 'b', 8.7, 9, 'z'}
the above is wrong way to declare the array.
the correct ways is:
int array[] = {1,2,3,4};
float array[] = {1.2, 3.4, 9.6};
we can store only same data type element in multiple tiles.