It is used to convert variables from one type to another.
What is Type Conversion?
65 ≤ char ≤ 90
How to detect an upper case letter?
Z (uppercase)
Which is the character represented by decimal 90?
This operator is used to subtract one from the value stored in a variable.
What is the use of the decrement operator(--)?
97 ≤ char ≤ 122
How to detect a lower case letter?
w (lowercase)
Which is the character represented by decimal 119?
This operator is used to add one to the value stored in a variable.
What is the use of the increment operator(++)?
48 ≤ char ≤ 57
How to detect a digit from 0 to 9?
space
Which is the character represented by decimal 32?
Conversion of one datatype to another type using typecast operator() is done using programmer’s intervention.
What is Explicit Type Casting?
2 bytes
What is the size of character datatype?
#
Which is the character represented by decimal 35?
-128 to 127
What is the range of values we can store in byte data type?
It is written between
quotes ' '
What is a character literal?
2
Which is the character represented by decimal 50?