Solved

Consider the Java Segment

Question 15

Multiple Choice

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:


A) foo is "c ", bar is " = ".
B) foo is "c", bar is " ".
C) foo is " = ", bar is " + ".
D) foo is "c ", bar is " 1 ".

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions