2,27 Concepts of Variables and Operators
2,27 Concepts of Variables and Operators
1.1
Activity1. Give the right declaration for each of the following
1.2
3. Activity
4.1
Y=2500;
X = Y/5 + X;
Activity 4
Give the value of X
4.2
A=2;
B=A;
C=100;
X =C-A*B;
Activity 4
Give the value of X
4.3
X=2;
Y=3;
X =A + Y;
X=10;
Activity 4
Give the value of X
4.4
X=2;
Y=3;
X =Y;
Y=7;
X=X+Y;