answersLogoWhite

0


Best Answer

1621000004

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Your roll no42174 your class is BA final i want to know my recheking result?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the final result next day?

The final result next day might refer to the final result of an exam or test that is posted on the next day of class. This result is generally posted on a bulletin board in the common area.


Dg shipping class IV results Kolkata?

go on final result dgshipping.com


How do you prevent class extending in java?

Declare the class as final. final class A{ ... }


When do you declare a class as final?

By using the final keyword in the class declaration statement. Ex: public final class Test {...}


A final class can have instances?

Yes. You cannot inherit a final class but very well instantiate a final class


Discuss final method and final classes?

a method declared final can not be overridden, and a class declared as final can not be extended by its sub class.


How can you create a class which cannot be inheritable?

Declare it final.


Why would you make a class final in java?

You would make a class Final in Java if you do not want anybody to inherit the features of your class. If you declare a class as Final, then no other class can extend this class. Example: public final class X { .... } public class Y extends X { .... } Here Y cannot extend X because X is final and this code would not work.


What are final class?

class is identifier


Difference between abstract and final class?

Abstract class is built to promote inheritance whereas a final class is built to avoid inheritanceAn Abstract class can be extended by another class whereas a final class cannot be extended


Ma final result of agra university?

ma final English result


Final classes in java?

A class declared as final means that no other class can inherit from it.