__________ contain the information required for the compilation of the source program.
Header file
Main function
Pre processor
None of these
_____________ are the token that triggers some kind of operation on the data.
Operators
Punctuators
Literal
Identifier
Check the validity of the statement:
" book " is 5 or " book /n " is 6
" book " is 6 or "book /n " is 8
" book " is 5 or "book /n " is 7
"book " is 6 or "book /n " is 6
[ ] represent ____________.
Keyword
Operator
Punctuation
In c++,the function main ( ) returns a value of ___________ to the operating system.
Content
Int
Main
____________ integer starts with 0X.
Octal
Hexa decimal
Num 1 has been declared as an integer variable in c++ program.You will enter a non - integer data.While running the program,then occure type error.How to solve this problem.
Convert the integer data into integer form
Convert the all data into intege form
Convert integer data into text data
____________ are the fundamental units of a language.
Numbers
Alphabets
Words
Keywords
__________ refers to formal rules governing the construction of valid statements in a language.
Logical error
Syntax error
Programing error
? is _________ operator.
Relational operation
Arithmetic operation
Logical operation
Conditional operation