Polymorphism enables you to:
a. program in the general.
b. program in the specific.
c. absorb attributes and behavior from previous classes.
d. hide information from the user.
a. program in the general.
Computer Science & Information Technology
You might also like to view...
You can use spreadsheets for simple or complex calculations.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
What would the following code snippet display?
```
var x = 5;
if(x == 4)
document.write("Math is fun!");
else
document.write("Wrong!
");
document.write("Math is not fun!");
```
a. Math is fun!
b. Math is fun!
Math is not fun!
c. Wrong!
d. Wrong!
Math is not fun!
Computer Science & Information Technology