Java Strings

Java Strings

1st Grade - Professional Development

10 Qs

quiz-placeholder

Similar activities

Basic Python Data Types

Basic Python Data Types

Professional Development

8 Qs

Python Data Types & Input/Output

Python Data Types & Input/Output

9th Grade

11 Qs

Python Print Statement

Python Print Statement

6th - 10th Grade

12 Qs

Programming in Java

Programming in Java

8th Grade

10 Qs

Python Quiz

Python Quiz

3rd - 4th Grade

15 Qs

Problem Solving using Python and R - UNIT I STRINGS MCQS

Problem Solving using Python and R - UNIT I STRINGS MCQS

12th Grade

15 Qs

Java Strings

Java Strings

9th - 12th Grade

12 Qs

Python

Python

7th - 9th Grade

12 Qs

Java Strings

Java Strings

Assessment

Quiz

Other, Education, Computers

1st Grade - Professional Development

Medium

Created by

Darshan B

Used 54+ 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

Media Image

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

Media Image

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

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?