Usability emphasizes utility over aesthetics statement best describes the concept of usability.
B. Usability emphasizes utility over aesthetics.
<u>Explanation:</u>
Usability mainly speaks about the utility of an item. There are many wastes created in home and work place and those are sometimes thrown without knowing that it can be re-used for another purpose.
It is always better to re-use the product without considering aesthetic aspects though aesthetic is equally important. We can make the old objects to create a new one.
There are many videos in the social media to make the old objects to be used as a sub-product to create a new object and sometimes it looks better than an old one.
Answer:
// function with memory leak
void func_to_show_mem_leak() {
int *pointer;
pointer = malloc(10 * sizeof(int));
*(pointer+3) = 99;}
// driver code
int main()
{
// Call the function
// to get the memory leak
func_to_show_mem_leak();
return 0; }
Explanation:
Memory leakage occurs when programmers allocates memory by using new keyword and forgets to deallocate the memory by using delete() function or delete[] operator. One of the most memory leakage occurs by using wrong delete operator.
The delete operator should be used to free a single allocated memory space, whereas the delete [] operator should be used to free an array of data values.

Your answer is such a genius. :)

Answer:
64
Explanation:
We have given the 32 bit architecture
We know that 1 byte =8 bit
So memory of given architecture 32 bit 
Total memory = 256 bytes
So total number of instruction that fit into 256 bytes 
So total 64 instruction can be fit in 256 byte memory.
Your answer is:
virtual reality
I hope this helps! :)