interface Base { boolean m1 (); byte m2(short s); }which two code fragments will compile?1. interface Base2 implements Base {}2. abstract class Class2 extends Base{ public boolean m1(){ return true; }}3. abstract class Class2 implements Base {}4. abstract class Class2 implements Base{ public boolean m1(){ return (7 > 4); }}5.abstract class Class2 implements Base{ protected boolean m1(){ return (5 > 7) }} - Study24x7
Social learning Network

Warning: include(./views/auth.php): failed to open stream: Permission denied in /var/www/html/live/loginRightSlider.php on line 18

Warning: include(): Failed opening './views/auth.php' for inclusion (include_path='.:/usr/share/php') in /var/www/html/live/loginRightSlider.php on line 18

Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/html/live/makepost.php on line 52
17 Feb 2023 03:11 PM study24x7 study24x7

interface Base { boolean m1 (); byte m2(short s); }

which two code fragments will compile?

See more

A

1 and 2

B

2 and 3

C

3 and 4

D

1 and 5

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles