delimiter is a symbol which has statement structure and importance
True or False
Answers
Answered by
1
this statement is true
Answered by
0
The given statement : Delimiter is a symbol which has statement structure and importance is a TRUE statement.
Delimiters are simple or complex symbols that has a special meaning to the compiler.
It is a sequence of characters which separate the string.
These are the characters that separate tokens.
Eg : My name is Ram.
So in this sentence tokens are : My , name , is , Ram
And delimiters are whitespace character.
Examples of delimiters are : Comma(,) , Semicolon(;) , Brackets([] , {} , ()) , whitespace( ) , inverted-comma("" , '') etc.
Example :
String str = "My name is Ram.";
String S[] = str.split(" ");
Similar questions