@SuryaK24

Excellent way of teaching 🥰

@JegaBright

நன்றி அக்கா

@kidoo1567

Best teacher

@KANIMOZHI-vz3er

Onka vedios la romba useful la irruku mam😊

@kangajankuganathan7457

Thank you akka

@SibiRanganathL

best video

@iammaran5703

Akka java supported copy constructor or not

@MadaraUchiha12321

i think you are teaching from Java complete reference book..?
am i right? 
anyway ...!,
good job, 
i appreciate ✌👍

@ilayarajaramasamy1263

"from the static block" msg is in the static constrictor right, Mam?

@marialivinu3065

Public static void main() static method ah akka? If yes then how can we call non static methods using object?

@manojm7683

You said that static method are usually invoking just before creating 1st obj but end of the video you used static method to print boxcount how does it invoking after  created all of the objs.@Logic First Tamil

@kannanb0317

Mam 
I have a problem in somewhere, please go through my simple code .

class Box{
    private int length, breadth, height;
    Box(int l,int b,int h){
        this.length=l;
        this.breadth=b;
        this.height=h;
    }
    int Area(){
        return length*breadth*height;
    }
}
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
        Box ob = new Box(11,2,2);
        System.out.println("Area of perimeter..");
        ob.Area();
    }
}
//
The output  is 
Hello, World!
Area of perimeter..


The int return type Area() method wont return their value mam.

@hemapriyadharshinia3949

Why we are using static in main method akka?

@lokeshp1929

Static block will be executed before main method,am i right?