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
11 questions
Python strings

Quiz
•
8th - 9th Grade
12 questions
Python Print Statement

Quiz
•
6th - 10th Grade
15 questions
Python Quiz

Quiz
•
3rd - 4th Grade
15 questions
Python introduction

Quiz
•
University
12 questions
Python

Quiz
•
7th - 9th Grade
15 questions
Python basics

Quiz
•
6th - 8th Grade
10 questions
Pre tes dan Post test

Quiz
•
12th Grade
10 questions
Exploring Python: Input and Output Essentials

Quiz
•
9th Grade - University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Other
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade