Question
class PassS
{
public static void main(String [] args)
{
PassS p = new PassS();
p.start();
}
void start()
{
String s1 = "slip";
String s2 = fix(s1);
System.out.println(s1 + " " + s2);
}
String fix(String s1)
{
s1 = s1 + "stream";
System.out.print(s1 + " ");
return "stream";
}
}
a.
slip stream
b.
slipstream stream
c.
stream slip stream
d.
slipstream slip stream
Posted under Java Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What will be the output of the program?
Similar Questions
Discover Related MCQs
Q. Decrement operator '--' decreases the value of variable by what number?
View solution
Q. What is/are highest order precedence operator(s) in Java?
View solution
Q. The && and || operators
View solution
Q. Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative?
View solution
Q. Select from among the following character escape code which is not available in Java.
View solution
Q. With x = 0, which of the following are legal lines of Java code for changing the value of x to 1?
1. x++;
2. x = x + 1;
3. x += 1;
4. x =+ 1;
View solution
Q. Which of these is returned by "greater than", "less than" and "equal to" operators?
View solution
Q. Which of the following operators can operate on a boolean variable?
View solution
Q. Which of these statements is correct?
View solution
Q. What is the order of precedence (highest to lowest) of following operators?
1. &
2. ^
3. ?:
View solution
Q. _______ is not a flow control statement in Java.
View solution
Q. The break statement causes an exit from ______ loop.
View solution
Q. Which of the following is an iteration statement?
View solution
Q. An Arithmetic expression in Java involves which Operators or Operations?
View solution
Q. Choose the Compound Assignment Arithmetic Operators in Java below.
View solution
Q. Which is the arithmetic operator in Java that gives the Remainder of Division?
View solution
Q. Arithmetic operators +, -, /, * and % have which Associativity?
View solution
Q. Between Postfix and Prefix arithmetic operators in Java, which operators have more priority?
View solution
Q. Among Postfix Decrement and Prefix Incrementoperators in Java, which operator has less priority?
View solution
Q. Increment and Decrement arithmetic operators in Java has which Associativity?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!