Answer:
int n = -100;
ii. int m = 2, p=4;
vi. double d = 0.67F;
vii. char c = '$';
Step-by-step explanation:
A variable can be declared starting with a character,dollar sign or underscore not with an integer.you cannot use the same variable that you are declaring in it's definition.
For strings you have to use double quotes.
For declaring multiple variables you can do that by separating different variables by commas.
int a=4,b=44;
as long as they are of same data type.
In iv part if there is a variable m that is defined before variable x then it is valid.