Ask Question
15 September, 09:50

Class Product {

double price;

}

public class Test {

public void updatePrice (Product product, double price) {

price = price * 2;

product. price=product. price + price;

}

public static void main (String args[]) {

Product prt = new Product ();

prt. price=200;

doucble newPrice = 100;

Test t = new Test ();

t. updatePrice (prt, newPrice);

System. out. println (prt. price + " : " + newPrice);

}

}

What is the result?

A) 200.0: 100.0

B) 400.0: 200.0

C) 400.0: 100.0

D) Compilation fails.

+3
Answers (1)
  1. 15 September, 10:52
    0
    C) 400.0: 100.0

    Explanation:

    prt. price = 200 and updatePrice method is called which makes it 400 & new price is as declared 100.

    Both the numbers are double hence

    400.0 : 100.0 is printed.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Class Product { double price; } public class Test { public void updatePrice (Product product, double price) { price = price * 2; product. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers