What will be the output of the following code String s = new String System out println s = + s

This section of our 1000+ Java MCQs focuses on string handling in Java Programming Language.

1. Which of these class is superclass of String and StringBuffer class?
a) java.util
b) java.lang
c) ArrayList
d) None of the mentioned
View Answer

Answer: b
Explanation: None.

2. Which of these operators can be used to concatenate two or more String objects?
a) +
b) +=
c) &
d) ||
View Answer

Answer: a
Explanation: Operator + is used to concatenate strings, Example String s = “i ” + “like ” + “java”; String s contains “I like java”.

3. Which of this method of class String is used to obtain a length of String object?
a) get()
b) Sizeof()
c) lengthof()
d) length()
View Answer

Answer: d
Explanation: Method length() of string class is used to get the length of the object which invoked method length().

4. Which of these method of class String is used to extract a single character from a String object?
a) CHARAT()
b) chatat()
c) charAt()
d) ChatAt()
View Answer

Answer: c
Explanation: None.

5. Which of these constructors is used to create an empty String object?
a) String()
b) String(void)
c) String(0)
d) None of the mentioned
View Answer

Answer: a
Explanation: None.

6. Which of these is an incorrect statement?
a) String objects are immutable, they cannot be changed
b) String object can point to some other reference of String variable
c) StringBuffer class is used to store string in a buffer for later use
d) None of the mentioned
View Answer

Answer: c
Explanation: StringBuffer class is used to create strings that can be modified after they are created.

7. What will be the output of the following Java program?

  1.     class String_demo 
  2.     {
  3.         public static void main(String args[])
  4.         {
  5.             char chars[] = {'a', 'b', 'c'};
  6.             String s = new String(chars);
  7.             System.out.println(s);
  8.         }
  9.    }

a) a
b) b
c) c
d) abc
View Answer

Answer: d
Explanation: String(chars) is a constructor of class string, it initializes string s with the values stored in character array chars, therefore s contains “abc”.
output:

$ javac String_demo.java
$ java String_demo 
abc

8. What will be the output of the following Java program?

  1.     class String_demo 
  2.     {
  3.         public static void main(String args[])
  4.         {
  5.             int ascii[] = { 65, 66, 67, 68};
  6.             String s = new String(ascii, 1, 3);
  7.             System.out.println(s);
  8.         }
  9.    }

a) ABC
b) BCD
c) CDA
d) ABCD
View Answer

Answer: b
Explanation: ascii is an array of integers which contains ascii codes of Characters A, B, C, D. String(ascii, 1, 3) is an constructor which initializes s with Characters corresponding to ascii codes stored in array ascii, starting position being given by 1 & ending position by 3, Thus s stores BCD.
output:

$ javac String_demo.java
$ java String_demo 
BCD

9. What will be the output of the following Java program?

  1.     class String_demo 
  2.     {
  3.         public static void main(String args[])
  4.         {
  5.             char chars[] = {'a', 'b', 'c'};
  6.             String s = new String(chars);
  7.             String s1 = "abcd";
  8.             int len1 = s1.length();
  9.             int len2 = s.length();
  10.             System.out.println(len1 + " " + len2);
  11.         }
  12.    }

a) 3 0
b) 0 3
c) 3 4
d) 4 3
View Answer

Answer: d
Explanation: None.
output:

$ javac String_demo.java
$ java String_demo 
4 3

Sanfoundry Global Education & Learning Series – Java Programming Language.

Next Steps:

  • Get Free Certificate of Merit in Java Programming
  • Participate in Java Programming Certification Contest
  • Become a Top Ranker in Java Programming
  • Take Java Programming Tests
  • Chapterwise Practice Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
  • Chapterwise Mock Tests: Chapter 1, 2, 3, 4, 5, 6, 7, 8, 9, 10

What will be the output of the following code String s = new String System out println s =  + s

Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & technical discussions at Telegram SanfoundryClasses.