Strings in Java are _________.
Java Strings

Quiz
•
Other, Education, Computers
•
1st Grade - Professional Development
•
Medium
Darshan B
Used 54+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Mutable
Immutable
Answer explanation
Strings in Java are immutable. When you make some changes to a string variable in Java, it actually creates a new String in the memory.
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which of the following is the incorrect way of creating a string in java?
var hello string = "world"
String hello = "World";
String hello = new String("World");
final static String hello = "World";
Answer explanation
var hello string = "world" is the incorrect way. This way of creating strings is used in GoLang, and not in Java.
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the error in the following lines of code?
private String myMethod() {}
String is not being returned.
No value is being returned.
There is no error.
Answer explanation
In the following lines of code, a string should be returned from 'myMethod'. 'No value is being returned' might confuse you, but it is a string method, so particularly String should be returned and not any value.
4.
FILL IN THE BLANK QUESTION
45 sec • 1 pt
Create a String variable 'name' and put it equal to the value John Doe.
5.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which of the following will return the number of characters present in a String?
length()
length
sizeOf()
numberOfChars()
Answer explanation
Number of characters in a string means the length of the string, but length is not a property of strings in java. Instead, there is a method length. Hence, length() is correct, not length.
6.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What will be the output of the following line of code?
HelloWorld
Hello World
"Hello World"
"HelloWorld"
Answer explanation
While printing strings, double quotes aren't printed. So "Hello World" and "HelloWorld" are cancelled. Now the trim function removes white space from starting and ending of a string, and not from center. So space between hello and world remains. There are no whitespaces on left and right, so Hello World is printed as it is.
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the output of the following code?
True
False
true
false
Answer explanation
In java, booleans are written completely in lower case. Thus, True and False are eliminated.
Now Hello World starts with Hello and not hello (with lower case h) so output is false.
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Programming Basics Basics

Quiz
•
8th Grade - University
10 questions
Dasar Pemrograman C++

Quiz
•
10th Grade
11 questions
Python strings

Quiz
•
8th - 9th Grade
10 questions
Python Basics

Quiz
•
8th - 10th Grade
10 questions
Python - Printing, Variables and Syntax

Quiz
•
8th Grade
15 questions
Progamming - Java Syntax

Quiz
•
11th - 12th Grade
14 questions
Y9 - Module 2 - KT1 Python Basics

Quiz
•
9th Grade
10 questions
Pascal Assessment

Quiz
•
3rd - 4th Grade
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
20 questions
Math Review - Grade 6

Quiz
•
6th Grade
20 questions
math review

Quiz
•
4th Grade
5 questions
capitalization in sentences

Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance

Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions

Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines

Quiz
•
Professional Development
12 questions
Dividing Fractions

Quiz
•
6th Grade
Discover more resources for Other
15 questions
Multiplication Facts

Quiz
•
4th Grade
20 questions
Math Review - Grade 6

Quiz
•
6th Grade
20 questions
math review

Quiz
•
4th Grade
5 questions
capitalization in sentences

Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance

Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions

Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines

Quiz
•
Professional Development
12 questions
Dividing Fractions

Quiz
•
6th Grade