Search Header Logo

Java Programming Quiz in String

Authored by Niveditha N

Other

Professional Development

Used 2+ times

Java Programming Quiz in String
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will be the output of the following code? String s1 = "Java"; String s2 = "Java"; String s3 = new String("Java"); System.out.println(s1 == s2); System.out.println(s1 == s3);

true, true

true, false

false, true

false, false

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed? String s = "abc"; s.concat("def"); System.out.println(s);

abc

abcdef

def

Compilation error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the correct statement:

StringBuilder is synchronized.

StringBuffer is not synchronized.

StringBuilder is faster but not thread-safe.

String is mutable.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Output? StringBuilder sb = new StringBuilder("123"); sb.reverse(); System.out.println(sb);

123

321

Error

1 2 3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this print? String str = "hello"; str.toUpperCase(); System.out.println(str);

HELLO

hello

Error

null

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of these methods is NOT available in StringBuilder?

append()

reverse()

charAt()

trim()

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which creates a new object each time it's modified?

String

StringBuffer

StringBuilder

All of the above

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?