Answer:

No.

Syntax of Variable Declaration

Recall that syntax means the grammar of a computer language. We can talk about the syntax of just a small part of a program, such as the syntax of variable declaration.

There are several ways to declare a variable:

dataType   variableName;
dataType   variableName  =  initialValue ;
dataType   variableNameOne, variableNameTwo ;
dataType   variableNameOne  =  initialValueOne, 
           variableNameTwo  =  initialValueTwo ;

QUESTION 5:

Is the following declaration correct?

int answer;