Any concrete subclass that extends class Foo:
Consider the abstract class below:
```
public abstract class Foo
{
private int a;
public int b;
public Foo(int aVal, int bVal)
{
a = aVal;
b = bVal;
}
public abstract int calculate();
}
```
a) Must implement a method called calculate.
b) Will not be able to access the instance variable a.
c) Will not be able to instantiate an object of class Foo.
d) All of the above.
d) All of the above.
Computer Science & Information Technology
You might also like to view...
What is the highest level of the Linux file system and why is it important to understand the Linux file system?
What will be an ideal response?
Computer Science & Information Technology
________ is redistributing goods or products we own by sharing them.
A. Crowdfunding B. Social networking C. Crowdsourcing D. Collaborative consumption
Computer Science & Information Technology