Answer:In python, when we declare a float or an integer, we declare like below:
a=2 for int
b=2.0 for float
And when we do this operation in c++, we write
int a;
float b;
And when we write this in Pascal, we use:
a: integer
b: float
and we assign value like:
a:=2
b:=2.0
And you should know that if you will not follow the syntax, then the compiler or the interpreter will throw syntax error, and you will not be able to run your program. The syntax is very important.
Step-by-step explanation: