Question 5 a. After the introduction of classes, in a java class, Adongo a student of the class came out with the code below. Salamatu, a student of the class said adongo’s code was full of mistakes. Explain why salamatu made that statement class Abelewas { void bankudade(); int fabewoso(); double AttaaAyi(int x); } class pepper extends Abelewas{ public static void main(String potatoes[]) { peper ending = new bankudade(); } } b. Correct the code in “a” without introducing a new class and create an instantiation of the pepper class with an object variable called bankueba. Using bankueba, initialize the methods in the Abelewas class.
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Question 5
a. After the introduction of classes, in a java class, Adongo a student of the
class came out with the code below. Salamatu, a student of the class
said adongo’s code was full of mistakes.
Explain why salamatu made that statement
class Abelewas {
void bankudade();
int fabewoso();
double AttaaAyi(int x);
}
class pepper extends Abelewas{
public static void main(String potatoes[]) {
peper ending = new bankudade();
}
}
b. Correct the code in “a” without introducing a new class and create an
instantiation of the pepper class with an object variable called
bankueba. Using bankueba, initialize the methods in the Abelewas class.
c. Oforiwaa a student of the java class also produced the code below in a
class discussion. Salamatu, again said that Oforiwaa’s code was
incomplete and was seconded by Joshua another student of the class.
Correct the code without changing the access type of the variables
salary, name and pension. Using the object variable shito, initialize the
variables salary, name and pension to 2000, Joshua Adamson and 120
respectively. Insert a code to display salary, name and pension.
Step by step
Solved in 3 steps