#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
Which escape sequence is used to represent a newline character in C?
#8
Which character is used to represent the end of a string in C?
#9
Which escape sequence is used to represent a backslash character in C++?
#10
What is the size of a char data type in C programming?
#11
Which escape sequence is used to represent a tab character in C#?
#12
In JavaScript, what is the method used to convert a string to an array of characters?
#13
Which of the following is a valid character literal in C++?
#14
What is the hexadecimal representation of the ASCII code for the digit '5'?
#15
In C#, which method is used to convert a character to its lowercase equivalent?
#16
In C++, what is the difference between 'char' and 'wchar_t' data types?
#17
What is the Unicode range for basic Latin characters?
#18
What is the purpose of the 'isalpha()' function in C?
#19
In Java, how can you concatenate two char variables 'ch1' and 'ch2'?
#20
In Python, how do you convert a character to its Unicode code point?
#21
What is the purpose of the Unicode character encoding?
#22
What is the purpose of the 'chr()' function in Python?
#23
In Python, what will the expression ord('A') - ord('a') evaluate to?
#24
In Java, what will the expression 'char ch = 65; System.out.println(ch);' output?
#25