• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Java OCA/OCP 8 Programmer Practice Tests: OCP Practice Exam, Q #84

 
Greenhorn
Posts: 7
1
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
84. What is the output of the following application?

Answer:
   D. One line of code does not compile.

But the answer should be:
   E. Two lines of code do not compile.
MyElectricBass class is also inheriting the problem from the ElectricBass class.
By compiling this code we can see the 2 compilation errors showing up:

Regards,
 
Ranch Hand
Posts: 40
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can we not have two of the same default methods in separate interfaces? Only in the case we implement both interfaces? good question. I wasnt aware of this. if someone can elaborate. I will try to compile also
 
Juan Pablo Barale
Greenhorn
Posts: 7
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If a class is implementing two interfaces with the same default method (firm), the class doesn't know which implementation to use, so you are forced to override it in order to compile.
The same problem occurs in the case an interface extends two interfaces with the same default method.
 
author & internet detective
Posts: 41775
887
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ugh. I tested the example. In Eclipse, it shows one compiler error and at the command line it shows two.  Which means the exam could ask about the first line that gives an error, but now how many (because it is ambiguous).

I added an item in the errata to say consider D or E to be correct.
 
Nothing up my sleeve ... and ... presto! A tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic