Answer:
Step-by-step explanation:
Programming language is different from the language use in everyday life mostly because computer is "stupid" - it requires the instructions given (commands in a programming language) to be very clear and logical.
For example in Pascal, a series of commands must be grouped together between "Begin" and "End". Otherwise the computer will not understand those commands are to be carried out together such as in a While-Do loop:
###
while number>0 do
begin
sum := sum + number;
number := number - 1;
end;
###
This special structure in is called syntax and is in every programming language.