String Variable Declarations and Initialization Quiz

Test your knowledge on string variable declaration, initialization, and manipulation in programming languages like Java, C++, Python, JavaScript, and C#.

#1

Which of the following is the correct way to declare a string variable in Java?

string myString;
String myString;
string = myString;
String = myString;
#2

What does the 'new' keyword do when initializing a string variable in Java?

Creates a new instance of the String class
Allocates memory for the string
Converts the string to uppercase
Deletes the existing string
#3

Which of the following is a correct way to concatenate strings in Python?

str_concat(string1, string2)
string1.concat(string2)
string1 + string2
concat(string1, string2)
#4

In JavaScript, which method is used to find the length of a string?

size()
length()
size
length
#5

Which of the following is NOT a valid way to declare a string variable in C++?

string myString;
String myString;
char myString[50];
std::string myString;
#6

In Python, what will the expression 'len('hello')' return?

hello
5
6
1
#7

Which of the following characters is used to represent the end of a string in C programming?

\n
\0
\t
\r
#8

In C++, what is the result of the following code: string myString = "Hello" + "World";

myString contains "Hello World"
Compilation error
myString contains "Hello" followed by garbage value
myString contains garbage value
#9

Which method is used to compare two string objects in Java?

compare()
compareTo()
equals()
equal()
#10

What is the output of the following C# code: string str = "hello"; Console.WriteLine(str[0]);

hello
h
e
Compilation error
#11

Which of the following methods is used to convert a string to uppercase in Python?

toUpper()
upper()
toUpperCase()
caseUpper()
#12

Which of the following methods is used to check if a string contains a specific substring in JavaScript?

includes()
contains()
hasSubstring()
indexOf()
#13

What is the output of the following C# code: string str = "hello"; Console.WriteLine(str.ToUpper());

hello
HELLO
Hello
hElLo
#14

Which operator is used for string concatenation in PHP?

+
&
.
,
#15

What is the difference between String and StringBuilder in Java?

String is immutable whereas StringBuilder is mutable
String is mutable whereas StringBuilder is immutable
Both String and StringBuilder are immutable
Both String and StringBuilder are mutable
#16

In Java, what is the purpose of the 'intern()' method in the String class?

To convert the string to lowercase
To concatenate strings
To remove leading and trailing whitespaces
To store a common string pool
#17

In Java, which method is used to convert an int to a string?

String.valueOf()
toString()
convertToString()
String.toString()
#18

In C++, what function is used to find the length of a string?

strlen()
length()
size()
len()
#19

Which method is used to find the last index of a substring within a string in Java?

indexOfLast()
lastIndexOf()
findLastIndex()
searchLast()

Sign In to view more questions.

Sign InSign Up

Quiz Questions with Answers

Forget wasting time on incorrect answers. We deliver the straight-up correct options, along with clear explanations that solidify your understanding.

Test Your Knowledge

Craft your ideal quiz experience by specifying the number of questions and the difficulty level you desire. Dive in and test your knowledge - we have the perfect quiz waiting for you!

Other Quizzes to Explore