Computer Science, asked by manjubala25041983, 9 months ago

char p='Application ' why false​

Answers

Answered by metito863
1

Answer: The most important thing or concept we need to know is that char which implies character can only store a single character and no more

Explanation: char ( character ) only stores a single character and input is always done within single quotations for instance char a = 'A' or char a = '5'

and the single character can be an alphabet , a symbol like ! , a special character , a number or even a blank space

so it is given that char p = ' Application' but we know that char can only store a single character and not an entire word so Application being a word and not a single character cannot be stored in the char datatype

and so the given statement is false and will most likely result in an error

so the statement is false

hope it helps

Similar questions