How do you write a scanner class in java?
No Answer is Posted For this Question
Be the First to Post Answer
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
What does this () mean in constructor chaining concept?
What are interfaces?
Which class is the superclass for all the classes?
What is Session reduplication and how its done?
How do you bind variables?
How do you square a number?
posted in online test
who can we create the object of a class? in how many ways we can create it (max 5)
What are the four integer types supported by java?
Why all programming languages have main as a execution starting point?
Can we overload the methods by making them static?