A hard copy is the digital file, stored in a device and was printed out. A soft copy is the electronic version NOT PRINTED. It is showcased digitally (through a phone, computer, flash drive etc)
The process where the programmer steps through each of the program's statements one by one is called
.

If you print the binary digits just like that, they'll be in the wrong order (lsb to msb). Below program uses recursion to print the digits msb to lsb. Just for fun.
void printBits(unsigned int n)
{
if (n > 1) {
printBits(n >> 1);
}
printf((n & 1) ? "1" : "0");
}
int main()
{
unsigned int number;
printf("Enter an integer number: ");
scanf_s("%d", &number);
printBits(number);
}
Answer:
Compare the prices of the two brands.
Explanation:
Price can be defined as the amount of money that is required to be paid by a buyer (customer) to a seller (producer) in order to acquire goods and services.
In sales and marketing, pricing of products is considered to be an essential element of a business firm's marketing mix because place, promotion and product largely depends on it.
One of the importance associated with the pricing of products is that, it improves the image of a business firm.
Hence, if you know the unit prices of two different brands of an item, you are better able to compare the prices of the two brands. Subsequently, the buyer would be able to easily make a decision on which brand's product to purchase.