What is a character set?
Set of informations
Set of valid characters
Set of letters
Set of words
Which one of the following is not an integral type?
Byte
Short
long
double
What will be the value of y in the following line of code. y="12"+"11";
23
1211
1112
1121
Int count =0, sum, sum2; sum=count+(++count); in the lines of code. what will be the values of sum and sum2?
1 and 0
0 and 1
0 and 2
0 and 0
Which one is the proper way to declare a constant?
const int a;
Final int a;
final int a;
final int a=3;
Which among the following is not a punctuator?
(
:
;
}