answersLogoWhite

0

Ex:

public class A {

...

}

public class B extends A {

...

}

public class C extends B {

...

}

Here class C extends B which in turn extends A so class C indirectly extends class A.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Write a C program to declare result of a student using multilevel?

This is a statement with a question mark?


Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?

Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?


Do you have to write a thesis for a bachelor's degree?

Yes, typically a bachelor's degree program requires students to write a thesis as a culminating project to demonstrate their research and analytical skills in their field of study.


How to write program for secant method in mathematica?

How to write a program for secant method by mathematica


Why we are use hello word?

The phrase "hello world" is commonly used as a simple introductory program in coding tutorials to demonstrate the basic syntax of a programming language. It is often the first program that beginners write to ensure their development environment is set up correctly and to get familiar with the language's syntax.


How do you write Square program using vb?

write a vb program to find the magic square


Write a program to multiply 33 matrix.?

write a program to multily 3*3 matrix.


Write a program in Lex to eliminate white space and collect numbers as a token?

write a lex program to delete space from the program


How do you write a sentence with the word accountable?

You demonstrate maturity when you are accountable for your own actions.


Write a program to create a maze?

this is to write or create


Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


Write a program to demonstrate renaming the file?

Sure, here's a simple Python program that renames a file: import os current_name = 'original.txt' new_name = 'renamed.txt' os.rename(current_name, new_name) print(f'{current_name} has been successfully renamed to {new_name}') Make sure to replace original.txt with the actual name of the file you want to rename and renamed.txt with the desired new name.