Java Strings

Quiz
•
Other, Education, Computers
•
1st Grade - Professional Development
•
Medium
Darshan B
Used 55+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Strings in Java are _________.
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 Wayground
10 questions
Programming in Java

Quiz
•
8th Grade
10 questions
Python Variables

Quiz
•
6th Grade
15 questions
Python Quiz

Quiz
•
3rd - 4th Grade
15 questions
Problem Solving using Python and R - UNIT I STRINGS MCQS

Quiz
•
12th Grade
12 questions
Java Strings

Quiz
•
9th - 12th Grade
12 questions
Python

Quiz
•
7th - 9th Grade
11 questions
Python strings

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

Quiz
•
6th - 10th Grade
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
Discover more resources for Other
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade