Which is not a Unicode encoding form?
AUTF-8
BUTF-16
CUTF-EBCDIC
DUTF-64
AUTF-8
BUTF-16
CUTF-EBCDIC
DUTF-64
Related Questions:
What is the value of sum after the execution of the following code?
int sum = 0;
for (int i = -5; i<=;i++)
{
if (!i) break;
sum += i;
}