What are Instructions?
Instructions are nothing but a set of commands given to the computer to perform some operations.
// Here is an example
a=6
b=4
c=a+b
print(c)
// These are the instructions given by a programmer to a computer.
What is a program...