Multiple choice Which one is wrong with respect to variable name in C language? Variable name should start with alphabet. Variable name contains the space. Variable name should be different from the keywords. Variable name contains underscore(_). Reveal answer Fill a bubble to check yourself B Correct answer Explanation Space is not allowed in variable name. For example, RollNum is valid and Roll Num is invalid variable name.