(Choose 1 answer)
What is the result of running the program below?
import java.util.*;import java.lang.*;
class Vase {
String color;int price;
Vase() { }
Vase(String color, int price) { this.color = color;this.price = price;}
public String toString() {
return (color + "," + price);}}
class SpecVase extends Vase {
int type;
SpecVase() { }
SpecVase(String color, int price, int type) { this.type = type;
super(color, price);
}
void display() {
String s = "/" + suner toString() + + tvne + ") ".
Osh
Q: 22