His mock Interview is very good. Also he is by non - It background. His communication is also nice & his concept is also clear. But he pratisce more for English communication for interview. I think he practices to explain shortly ans for interview.
Static keyword is used with variables , methods but we use in the global area only, local variable will accept static variable it will through error. We use static keyword then it it would be a modifier and the class static area will be created and for non static variable are stored inside the object block , if we use new keyword to create a object which will have the reference with class static area because local variable can't directly access the global area so we create object ...
When a variable is declared as static, then a single copy of the variable is created and shared among all objects at the class level. Static variables are, essentially, global variables. All instances of the class share the same static variable.
Dont expect this kinda interview at top MNC for developer jobs. The process is much much complex, questions will never be theoretical like this. Prepare well guys, learn by actual implementation and play around and focus on DSA as well.
Protected is modifier only when we used that we required to access class within same package and also in other package but in only can be accessed in child class , And Your mock interviews are amazing its is very helpful for beginner and advance level. Thanks For Sharing content like that
Yes you are very correct. Thank you. the DROP command is used to remove the whole database or table indexes, data, and more. Whereas the TRUNCATE command is used to remove all the rows from the table.
Static key is used to make any variable or method of class a class variable or method we can access that variable or method without creating object of class my using class_name.variable or class_name.method()
We can override the static method for method hiding purpose Correct me if I am wrong class A { static void show() { System.out.println("I am parent show"); } } class B extends A { static void show() { System.out.println("I am show in child"); } } class HelloWorld { public static void main(String[] args) { A b1 = new B(); b1.show(); } } In case of overriding of non static methods if we create reference of parent class and object of child class , then by default child class logic gets executed. But in case of overriding of static methods if we create reference of parent class and object of child class , then by PARENT CLASS logic gets executed. So we hide the method in child class
Why Python? Website | Gamming | AI | Machine Learning: ruclips.net/video/xtah0kJ2OO0/видео.html
𝐆𝐞𝐭 𝐢𝐧 𝐭𝐨𝐮𝐜𝐡 𝐰𝐢𝐭𝐡 𝐦𝐞 𝐛𝐲 𝐣𝐨𝐢𝐧𝐢𝐧𝐠 𝐭𝐡𝐞 𝐟𝐫𝐞𝐞 𝐝𝐞𝐦𝐨 𝐜𝐥𝐚𝐬𝐬 𝐥𝐢𝐧𝐤 𝐛𝐞𝐥𝐨𝐰
bit.ly/jbkgshub7
His mock Interview is very good. Also he is by non - It background. His communication is also nice & his concept is also clear. But he pratisce more for English communication for interview. I think he practices to explain shortly ans for interview.
yes right..
Good
Static keyword is used with variables , methods but we use in the global area only, local variable will accept static variable it will through error. We use static keyword then it it would be a modifier and the class static area will be created and for non static variable are stored inside the object block , if we use new keyword to create a object which will have the reference with class static area because local variable can't directly access the global area so we create object ...
Kiran sir's explanation help more during interview.
Thank You Share with your friends
When a variable is declared as static, then a single copy of the variable is created and shared among all objects at the class level. Static variables are, essentially, global variables. All instances of the class share the same static variable.
Sir you are asking so easy question the interviewer asking some get confused questions
Dont expect this kinda interview at top MNC for developer jobs. The process is much much complex, questions will never be theoretical like this. Prepare well guys, learn by actual implementation and play around and focus on DSA as well.
he has good knowledge of java🎉
Protected is modifier only when we used that we required to access class within same package and also in other package but in only can be accessed in child class , And Your mock interviews are amazing its is very helpful for beginner and advance level. Thanks For Sharing content like that
Good to know
I am in love with his marathi accent❤
Yeah Same
Great
Your videos are very useful for me sir.. I don't judge candidate, I just listen questions and answers
good Prepare Shesherao.
Helpful video
Share with your friends
Great bro
Sir How to possible interpreter is platform independent ? I have read in yours book interpreter is platform dependent.
4:31 4:31 4:32" that is also correct"😂😂 bro giving feedback to interviewer
🔥🔥🔥
Sir more interview of core Java
and SQL please
Yes we are working on that
We want software tester mock interview sur
Sir please correct he said that useing delete we can delete the table but we can't. Its only for row, col we can use
Yes you are very correct. Thank you.
the DROP command is used to remove the whole database or table indexes, data, and more. Whereas the TRUNCATE command is used to remove all the rows from the table.
Sir python mock interview bhi leke aao please? Thank you
Yes, Share with your friends
Can a class implement more than one interface in java?
yes. u can
Yes
How can I get your book on Java sir .
Do u have syllabus for ur course?
Sir apne mic ka volume badha lijiye achhe se sound nahi aata h
watch our other video for better experience
Kiran sir u also takes batches now?
I think who take interview he is don't know that we should take feedback in last moments 😂😂😂😂😂its not like interview its like preparation thought 😂
sir mera ty mai backlog hai main place ho sakti hu kya means job mil sakta kya active back log?
kaise or mujhe chahiye ky karu help me??
Job Mila?
Candidate : Static answer is totally wrong
Static key is used to make any variable or method of class a class variable or method we can access that variable or method without creating object of class my using class_name.variable or class_name.method()
Sir placement provide karoge kya
We can override the static method for method hiding purpose
Correct me if I am wrong
class A
{ static void show() {
System.out.println("I am parent show");
}
}
class B extends A
{ static void show() {
System.out.println("I am show in child");
}
}
class HelloWorld {
public static void main(String[] args) {
A b1 = new B();
b1.show();
}
}
In case of overriding of non static methods if we create reference of parent class and object of child class ,
then by default child class logic gets executed.
But in case of overriding of static methods if we create reference of parent class and object of child class ,
then by PARENT CLASS logic gets executed.
So we hide the method in child class