The Unicode of 'a' is 97 . What is the Unicode for 'c'?

a. 96
b. 97
c. 98
d. 99


d The Unicode for letters and numbers are allocated in a natural order. So b is after a and c is after b, and so on.

Computer Science & Information Technology

You might also like to view...

Which of the following expressions determines whether the char variable, chrA, is not equal to the letter 'A'?

a. chrA == 'A' b. chrA != 'A' c. chrA || 'A' d. chrA.notEquals(A)

Computer Science & Information Technology

The basic generic functional interface ________ in package java.util.function contains method apply that takes two T arguments, performs an operation on them (such as a calculation) and returns a value of type T.

a. Consumer b. Function c. Supplier d. BinaryOperator

Computer Science & Information Technology

________ are the rules that dictate the type of data that can be entered in a cell

A) Input message B) Validation criteria C) Defined item D) Error alert

Computer Science & Information Technology

When enabled, ________ requires a password and a verification code to sign into a device for the first time.

a. keychain b. keylogger c. password manager d. two-factor authentication

Computer Science & Information Technology