"Hello, Amigo! I was going to help you with your tasks today. But I'm too tired. And I still have a lot to do this evening: have a beer and play poker with my friends. So, good luck, buddy! Tackle these tasks."

undefined
3
Task
Java Core, level 3, lesson 4
Locked
Let's hire a translator
In this task, we'll create a descendant of a generic translator (Translator), who will be a Russian language expert (RussianTranslator). But she won't translate anything in this task. She'll simply state which foreign language she works with.
undefined
3
Task
Java Core, level 3, lesson 4
Locked
Code doesn't fix itself
Such a small program shouldn't have had any room for bugs... but alas, this isn't the case! Real programmers can squeeze bugs into any amount of code! But more importantly, the best developers can remove bugs with skill. Fix the code so that the program runs and displays: "I translate from Russian".
undefined
3
Task
Java Core, level 3, lesson 4
Locked
A fox is an animal
Do you have any doubt that a fox (unless we are talking about a foxy lady) is an animal, and will remain so for life? If not, then the Animal interface would be perfect for this class. So let's implement it by making a couple of edits to the class itself.
undefined
3
Task
Java Core, level 3, lesson 4
Locked
A big fox is still a fox
A big fox is a specific type of fox, while a "ordinary" fox is an animal. Here is a brief outline of what you are going to do in this task. Create an Animal interface, a Fox class (with getName as the only implemented method), and a child of the Fox class (BigFox).