#1
Which of the following is the correct way to declare a string variable in Java?
#2
What does the 'new' keyword do when initializing a string variable in Java?
#3
Which of the following is a correct way to concatenate strings in Python?
#4
In JavaScript, which method is used to find the length of a string?
#5
Which of the following is NOT a valid way to declare a string variable in C++?
#6
In Python, what will the expression 'len('hello')' return?
#7
Which of the following characters is used to represent the end of a string in C programming?
#8
In C++, what is the result of the following code: string myString = "Hello" + "World";
#9
Which method is used to compare two string objects in Java?
#10
What is the output of the following C# code: string str = "hello"; Console.WriteLine(str[0]);
#11
Which of the following methods is used to convert a string to uppercase in Python?
#12
Which of the following methods is used to check if a string contains a specific substring in JavaScript?
#13
What is the output of the following C# code: string str = "hello"; Console.WriteLine(str.ToUpper());
#14
Which operator is used for string concatenation in PHP?
#15
What is the difference between String and StringBuilder in Java?
#16
In Java, what is the purpose of the 'intern()' method in the String class?
#17
In Java, which method is used to convert an int to a string?
#18
In C++, what function is used to find the length of a string?
#19