hi all i tried one quiz in that i got question
Given: 1. public class Blip {
2. protected int blipvert(int x) { return 0; }
3. }
4. class Vert extends Blip {
5. // insert code here
6. } Which methods, inserted independently at line 5, will compile?
A. private int blipvert(int x) { return 0; }
B. private int blipvert(long x) { return 0; }
C. protected long blipvert(int x) { return 0; }
D. protected int blipvert(long x) { return 0; }
the answers are B & D , I taught it was is C,D could any one explain me how its working
thanks in advance