#1
Which keyword is used to declare a character data type in C++?
#2
In Java, what is the default value of a char variable?
#3
What is the ASCII code for the lowercase letter 'a'?
#4
Which of the following is a valid way to declare a character in C#?
#5
Which character is used as an escape character in most programming languages?
#6
In Java, how can you compare two char values for equality?
#7
What is the size of a char data type in C programming?
#8
Which escape sequence is used to represent a tab character in C#?
#9
In JavaScript, what is the method used to convert a string to an array of characters?
#10
Which of the following is a valid character literal in C++?
#11
What is the hexadecimal representation of the ASCII code for the digit '5'?
#12
In C#, which method is used to convert a character to its lowercase equivalent?
#13
In Python, how do you convert a character to its Unicode code point?
#14
What is the purpose of the Unicode character encoding?
#15
What is the purpose of the 'chr()' function in Python?
#16
In Python, what will the expression ord('A') - ord('a') evaluate to?
#17
In Java, what will the expression 'char ch = 65; System.out.println(ch);' output?
#18