Exam 14: Strings
Exam 1: Introduction to Computers and Java42 Questions
Exam 2: Introduction to Java Applications34 Questions
Exam 3: Introduction to Classes and Objects34 Questions
Exam 4: Control Statements: Part 142 Questions
Exam 5: Control Statements: Part 227 Questions
Exam 6: Methods: a Deeper Look39 Questions
Exam 7: Arrays and Arraylists44 Questions
Exam 8: Classes and Objects: a Deeper Look27 Questions
Exam 9: Object Oriented Programming: Inheritance22 Questions
Exam 10: Object-Oriented Programming: Polymorphism28 Questions
Exam 11: Exception Handling27 Questions
Exam 12: Gui Components: Part 170 Questions
Exam 13: Graphics and Java 2D19 Questions
Exam 14: Strings27 Questions
Exam 15: Files,streams and Object Serialization29 Questions
Exam 16: Generic Collections41 Questions
Exam 17: Lambdas60 Questions
Exam 18: Recursion13 Questions
Exam 19: Searching, Sorting and Big O22 Questions
Exam 20: Generic Classes and Methods15 Questions
Exam 21: Custom Generic Data Structures17 Questions
Exam 23: Concurrency55 Questions
Exam 24: Accessing Databases With Jdbc35 Questions
Exam 25: JavaFX26 Questions
Select questions type
Consider the examples below:
a)a string.
b)'a string'.
c)"a string".
d)"1234".
e)integer.
Which could be the value of a Java variable of type String?
Free
(Multiple Choice)
4.7/5
(29)
Correct Answer:
D
StringBuilder objects can be used in place of String objects if ________.
Free
(Multiple Choice)
4.8/5
(36)
Correct Answer:
D
To find the character at a certain index position within a String,use the method ________.
Free
(Multiple Choice)
4.8/5
(38)
Correct Answer:
C
Which of the following creates the string of the numbers from 1 to 1000 most efficiently?
(Multiple Choice)
4.9/5
(31)
Consider the Java segment:
String line1 = new String("c = 1 + 2 + 3");
StringTokenizer tok = new StringTokenizer(line1,"+=");
String foo = tok.nextToken();
String bar = tok.nextToken();
The values of foo and bar are:
(Multiple Choice)
4.8/5
(39)
Given the following declaration:
StringBuilder buf = new StringBuilder();
What is the capacity of buf?
(Multiple Choice)
5.0/5
(33)
Consider the statement below:
StringBuilder sb1 = new StringBuilder("a toyota");
Which of the following creates a String object with the value "toy"?
(Multiple Choice)
4.8/5
(31)
Consider the Java segment:
String line1 = new String("c = 1 + 2 + 3");
StringTokenizer tok = new StringTokenizer(line1);
Int count = tok.countTokens();
The value of count is ________.
(Multiple Choice)
4.9/5
(32)
Consider the Java segment:
String line1 = new String("c = 1 + 2 + 3");
StringTokenizer tok = new StringTokenizer(line1,delimArg);
For the String line1 to have 4 tokens,delimArg should be:
(Multiple Choice)
5.0/5
(37)
How many String objects are instantiated by the following code segment (not including the literals)?
String s1,output;
S1 = "hello";
Output = "\nThe string reversed is: " ;
For (int i = s1.length()- 1;i >= 0;i--)
Output += s1.charAt(i)+ " " ;
(Multiple Choice)
4.9/5
(34)
Which of the following will create a String different from the other three?
(Multiple Choice)
4.9/5
(27)
The statement
S1)equalsIgnoreCase(s4)
Is equivalent to which of the following?
(Multiple Choice)
4.8/5
(34)
Showing 1 - 20 of 27
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)